From fbee70cde54fcec773cf35f858016c1a23459cc0 Mon Sep 17 00:00:00 2001 From: Ziv Date: Wed, 17 May 2023 10:00:35 +0800 Subject: [PATCH] feat: update alter and drop statements (#94) * feat: add UNIQUE keyword * feat: support ifExist, addConstraint, dropConstraint and addUnique of alter table statement * feat: support ifExist, addConstraint, dropConstraint and addUnique of alter table statement * tests: add tests of alter statements * docs: add comments for sql syntax * build: optimize promote of build/antlr4 * ci: add max_old_space_size * ci: add max_old_space_size * ci: update tests script --- .github/workflows/nodejs.yml | 32 +- build/antlr4.js | 2 +- src/grammar/flinksql/FlinkSqlLexer.g4 | 1 + src/grammar/flinksql/FlinkSqlParser.g4 | 22 +- src/lib/flinksql/FlinkSqlLexer.interp | 5 +- src/lib/flinksql/FlinkSqlLexer.tokens | 272 +- src/lib/flinksql/FlinkSqlLexer.ts | 2242 +++---- src/lib/flinksql/FlinkSqlParser.interp | 8 +- src/lib/flinksql/FlinkSqlParser.tokens | 272 +- src/lib/flinksql/FlinkSqlParser.ts | 5127 +++++++++-------- src/lib/flinksql/FlinkSqlParserListener.ts | 46 +- src/lib/flinksql/FlinkSqlParserVisitor.ts | 30 +- .../syntax/fixtures/alterDatabase.sql | 4 +- .../syntax/fixtures/alterFunction.sql | 10 +- .../flinksql/syntax/fixtures/alterTable.sql | 70 +- 15 files changed, 4341 insertions(+), 3802 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5c9f215..ac97256 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,7 +17,7 @@ jobs: steps: - name: checkout uses: actions/checkout@v2 - + - name: cache yarn.lock uses: actions/cache@v2 with: @@ -49,7 +49,7 @@ jobs: needs: [setup] steps: - uses: actions/checkout@v2 - + - name: Restore cache from yarn.lock uses: actions/cache@v2 with: @@ -61,21 +61,17 @@ jobs: with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} - - - name: Test utils - run: npx jest test/utils - - name: Test FLinkSQL - run: npx jest test/parser/flinksql - - name: Test SparkSQL - run: npx jest test/parser/spark - - name: Test GenericSQL - run: npx jest test/parser/generic - - name: Test HiveSQL - run: npx jest test/parser/hive - - name: Test PGSQL - run: npx jest test/parser/pgsql - - name: Test PLSQL - run: npx jest test/parser/plsql + + - name: Run Units Test + run: | + export NODE_OPTIONS="--max_old_space_size=4096" + npx jest test/utils + npx jest test/parser/flinksql + npx jest test/parser/spark + npx jest test/parser/generic + npx jest test/parser/hive + npx jest test/parser/pgsql + npx jest test/parser/plsql build: runs-on: ubuntu-latest needs: [setup] @@ -95,4 +91,4 @@ jobs: key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} - name: Run Build - run: yarn build \ No newline at end of file + run: yarn build diff --git a/build/antlr4.js b/build/antlr4.js index fb57b71..05d3085 100644 --- a/build/antlr4.js +++ b/build/antlr4.js @@ -43,7 +43,7 @@ if (argv.all) { // build all: yarn antlr4 --all if (supportedLanguage) { compile(argv.lang); } else { - console.error('Unsupported language: ' + argv.lang); + console.error('Invalid language: ' + argv.lang + ', supported languages:\n' + entry.join(', ')); } } else { console.error('Please to specify the language, just like: yarn antlr4 --lang flinksql'); diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 index 09aae11..43c54d9 100644 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -265,6 +265,7 @@ CATALOGS: 'CATALOGS'; VIEWS: 'VIEWS'; JARS: 'JARS'; PRIMARY: 'PRIMARY'; +UNIQUE: 'UNIQUE'; KEY: 'KEY'; PERIOD: 'PERIOD'; SYSTEM_TIME: 'SYSTEM_TIME'; diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 0a20603..76cb248 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -277,19 +277,37 @@ jarFileName ; // Alter statements +// Just for simple alter table statements, +// it only includes rename, set key, add constraint, drop constraint, add unique alterTable - : ALTER TABLE uid (renameDefinition | setKeyValueDefinition) + : ALTER TABLE ifExists? uid (renameDefinition | setKeyValueDefinition | addConstraint | dropConstraint | addUnique) ; renameDefinition - : RENAME TO uid + : RENAME uid? TO uid ; setKeyValueDefinition : SET tablePropertyList ; +addConstraint + : ADD CONSTRAINT constraintName PRIMARY KEY columnNameList notForced? + ; + +dropConstraint + : DROP CONSTRAINT constraintName + ; + +addUnique + : ADD UNIQUE columnNameList + ; + +notForced + : NOT ENFORCED + ; + alertView : ALTER VIEW uid (renameDefinition | AS queryStatement) ; diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index 2cfa605..4bb63a2 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -256,6 +256,7 @@ null 'VIEWS' 'JARS' 'PRIMARY' +'UNIQUE' 'KEY' 'PERIOD' 'SYSTEM_TIME' @@ -587,6 +588,7 @@ CATALOGS VIEWS JARS PRIMARY +UNIQUE KEY PERIOD SYSTEM_TIME @@ -917,6 +919,7 @@ CATALOGS VIEWS JARS PRIMARY +UNIQUE KEY PERIOD SYSTEM_TIME @@ -1009,4 +1012,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 328, 3133, 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, 1, 0, 4, 0, 681, 8, 0, 11, 0, 12, 0, 682, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 691, 8, 1, 10, 1, 12, 1, 694, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 704, 8, 2, 1, 2, 5, 2, 707, 8, 2, 10, 2, 12, 2, 710, 9, 2, 1, 2, 3, 2, 713, 8, 2, 1, 2, 1, 2, 3, 2, 717, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 723, 8, 2, 1, 2, 1, 2, 3, 2, 727, 8, 2, 3, 2, 729, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 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, 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, 12, 1, 12, 1, 12, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 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, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 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, 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, 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, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 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, 44, 1, 44, 1, 44, 1, 44, 1, 44, 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, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 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, 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, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 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, 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, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 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, 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, 74, 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, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 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, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 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, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 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, 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, 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, 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, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 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, 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, 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, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 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, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 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, 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, 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, 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, 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, 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, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 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, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 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, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 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, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 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, 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, 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, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 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, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 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, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 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, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 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, 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, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 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, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 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, 178, 1, 178, 1, 178, 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, 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, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 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, 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, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 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, 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, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 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, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 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, 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, 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, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 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, 222, 1, 222, 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, 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, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 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, 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, 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, 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, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 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, 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, 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, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 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, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 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, 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, 258, 1, 258, 1, 258, 1, 258, 1, 259, 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, 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, 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, 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, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 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, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 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, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 302, 1, 302, 1, 303, 1, 303, 1, 304, 1, 304, 1, 305, 1, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 3, 321, 2955, 8, 321, 1, 322, 4, 322, 2958, 8, 322, 11, 322, 12, 322, 2959, 1, 323, 4, 323, 2963, 8, 323, 11, 323, 12, 323, 2964, 3, 323, 2967, 8, 323, 1, 323, 1, 323, 4, 323, 2971, 8, 323, 11, 323, 12, 323, 2972, 1, 323, 4, 323, 2976, 8, 323, 11, 323, 12, 323, 2977, 1, 323, 1, 323, 1, 323, 1, 323, 4, 323, 2984, 8, 323, 11, 323, 12, 323, 2985, 3, 323, 2988, 8, 323, 1, 323, 1, 323, 4, 323, 2992, 8, 323, 11, 323, 12, 323, 2993, 1, 323, 1, 323, 1, 323, 4, 323, 2999, 8, 323, 11, 323, 12, 323, 3000, 1, 323, 1, 323, 3, 323, 3005, 8, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 5, 328, 3017, 8, 328, 10, 328, 12, 328, 3020, 9, 328, 4, 328, 3022, 8, 328, 11, 328, 12, 328, 3023, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 3032, 8, 329, 10, 329, 12, 329, 3035, 9, 329, 1, 329, 1, 329, 1, 330, 1, 330, 3, 330, 3041, 8, 330, 1, 330, 4, 330, 3044, 8, 330, 11, 330, 12, 330, 3045, 1, 331, 5, 331, 3049, 8, 331, 10, 331, 12, 331, 3052, 9, 331, 1, 331, 4, 331, 3055, 8, 331, 11, 331, 12, 331, 3056, 1, 331, 5, 331, 3060, 8, 331, 10, 331, 12, 331, 3063, 9, 331, 1, 332, 5, 332, 3066, 8, 332, 10, 332, 12, 332, 3069, 9, 332, 1, 332, 4, 332, 3072, 8, 332, 11, 332, 12, 332, 3073, 1, 332, 5, 332, 3077, 8, 332, 10, 332, 12, 332, 3080, 9, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 3092, 8, 335, 10, 335, 12, 335, 3095, 9, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 3105, 8, 336, 10, 336, 12, 336, 3108, 9, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 4, 337, 3115, 8, 337, 11, 337, 12, 337, 3116, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 3127, 8, 338, 10, 338, 12, 338, 3130, 9, 338, 1, 338, 1, 338, 5, 692, 3050, 3056, 3067, 3073, 0, 339, 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, 0, 659, 0, 661, 0, 663, 0, 665, 0, 667, 0, 669, 0, 671, 0, 673, 0, 675, 0, 677, 0, 1, 0, 16, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 46, 46, 58, 58, 2, 0, 47, 47, 92, 92, 3, 0, 32, 32, 47, 47, 92, 92, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 7, 0, 35, 38, 42, 42, 48, 57, 64, 90, 94, 95, 97, 123, 125, 125, 6, 0, 35, 38, 42, 42, 64, 90, 94, 95, 97, 123, 125, 125, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 3167, 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, 1, 680, 1, 0, 0, 0, 3, 686, 1, 0, 0, 0, 5, 728, 1, 0, 0, 0, 7, 732, 1, 0, 0, 0, 9, 739, 1, 0, 0, 0, 11, 744, 1, 0, 0, 0, 13, 748, 1, 0, 0, 0, 15, 751, 1, 0, 0, 0, 17, 755, 1, 0, 0, 0, 19, 759, 1, 0, 0, 0, 21, 768, 1, 0, 0, 0, 23, 774, 1, 0, 0, 0, 25, 780, 1, 0, 0, 0, 27, 783, 1, 0, 0, 0, 29, 792, 1, 0, 0, 0, 31, 797, 1, 0, 0, 0, 33, 802, 1, 0, 0, 0, 35, 809, 1, 0, 0, 0, 37, 815, 1, 0, 0, 0, 39, 822, 1, 0, 0, 0, 41, 828, 1, 0, 0, 0, 43, 831, 1, 0, 0, 0, 45, 834, 1, 0, 0, 0, 47, 838, 1, 0, 0, 0, 49, 841, 1, 0, 0, 0, 51, 845, 1, 0, 0, 0, 53, 848, 1, 0, 0, 0, 55, 855, 1, 0, 0, 0, 57, 863, 1, 0, 0, 0, 59, 868, 1, 0, 0, 0, 61, 874, 1, 0, 0, 0, 63, 877, 1, 0, 0, 0, 65, 882, 1, 0, 0, 0, 67, 888, 1, 0, 0, 0, 69, 894, 1, 0, 0, 0, 71, 898, 1, 0, 0, 0, 73, 903, 1, 0, 0, 0, 75, 907, 1, 0, 0, 0, 77, 916, 1, 0, 0, 0, 79, 921, 1, 0, 0, 0, 81, 926, 1, 0, 0, 0, 83, 931, 1, 0, 0, 0, 85, 936, 1, 0, 0, 0, 87, 942, 1, 0, 0, 0, 89, 946, 1, 0, 0, 0, 91, 951, 1, 0, 0, 0, 93, 957, 1, 0, 0, 0, 95, 963, 1, 0, 0, 0, 97, 969, 1, 0, 0, 0, 99, 974, 1, 0, 0, 0, 101, 979, 1, 0, 0, 0, 103, 985, 1, 0, 0, 0, 105, 990, 1, 0, 0, 0, 107, 995, 1, 0, 0, 0, 109, 1003, 1, 0, 0, 0, 111, 1006, 1, 0, 0, 0, 113, 1012, 1, 0, 0, 0, 115, 1020, 1, 0, 0, 0, 117, 1027, 1, 0, 0, 0, 119, 1032, 1, 0, 0, 0, 121, 1042, 1, 0, 0, 0, 123, 1048, 1, 0, 0, 0, 125, 1053, 1, 0, 0, 0, 127, 1063, 1, 0, 0, 0, 129, 1073, 1, 0, 0, 0, 131, 1083, 1, 0, 0, 0, 133, 1091, 1, 0, 0, 0, 135, 1097, 1, 0, 0, 0, 137, 1103, 1, 0, 0, 0, 139, 1108, 1, 0, 0, 0, 141, 1113, 1, 0, 0, 0, 143, 1121, 1, 0, 0, 0, 145, 1128, 1, 0, 0, 0, 147, 1135, 1, 0, 0, 0, 149, 1141, 1, 0, 0, 0, 151, 1151, 1, 0, 0, 0, 153, 1156, 1, 0, 0, 0, 155, 1164, 1, 0, 0, 0, 157, 1172, 1, 0, 0, 0, 159, 1182, 1, 0, 0, 0, 161, 1189, 1, 0, 0, 0, 163, 1196, 1, 0, 0, 0, 165, 1203, 1, 0, 0, 0, 167, 1208, 1, 0, 0, 0, 169, 1217, 1, 0, 0, 0, 171, 1225, 1, 0, 0, 0, 173, 1230, 1, 0, 0, 0, 175, 1245, 1, 0, 0, 0, 177, 1265, 1, 0, 0, 0, 179, 1280, 1, 0, 0, 0, 181, 1287, 1, 0, 0, 0, 183, 1295, 1, 0, 0, 0, 185, 1303, 1, 0, 0, 0, 187, 1308, 1, 0, 0, 0, 189, 1313, 1, 0, 0, 0, 191, 1318, 1, 0, 0, 0, 193, 1325, 1, 0, 0, 0, 195, 1333, 1, 0, 0, 0, 197, 1340, 1, 0, 0, 0, 199, 1344, 1, 0, 0, 0, 201, 1351, 1, 0, 0, 0, 203, 1359, 1, 0, 0, 0, 205, 1370, 1, 0, 0, 0, 207, 1380, 1, 0, 0, 0, 209, 1385, 1, 0, 0, 0, 211, 1391, 1, 0, 0, 0, 213, 1398, 1, 0, 0, 0, 215, 1407, 1, 0, 0, 0, 217, 1417, 1, 0, 0, 0, 219, 1420, 1, 0, 0, 0, 221, 1432, 1, 0, 0, 0, 223, 1441, 1, 0, 0, 0, 225, 1447, 1, 0, 0, 0, 227, 1454, 1, 0, 0, 0, 229, 1461, 1, 0, 0, 0, 231, 1469, 1, 0, 0, 0, 233, 1473, 1, 0, 0, 0, 235, 1479, 1, 0, 0, 0, 237, 1484, 1, 0, 0, 0, 239, 1490, 1, 0, 0, 0, 241, 1502, 1, 0, 0, 0, 243, 1509, 1, 0, 0, 0, 245, 1518, 1, 0, 0, 0, 247, 1524, 1, 0, 0, 0, 249, 1531, 1, 0, 0, 0, 251, 1536, 1, 0, 0, 0, 253, 1544, 1, 0, 0, 0, 255, 1553, 1, 0, 0, 0, 257, 1556, 1, 0, 0, 0, 259, 1565, 1, 0, 0, 0, 261, 1573, 1, 0, 0, 0, 263, 1579, 1, 0, 0, 0, 265, 1583, 1, 0, 0, 0, 267, 1594, 1, 0, 0, 0, 269, 1601, 1, 0, 0, 0, 271, 1605, 1, 0, 0, 0, 273, 1608, 1, 0, 0, 0, 275, 1613, 1, 0, 0, 0, 277, 1621, 1, 0, 0, 0, 279, 1632, 1, 0, 0, 0, 281, 1642, 1, 0, 0, 0, 283, 1652, 1, 0, 0, 0, 285, 1659, 1, 0, 0, 0, 287, 1665, 1, 0, 0, 0, 289, 1671, 1, 0, 0, 0, 291, 1687, 1, 0, 0, 0, 293, 1700, 1, 0, 0, 0, 295, 1713, 1, 0, 0, 0, 297, 1723, 1, 0, 0, 0, 299, 1730, 1, 0, 0, 0, 301, 1741, 1, 0, 0, 0, 303, 1752, 1, 0, 0, 0, 305, 1758, 1, 0, 0, 0, 307, 1763, 1, 0, 0, 0, 309, 1771, 1, 0, 0, 0, 311, 1777, 1, 0, 0, 0, 313, 1787, 1, 0, 0, 0, 315, 1796, 1, 0, 0, 0, 317, 1805, 1, 0, 0, 0, 319, 1813, 1, 0, 0, 0, 321, 1819, 1, 0, 0, 0, 323, 1825, 1, 0, 0, 0, 325, 1833, 1, 0, 0, 0, 327, 1838, 1, 0, 0, 0, 329, 1848, 1, 0, 0, 0, 331, 1855, 1, 0, 0, 0, 333, 1865, 1, 0, 0, 0, 335, 1873, 1, 0, 0, 0, 337, 1879, 1, 0, 0, 0, 339, 1893, 1, 0, 0, 0, 341, 1906, 1, 0, 0, 0, 343, 1914, 1, 0, 0, 0, 345, 1921, 1, 0, 0, 0, 347, 1928, 1, 0, 0, 0, 349, 1940, 1, 0, 0, 0, 351, 1949, 1, 0, 0, 0, 353, 1958, 1, 0, 0, 0, 355, 1966, 1, 0, 0, 0, 357, 1976, 1, 0, 0, 0, 359, 1987, 1, 0, 0, 0, 361, 1993, 1, 0, 0, 0, 363, 2001, 1, 0, 0, 0, 365, 2013, 1, 0, 0, 0, 367, 2020, 1, 0, 0, 0, 369, 2028, 1, 0, 0, 0, 371, 2039, 1, 0, 0, 0, 373, 2048, 1, 0, 0, 0, 375, 2058, 1, 0, 0, 0, 377, 2065, 1, 0, 0, 0, 379, 2071, 1, 0, 0, 0, 381, 2083, 1, 0, 0, 0, 383, 2096, 1, 0, 0, 0, 385, 2105, 1, 0, 0, 0, 387, 2115, 1, 0, 0, 0, 389, 2119, 1, 0, 0, 0, 391, 2128, 1, 0, 0, 0, 393, 2136, 1, 0, 0, 0, 395, 2144, 1, 0, 0, 0, 397, 2149, 1, 0, 0, 0, 399, 2160, 1, 0, 0, 0, 401, 2172, 1, 0, 0, 0, 403, 2181, 1, 0, 0, 0, 405, 2189, 1, 0, 0, 0, 407, 2196, 1, 0, 0, 0, 409, 2202, 1, 0, 0, 0, 411, 2207, 1, 0, 0, 0, 413, 2214, 1, 0, 0, 0, 415, 2219, 1, 0, 0, 0, 417, 2226, 1, 0, 0, 0, 419, 2234, 1, 0, 0, 0, 421, 2241, 1, 0, 0, 0, 423, 2248, 1, 0, 0, 0, 425, 2253, 1, 0, 0, 0, 427, 2260, 1, 0, 0, 0, 429, 2265, 1, 0, 0, 0, 431, 2271, 1, 0, 0, 0, 433, 2283, 1, 0, 0, 0, 435, 2294, 1, 0, 0, 0, 437, 2307, 1, 0, 0, 0, 439, 2313, 1, 0, 0, 0, 441, 2321, 1, 0, 0, 0, 443, 2327, 1, 0, 0, 0, 445, 2334, 1, 0, 0, 0, 447, 2339, 1, 0, 0, 0, 449, 2345, 1, 0, 0, 0, 451, 2352, 1, 0, 0, 0, 453, 2362, 1, 0, 0, 0, 455, 2369, 1, 0, 0, 0, 457, 2375, 1, 0, 0, 0, 459, 2380, 1, 0, 0, 0, 461, 2387, 1, 0, 0, 0, 463, 2390, 1, 0, 0, 0, 465, 2397, 1, 0, 0, 0, 467, 2407, 1, 0, 0, 0, 469, 2417, 1, 0, 0, 0, 471, 2429, 1, 0, 0, 0, 473, 2441, 1, 0, 0, 0, 475, 2451, 1, 0, 0, 0, 477, 2462, 1, 0, 0, 0, 479, 2470, 1, 0, 0, 0, 481, 2479, 1, 0, 0, 0, 483, 2484, 1, 0, 0, 0, 485, 2490, 1, 0, 0, 0, 487, 2497, 1, 0, 0, 0, 489, 2501, 1, 0, 0, 0, 491, 2506, 1, 0, 0, 0, 493, 2519, 1, 0, 0, 0, 495, 2539, 1, 0, 0, 0, 497, 2559, 1, 0, 0, 0, 499, 2570, 1, 0, 0, 0, 501, 2586, 1, 0, 0, 0, 503, 2603, 1, 0, 0, 0, 505, 2610, 1, 0, 0, 0, 507, 2619, 1, 0, 0, 0, 509, 2625, 1, 0, 0, 0, 511, 2630, 1, 0, 0, 0, 513, 2638, 1, 0, 0, 0, 515, 2642, 1, 0, 0, 0, 517, 2649, 1, 0, 0, 0, 519, 2661, 1, 0, 0, 0, 521, 2670, 1, 0, 0, 0, 523, 2679, 1, 0, 0, 0, 525, 2687, 1, 0, 0, 0, 527, 2692, 1, 0, 0, 0, 529, 2699, 1, 0, 0, 0, 531, 2705, 1, 0, 0, 0, 533, 2709, 1, 0, 0, 0, 535, 2714, 1, 0, 0, 0, 537, 2722, 1, 0, 0, 0, 539, 2729, 1, 0, 0, 0, 541, 2739, 1, 0, 0, 0, 543, 2745, 1, 0, 0, 0, 545, 2753, 1, 0, 0, 0, 547, 2757, 1, 0, 0, 0, 549, 2765, 1, 0, 0, 0, 551, 2773, 1, 0, 0, 0, 553, 2782, 1, 0, 0, 0, 555, 2786, 1, 0, 0, 0, 557, 2794, 1, 0, 0, 0, 559, 2801, 1, 0, 0, 0, 561, 2807, 1, 0, 0, 0, 563, 2814, 1, 0, 0, 0, 565, 2819, 1, 0, 0, 0, 567, 2824, 1, 0, 0, 0, 569, 2834, 1, 0, 0, 0, 571, 2848, 1, 0, 0, 0, 573, 2857, 1, 0, 0, 0, 575, 2865, 1, 0, 0, 0, 577, 2869, 1, 0, 0, 0, 579, 2873, 1, 0, 0, 0, 581, 2878, 1, 0, 0, 0, 583, 2887, 1, 0, 0, 0, 585, 2889, 1, 0, 0, 0, 587, 2891, 1, 0, 0, 0, 589, 2893, 1, 0, 0, 0, 591, 2895, 1, 0, 0, 0, 593, 2897, 1, 0, 0, 0, 595, 2899, 1, 0, 0, 0, 597, 2901, 1, 0, 0, 0, 599, 2903, 1, 0, 0, 0, 601, 2905, 1, 0, 0, 0, 603, 2907, 1, 0, 0, 0, 605, 2909, 1, 0, 0, 0, 607, 2911, 1, 0, 0, 0, 609, 2913, 1, 0, 0, 0, 611, 2915, 1, 0, 0, 0, 613, 2917, 1, 0, 0, 0, 615, 2919, 1, 0, 0, 0, 617, 2921, 1, 0, 0, 0, 619, 2923, 1, 0, 0, 0, 621, 2925, 1, 0, 0, 0, 623, 2927, 1, 0, 0, 0, 625, 2929, 1, 0, 0, 0, 627, 2931, 1, 0, 0, 0, 629, 2933, 1, 0, 0, 0, 631, 2935, 1, 0, 0, 0, 633, 2937, 1, 0, 0, 0, 635, 2940, 1, 0, 0, 0, 637, 2943, 1, 0, 0, 0, 639, 2945, 1, 0, 0, 0, 641, 2948, 1, 0, 0, 0, 643, 2954, 1, 0, 0, 0, 645, 2957, 1, 0, 0, 0, 647, 3004, 1, 0, 0, 0, 649, 3006, 1, 0, 0, 0, 651, 3008, 1, 0, 0, 0, 653, 3010, 1, 0, 0, 0, 655, 3012, 1, 0, 0, 0, 657, 3021, 1, 0, 0, 0, 659, 3025, 1, 0, 0, 0, 661, 3038, 1, 0, 0, 0, 663, 3050, 1, 0, 0, 0, 665, 3067, 1, 0, 0, 0, 667, 3081, 1, 0, 0, 0, 669, 3083, 1, 0, 0, 0, 671, 3085, 1, 0, 0, 0, 673, 3098, 1, 0, 0, 0, 675, 3111, 1, 0, 0, 0, 677, 3120, 1, 0, 0, 0, 679, 681, 7, 0, 0, 0, 680, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 6, 0, 0, 0, 685, 2, 1, 0, 0, 0, 686, 687, 5, 47, 0, 0, 687, 688, 5, 42, 0, 0, 688, 692, 1, 0, 0, 0, 689, 691, 9, 0, 0, 0, 690, 689, 1, 0, 0, 0, 691, 694, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 695, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 695, 696, 5, 42, 0, 0, 696, 697, 5, 47, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 6, 1, 0, 0, 699, 4, 1, 0, 0, 0, 700, 701, 5, 45, 0, 0, 701, 704, 5, 45, 0, 0, 702, 704, 5, 35, 0, 0, 703, 700, 1, 0, 0, 0, 703, 702, 1, 0, 0, 0, 704, 708, 1, 0, 0, 0, 705, 707, 8, 1, 0, 0, 706, 705, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 716, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 713, 5, 13, 0, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 717, 5, 10, 0, 0, 715, 717, 5, 0, 0, 1, 716, 712, 1, 0, 0, 0, 716, 715, 1, 0, 0, 0, 717, 729, 1, 0, 0, 0, 718, 719, 5, 45, 0, 0, 719, 720, 5, 45, 0, 0, 720, 726, 1, 0, 0, 0, 721, 723, 5, 13, 0, 0, 722, 721, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 727, 5, 10, 0, 0, 725, 727, 5, 0, 0, 1, 726, 722, 1, 0, 0, 0, 726, 725, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 703, 1, 0, 0, 0, 728, 718, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 6, 2, 0, 0, 731, 6, 1, 0, 0, 0, 732, 733, 5, 83, 0, 0, 733, 734, 5, 69, 0, 0, 734, 735, 5, 76, 0, 0, 735, 736, 5, 69, 0, 0, 736, 737, 5, 67, 0, 0, 737, 738, 5, 84, 0, 0, 738, 8, 1, 0, 0, 0, 739, 740, 5, 70, 0, 0, 740, 741, 5, 82, 0, 0, 741, 742, 5, 79, 0, 0, 742, 743, 5, 77, 0, 0, 743, 10, 1, 0, 0, 0, 744, 745, 5, 65, 0, 0, 745, 746, 5, 68, 0, 0, 746, 747, 5, 68, 0, 0, 747, 12, 1, 0, 0, 0, 748, 749, 5, 65, 0, 0, 749, 750, 5, 83, 0, 0, 750, 14, 1, 0, 0, 0, 751, 752, 5, 65, 0, 0, 752, 753, 5, 76, 0, 0, 753, 754, 5, 76, 0, 0, 754, 16, 1, 0, 0, 0, 755, 756, 5, 65, 0, 0, 756, 757, 5, 78, 0, 0, 757, 758, 5, 89, 0, 0, 758, 18, 1, 0, 0, 0, 759, 760, 5, 68, 0, 0, 760, 761, 5, 73, 0, 0, 761, 762, 5, 83, 0, 0, 762, 763, 5, 84, 0, 0, 763, 764, 5, 73, 0, 0, 764, 765, 5, 78, 0, 0, 765, 766, 5, 67, 0, 0, 766, 767, 5, 84, 0, 0, 767, 20, 1, 0, 0, 0, 768, 769, 5, 87, 0, 0, 769, 770, 5, 72, 0, 0, 770, 771, 5, 69, 0, 0, 771, 772, 5, 82, 0, 0, 772, 773, 5, 69, 0, 0, 773, 22, 1, 0, 0, 0, 774, 775, 5, 71, 0, 0, 775, 776, 5, 82, 0, 0, 776, 777, 5, 79, 0, 0, 777, 778, 5, 85, 0, 0, 778, 779, 5, 80, 0, 0, 779, 24, 1, 0, 0, 0, 780, 781, 5, 66, 0, 0, 781, 782, 5, 89, 0, 0, 782, 26, 1, 0, 0, 0, 783, 784, 5, 71, 0, 0, 784, 785, 5, 82, 0, 0, 785, 786, 5, 79, 0, 0, 786, 787, 5, 85, 0, 0, 787, 788, 5, 80, 0, 0, 788, 789, 5, 73, 0, 0, 789, 790, 5, 78, 0, 0, 790, 791, 5, 71, 0, 0, 791, 28, 1, 0, 0, 0, 792, 793, 5, 83, 0, 0, 793, 794, 5, 69, 0, 0, 794, 795, 5, 84, 0, 0, 795, 796, 5, 83, 0, 0, 796, 30, 1, 0, 0, 0, 797, 798, 5, 67, 0, 0, 798, 799, 5, 85, 0, 0, 799, 800, 5, 66, 0, 0, 800, 801, 5, 69, 0, 0, 801, 32, 1, 0, 0, 0, 802, 803, 5, 82, 0, 0, 803, 804, 5, 79, 0, 0, 804, 805, 5, 76, 0, 0, 805, 806, 5, 76, 0, 0, 806, 807, 5, 85, 0, 0, 807, 808, 5, 80, 0, 0, 808, 34, 1, 0, 0, 0, 809, 810, 5, 79, 0, 0, 810, 811, 5, 82, 0, 0, 811, 812, 5, 68, 0, 0, 812, 813, 5, 69, 0, 0, 813, 814, 5, 82, 0, 0, 814, 36, 1, 0, 0, 0, 815, 816, 5, 72, 0, 0, 816, 817, 5, 65, 0, 0, 817, 818, 5, 86, 0, 0, 818, 819, 5, 73, 0, 0, 819, 820, 5, 78, 0, 0, 820, 821, 5, 71, 0, 0, 821, 38, 1, 0, 0, 0, 822, 823, 5, 76, 0, 0, 823, 824, 5, 73, 0, 0, 824, 825, 5, 77, 0, 0, 825, 826, 5, 73, 0, 0, 826, 827, 5, 84, 0, 0, 827, 40, 1, 0, 0, 0, 828, 829, 5, 65, 0, 0, 829, 830, 5, 84, 0, 0, 830, 42, 1, 0, 0, 0, 831, 832, 5, 79, 0, 0, 832, 833, 5, 82, 0, 0, 833, 44, 1, 0, 0, 0, 834, 835, 5, 65, 0, 0, 835, 836, 5, 78, 0, 0, 836, 837, 5, 68, 0, 0, 837, 46, 1, 0, 0, 0, 838, 839, 5, 73, 0, 0, 839, 840, 5, 78, 0, 0, 840, 48, 1, 0, 0, 0, 841, 842, 5, 78, 0, 0, 842, 843, 5, 79, 0, 0, 843, 844, 5, 84, 0, 0, 844, 50, 1, 0, 0, 0, 845, 846, 5, 78, 0, 0, 846, 847, 5, 79, 0, 0, 847, 52, 1, 0, 0, 0, 848, 849, 5, 69, 0, 0, 849, 850, 5, 88, 0, 0, 850, 851, 5, 73, 0, 0, 851, 852, 5, 83, 0, 0, 852, 853, 5, 84, 0, 0, 853, 854, 5, 83, 0, 0, 854, 54, 1, 0, 0, 0, 855, 856, 5, 66, 0, 0, 856, 857, 5, 69, 0, 0, 857, 858, 5, 84, 0, 0, 858, 859, 5, 87, 0, 0, 859, 860, 5, 69, 0, 0, 860, 861, 5, 69, 0, 0, 861, 862, 5, 78, 0, 0, 862, 56, 1, 0, 0, 0, 863, 864, 5, 76, 0, 0, 864, 865, 5, 73, 0, 0, 865, 866, 5, 75, 0, 0, 866, 867, 5, 69, 0, 0, 867, 58, 1, 0, 0, 0, 868, 869, 5, 82, 0, 0, 869, 870, 5, 76, 0, 0, 870, 871, 5, 73, 0, 0, 871, 872, 5, 75, 0, 0, 872, 873, 5, 69, 0, 0, 873, 60, 1, 0, 0, 0, 874, 875, 5, 73, 0, 0, 875, 876, 5, 83, 0, 0, 876, 62, 1, 0, 0, 0, 877, 878, 5, 84, 0, 0, 878, 879, 5, 82, 0, 0, 879, 880, 5, 85, 0, 0, 880, 881, 5, 69, 0, 0, 881, 64, 1, 0, 0, 0, 882, 883, 5, 70, 0, 0, 883, 884, 5, 65, 0, 0, 884, 885, 5, 76, 0, 0, 885, 886, 5, 83, 0, 0, 886, 887, 5, 69, 0, 0, 887, 66, 1, 0, 0, 0, 888, 889, 5, 78, 0, 0, 889, 890, 5, 85, 0, 0, 890, 891, 5, 76, 0, 0, 891, 892, 5, 76, 0, 0, 892, 893, 5, 83, 0, 0, 893, 68, 1, 0, 0, 0, 894, 895, 5, 65, 0, 0, 895, 896, 5, 83, 0, 0, 896, 897, 5, 67, 0, 0, 897, 70, 1, 0, 0, 0, 898, 899, 5, 68, 0, 0, 899, 900, 5, 69, 0, 0, 900, 901, 5, 83, 0, 0, 901, 902, 5, 67, 0, 0, 902, 72, 1, 0, 0, 0, 903, 904, 5, 70, 0, 0, 904, 905, 5, 79, 0, 0, 905, 906, 5, 82, 0, 0, 906, 74, 1, 0, 0, 0, 907, 908, 5, 73, 0, 0, 908, 909, 5, 78, 0, 0, 909, 910, 5, 84, 0, 0, 910, 911, 5, 69, 0, 0, 911, 912, 5, 82, 0, 0, 912, 913, 5, 86, 0, 0, 913, 914, 5, 65, 0, 0, 914, 915, 5, 76, 0, 0, 915, 76, 1, 0, 0, 0, 916, 917, 5, 67, 0, 0, 917, 918, 5, 65, 0, 0, 918, 919, 5, 83, 0, 0, 919, 920, 5, 69, 0, 0, 920, 78, 1, 0, 0, 0, 921, 922, 5, 87, 0, 0, 922, 923, 5, 72, 0, 0, 923, 924, 5, 69, 0, 0, 924, 925, 5, 78, 0, 0, 925, 80, 1, 0, 0, 0, 926, 927, 5, 84, 0, 0, 927, 928, 5, 72, 0, 0, 928, 929, 5, 69, 0, 0, 929, 930, 5, 78, 0, 0, 930, 82, 1, 0, 0, 0, 931, 932, 5, 69, 0, 0, 932, 933, 5, 76, 0, 0, 933, 934, 5, 83, 0, 0, 934, 935, 5, 69, 0, 0, 935, 84, 1, 0, 0, 0, 936, 937, 5, 66, 0, 0, 937, 938, 5, 69, 0, 0, 938, 939, 5, 71, 0, 0, 939, 940, 5, 73, 0, 0, 940, 941, 5, 78, 0, 0, 941, 86, 1, 0, 0, 0, 942, 943, 5, 69, 0, 0, 943, 944, 5, 78, 0, 0, 944, 945, 5, 68, 0, 0, 945, 88, 1, 0, 0, 0, 946, 947, 5, 74, 0, 0, 947, 948, 5, 79, 0, 0, 948, 949, 5, 73, 0, 0, 949, 950, 5, 78, 0, 0, 950, 90, 1, 0, 0, 0, 951, 952, 5, 67, 0, 0, 952, 953, 5, 82, 0, 0, 953, 954, 5, 79, 0, 0, 954, 955, 5, 83, 0, 0, 955, 956, 5, 83, 0, 0, 956, 92, 1, 0, 0, 0, 957, 958, 5, 79, 0, 0, 958, 959, 5, 85, 0, 0, 959, 960, 5, 84, 0, 0, 960, 961, 5, 69, 0, 0, 961, 962, 5, 82, 0, 0, 962, 94, 1, 0, 0, 0, 963, 964, 5, 73, 0, 0, 964, 965, 5, 78, 0, 0, 965, 966, 5, 78, 0, 0, 966, 967, 5, 69, 0, 0, 967, 968, 5, 82, 0, 0, 968, 96, 1, 0, 0, 0, 969, 970, 5, 76, 0, 0, 970, 971, 5, 69, 0, 0, 971, 972, 5, 70, 0, 0, 972, 973, 5, 84, 0, 0, 973, 98, 1, 0, 0, 0, 974, 975, 5, 83, 0, 0, 975, 976, 5, 69, 0, 0, 976, 977, 5, 77, 0, 0, 977, 978, 5, 73, 0, 0, 978, 100, 1, 0, 0, 0, 979, 980, 5, 82, 0, 0, 980, 981, 5, 73, 0, 0, 981, 982, 5, 71, 0, 0, 982, 983, 5, 72, 0, 0, 983, 984, 5, 84, 0, 0, 984, 102, 1, 0, 0, 0, 985, 986, 5, 70, 0, 0, 986, 987, 5, 85, 0, 0, 987, 988, 5, 76, 0, 0, 988, 989, 5, 76, 0, 0, 989, 104, 1, 0, 0, 0, 990, 991, 5, 85, 0, 0, 991, 992, 5, 83, 0, 0, 992, 993, 5, 69, 0, 0, 993, 994, 5, 82, 0, 0, 994, 106, 1, 0, 0, 0, 995, 996, 5, 78, 0, 0, 996, 997, 5, 65, 0, 0, 997, 998, 5, 84, 0, 0, 998, 999, 5, 85, 0, 0, 999, 1000, 5, 82, 0, 0, 1000, 1001, 5, 65, 0, 0, 1001, 1002, 5, 76, 0, 0, 1002, 108, 1, 0, 0, 0, 1003, 1004, 5, 79, 0, 0, 1004, 1005, 5, 78, 0, 0, 1005, 110, 1, 0, 0, 0, 1006, 1007, 5, 80, 0, 0, 1007, 1008, 5, 73, 0, 0, 1008, 1009, 5, 86, 0, 0, 1009, 1010, 5, 79, 0, 0, 1010, 1011, 5, 84, 0, 0, 1011, 112, 1, 0, 0, 0, 1012, 1013, 5, 76, 0, 0, 1013, 1014, 5, 65, 0, 0, 1014, 1015, 5, 84, 0, 0, 1015, 1016, 5, 69, 0, 0, 1016, 1017, 5, 82, 0, 0, 1017, 1018, 5, 65, 0, 0, 1018, 1019, 5, 76, 0, 0, 1019, 114, 1, 0, 0, 0, 1020, 1021, 5, 87, 0, 0, 1021, 1022, 5, 73, 0, 0, 1022, 1023, 5, 78, 0, 0, 1023, 1024, 5, 68, 0, 0, 1024, 1025, 5, 79, 0, 0, 1025, 1026, 5, 87, 0, 0, 1026, 116, 1, 0, 0, 0, 1027, 1028, 5, 79, 0, 0, 1028, 1029, 5, 86, 0, 0, 1029, 1030, 5, 69, 0, 0, 1030, 1031, 5, 82, 0, 0, 1031, 118, 1, 0, 0, 0, 1032, 1033, 5, 80, 0, 0, 1033, 1034, 5, 65, 0, 0, 1034, 1035, 5, 82, 0, 0, 1035, 1036, 5, 84, 0, 0, 1036, 1037, 5, 73, 0, 0, 1037, 1038, 5, 84, 0, 0, 1038, 1039, 5, 73, 0, 0, 1039, 1040, 5, 79, 0, 0, 1040, 1041, 5, 78, 0, 0, 1041, 120, 1, 0, 0, 0, 1042, 1043, 5, 82, 0, 0, 1043, 1044, 5, 65, 0, 0, 1044, 1045, 5, 78, 0, 0, 1045, 1046, 5, 71, 0, 0, 1046, 1047, 5, 69, 0, 0, 1047, 122, 1, 0, 0, 0, 1048, 1049, 5, 82, 0, 0, 1049, 1050, 5, 79, 0, 0, 1050, 1051, 5, 87, 0, 0, 1051, 1052, 5, 83, 0, 0, 1052, 124, 1, 0, 0, 0, 1053, 1054, 5, 85, 0, 0, 1054, 1055, 5, 78, 0, 0, 1055, 1056, 5, 66, 0, 0, 1056, 1057, 5, 79, 0, 0, 1057, 1058, 5, 85, 0, 0, 1058, 1059, 5, 78, 0, 0, 1059, 1060, 5, 68, 0, 0, 1060, 1061, 5, 69, 0, 0, 1061, 1062, 5, 68, 0, 0, 1062, 126, 1, 0, 0, 0, 1063, 1064, 5, 80, 0, 0, 1064, 1065, 5, 82, 0, 0, 1065, 1066, 5, 69, 0, 0, 1066, 1067, 5, 67, 0, 0, 1067, 1068, 5, 69, 0, 0, 1068, 1069, 5, 68, 0, 0, 1069, 1070, 5, 73, 0, 0, 1070, 1071, 5, 78, 0, 0, 1071, 1072, 5, 71, 0, 0, 1072, 128, 1, 0, 0, 0, 1073, 1074, 5, 70, 0, 0, 1074, 1075, 5, 79, 0, 0, 1075, 1076, 5, 76, 0, 0, 1076, 1077, 5, 76, 0, 0, 1077, 1078, 5, 79, 0, 0, 1078, 1079, 5, 87, 0, 0, 1079, 1080, 5, 73, 0, 0, 1080, 1081, 5, 78, 0, 0, 1081, 1082, 5, 71, 0, 0, 1082, 130, 1, 0, 0, 0, 1083, 1084, 5, 67, 0, 0, 1084, 1085, 5, 85, 0, 0, 1085, 1086, 5, 82, 0, 0, 1086, 1087, 5, 82, 0, 0, 1087, 1088, 5, 69, 0, 0, 1088, 1089, 5, 78, 0, 0, 1089, 1090, 5, 84, 0, 0, 1090, 132, 1, 0, 0, 0, 1091, 1092, 5, 70, 0, 0, 1092, 1093, 5, 73, 0, 0, 1093, 1094, 5, 82, 0, 0, 1094, 1095, 5, 83, 0, 0, 1095, 1096, 5, 84, 0, 0, 1096, 134, 1, 0, 0, 0, 1097, 1098, 5, 65, 0, 0, 1098, 1099, 5, 70, 0, 0, 1099, 1100, 5, 84, 0, 0, 1100, 1101, 5, 69, 0, 0, 1101, 1102, 5, 82, 0, 0, 1102, 136, 1, 0, 0, 0, 1103, 1104, 5, 76, 0, 0, 1104, 1105, 5, 65, 0, 0, 1105, 1106, 5, 83, 0, 0, 1106, 1107, 5, 84, 0, 0, 1107, 138, 1, 0, 0, 0, 1108, 1109, 5, 87, 0, 0, 1109, 1110, 5, 73, 0, 0, 1110, 1111, 5, 84, 0, 0, 1111, 1112, 5, 72, 0, 0, 1112, 140, 1, 0, 0, 0, 1113, 1114, 5, 87, 0, 0, 1114, 1115, 5, 73, 0, 0, 1115, 1116, 5, 84, 0, 0, 1116, 1117, 5, 72, 0, 0, 1117, 1118, 5, 79, 0, 0, 1118, 1119, 5, 85, 0, 0, 1119, 1120, 5, 84, 0, 0, 1120, 142, 1, 0, 0, 0, 1121, 1122, 5, 86, 0, 0, 1122, 1123, 5, 65, 0, 0, 1123, 1124, 5, 76, 0, 0, 1124, 1125, 5, 85, 0, 0, 1125, 1126, 5, 69, 0, 0, 1126, 1127, 5, 83, 0, 0, 1127, 144, 1, 0, 0, 0, 1128, 1129, 5, 67, 0, 0, 1129, 1130, 5, 82, 0, 0, 1130, 1131, 5, 69, 0, 0, 1131, 1132, 5, 65, 0, 0, 1132, 1133, 5, 84, 0, 0, 1133, 1134, 5, 69, 0, 0, 1134, 146, 1, 0, 0, 0, 1135, 1136, 5, 84, 0, 0, 1136, 1137, 5, 65, 0, 0, 1137, 1138, 5, 66, 0, 0, 1138, 1139, 5, 76, 0, 0, 1139, 1140, 5, 69, 0, 0, 1140, 148, 1, 0, 0, 0, 1141, 1142, 5, 68, 0, 0, 1142, 1143, 5, 73, 0, 0, 1143, 1144, 5, 82, 0, 0, 1144, 1145, 5, 69, 0, 0, 1145, 1146, 5, 67, 0, 0, 1146, 1147, 5, 84, 0, 0, 1147, 1148, 5, 79, 0, 0, 1148, 1149, 5, 82, 0, 0, 1149, 1150, 5, 89, 0, 0, 1150, 150, 1, 0, 0, 0, 1151, 1152, 5, 86, 0, 0, 1152, 1153, 5, 73, 0, 0, 1153, 1154, 5, 69, 0, 0, 1154, 1155, 5, 87, 0, 0, 1155, 152, 1, 0, 0, 0, 1156, 1157, 5, 82, 0, 0, 1157, 1158, 5, 69, 0, 0, 1158, 1159, 5, 80, 0, 0, 1159, 1160, 5, 76, 0, 0, 1160, 1161, 5, 65, 0, 0, 1161, 1162, 5, 67, 0, 0, 1162, 1163, 5, 69, 0, 0, 1163, 154, 1, 0, 0, 0, 1164, 1165, 5, 69, 0, 0, 1165, 1166, 5, 88, 0, 0, 1166, 1167, 5, 69, 0, 0, 1167, 1168, 5, 67, 0, 0, 1168, 1169, 5, 85, 0, 0, 1169, 1170, 5, 84, 0, 0, 1170, 1171, 5, 69, 0, 0, 1171, 156, 1, 0, 0, 0, 1172, 1173, 5, 83, 0, 0, 1173, 1174, 5, 84, 0, 0, 1174, 1175, 5, 65, 0, 0, 1175, 1176, 5, 84, 0, 0, 1176, 1177, 5, 69, 0, 0, 1177, 1178, 5, 77, 0, 0, 1178, 1179, 5, 69, 0, 0, 1179, 1180, 5, 78, 0, 0, 1180, 1181, 5, 84, 0, 0, 1181, 158, 1, 0, 0, 0, 1182, 1183, 5, 73, 0, 0, 1183, 1184, 5, 78, 0, 0, 1184, 1185, 5, 83, 0, 0, 1185, 1186, 5, 69, 0, 0, 1186, 1187, 5, 82, 0, 0, 1187, 1188, 5, 84, 0, 0, 1188, 160, 1, 0, 0, 0, 1189, 1190, 5, 68, 0, 0, 1190, 1191, 5, 69, 0, 0, 1191, 1192, 5, 76, 0, 0, 1192, 1193, 5, 69, 0, 0, 1193, 1194, 5, 84, 0, 0, 1194, 1195, 5, 69, 0, 0, 1195, 162, 1, 0, 0, 0, 1196, 1197, 5, 82, 0, 0, 1197, 1198, 5, 69, 0, 0, 1198, 1199, 5, 77, 0, 0, 1199, 1200, 5, 79, 0, 0, 1200, 1201, 5, 86, 0, 0, 1201, 1202, 5, 69, 0, 0, 1202, 164, 1, 0, 0, 0, 1203, 1204, 5, 73, 0, 0, 1204, 1205, 5, 78, 0, 0, 1205, 1206, 5, 84, 0, 0, 1206, 1207, 5, 79, 0, 0, 1207, 166, 1, 0, 0, 0, 1208, 1209, 5, 68, 0, 0, 1209, 1210, 5, 69, 0, 0, 1210, 1211, 5, 83, 0, 0, 1211, 1212, 5, 67, 0, 0, 1212, 1213, 5, 82, 0, 0, 1213, 1214, 5, 73, 0, 0, 1214, 1215, 5, 66, 0, 0, 1215, 1216, 5, 69, 0, 0, 1216, 168, 1, 0, 0, 0, 1217, 1218, 5, 69, 0, 0, 1218, 1219, 5, 88, 0, 0, 1219, 1220, 5, 80, 0, 0, 1220, 1221, 5, 76, 0, 0, 1221, 1222, 5, 65, 0, 0, 1222, 1223, 5, 73, 0, 0, 1223, 1224, 5, 78, 0, 0, 1224, 170, 1, 0, 0, 0, 1225, 1226, 5, 80, 0, 0, 1226, 1227, 5, 76, 0, 0, 1227, 1228, 5, 65, 0, 0, 1228, 1229, 5, 78, 0, 0, 1229, 172, 1, 0, 0, 0, 1230, 1231, 5, 67, 0, 0, 1231, 1232, 5, 72, 0, 0, 1232, 1233, 5, 65, 0, 0, 1233, 1234, 5, 78, 0, 0, 1234, 1235, 5, 71, 0, 0, 1235, 1236, 5, 69, 0, 0, 1236, 1237, 5, 76, 0, 0, 1237, 1238, 5, 79, 0, 0, 1238, 1239, 5, 71, 0, 0, 1239, 1240, 5, 95, 0, 0, 1240, 1241, 5, 77, 0, 0, 1241, 1242, 5, 79, 0, 0, 1242, 1243, 5, 68, 0, 0, 1243, 1244, 5, 69, 0, 0, 1244, 174, 1, 0, 0, 0, 1245, 1246, 5, 74, 0, 0, 1246, 1247, 5, 83, 0, 0, 1247, 1248, 5, 79, 0, 0, 1248, 1249, 5, 78, 0, 0, 1249, 1250, 5, 95, 0, 0, 1250, 1251, 5, 69, 0, 0, 1251, 1252, 5, 88, 0, 0, 1252, 1253, 5, 69, 0, 0, 1253, 1254, 5, 67, 0, 0, 1254, 1255, 5, 85, 0, 0, 1255, 1256, 5, 84, 0, 0, 1256, 1257, 5, 73, 0, 0, 1257, 1258, 5, 79, 0, 0, 1258, 1259, 5, 78, 0, 0, 1259, 1260, 5, 95, 0, 0, 1260, 1261, 5, 80, 0, 0, 1261, 1262, 5, 76, 0, 0, 1262, 1263, 5, 65, 0, 0, 1263, 1264, 5, 78, 0, 0, 1264, 176, 1, 0, 0, 0, 1265, 1266, 5, 69, 0, 0, 1266, 1267, 5, 83, 0, 0, 1267, 1268, 5, 84, 0, 0, 1268, 1269, 5, 73, 0, 0, 1269, 1270, 5, 77, 0, 0, 1270, 1271, 5, 65, 0, 0, 1271, 1272, 5, 84, 0, 0, 1272, 1273, 5, 69, 0, 0, 1273, 1274, 5, 68, 0, 0, 1274, 1275, 5, 95, 0, 0, 1275, 1276, 5, 67, 0, 0, 1276, 1277, 5, 79, 0, 0, 1277, 1278, 5, 83, 0, 0, 1278, 1279, 5, 84, 0, 0, 1279, 178, 1, 0, 0, 0, 1280, 1281, 5, 70, 0, 0, 1281, 1282, 5, 79, 0, 0, 1282, 1283, 5, 82, 0, 0, 1283, 1284, 5, 77, 0, 0, 1284, 1285, 5, 65, 0, 0, 1285, 1286, 5, 84, 0, 0, 1286, 180, 1, 0, 0, 0, 1287, 1288, 5, 76, 0, 0, 1288, 1289, 5, 79, 0, 0, 1289, 1290, 5, 71, 0, 0, 1290, 1291, 5, 73, 0, 0, 1291, 1292, 5, 67, 0, 0, 1292, 1293, 5, 65, 0, 0, 1293, 1294, 5, 76, 0, 0, 1294, 182, 1, 0, 0, 0, 1295, 1296, 5, 67, 0, 0, 1296, 1297, 5, 79, 0, 0, 1297, 1298, 5, 68, 0, 0, 1298, 1299, 5, 69, 0, 0, 1299, 1300, 5, 71, 0, 0, 1300, 1301, 5, 69, 0, 0, 1301, 1302, 5, 78, 0, 0, 1302, 184, 1, 0, 0, 0, 1303, 1304, 5, 67, 0, 0, 1304, 1305, 5, 79, 0, 0, 1305, 1306, 5, 83, 0, 0, 1306, 1307, 5, 84, 0, 0, 1307, 186, 1, 0, 0, 0, 1308, 1309, 5, 67, 0, 0, 1309, 1310, 5, 65, 0, 0, 1310, 1311, 5, 83, 0, 0, 1311, 1312, 5, 84, 0, 0, 1312, 188, 1, 0, 0, 0, 1313, 1314, 5, 83, 0, 0, 1314, 1315, 5, 72, 0, 0, 1315, 1316, 5, 79, 0, 0, 1316, 1317, 5, 87, 0, 0, 1317, 190, 1, 0, 0, 0, 1318, 1319, 5, 84, 0, 0, 1319, 1320, 5, 65, 0, 0, 1320, 1321, 5, 66, 0, 0, 1321, 1322, 5, 76, 0, 0, 1322, 1323, 5, 69, 0, 0, 1323, 1324, 5, 83, 0, 0, 1324, 192, 1, 0, 0, 0, 1325, 1326, 5, 67, 0, 0, 1326, 1327, 5, 79, 0, 0, 1327, 1328, 5, 76, 0, 0, 1328, 1329, 5, 85, 0, 0, 1329, 1330, 5, 77, 0, 0, 1330, 1331, 5, 78, 0, 0, 1331, 1332, 5, 83, 0, 0, 1332, 194, 1, 0, 0, 0, 1333, 1334, 5, 67, 0, 0, 1334, 1335, 5, 79, 0, 0, 1335, 1336, 5, 76, 0, 0, 1336, 1337, 5, 85, 0, 0, 1337, 1338, 5, 77, 0, 0, 1338, 1339, 5, 78, 0, 0, 1339, 196, 1, 0, 0, 0, 1340, 1341, 5, 85, 0, 0, 1341, 1342, 5, 83, 0, 0, 1342, 1343, 5, 69, 0, 0, 1343, 198, 1, 0, 0, 0, 1344, 1345, 5, 77, 0, 0, 1345, 1346, 5, 79, 0, 0, 1346, 1347, 5, 68, 0, 0, 1347, 1348, 5, 85, 0, 0, 1348, 1349, 5, 76, 0, 0, 1349, 1350, 5, 69, 0, 0, 1350, 200, 1, 0, 0, 0, 1351, 1352, 5, 77, 0, 0, 1352, 1353, 5, 79, 0, 0, 1353, 1354, 5, 68, 0, 0, 1354, 1355, 5, 85, 0, 0, 1355, 1356, 5, 76, 0, 0, 1356, 1357, 5, 69, 0, 0, 1357, 1358, 5, 83, 0, 0, 1358, 202, 1, 0, 0, 0, 1359, 1360, 5, 80, 0, 0, 1360, 1361, 5, 65, 0, 0, 1361, 1362, 5, 82, 0, 0, 1362, 1363, 5, 84, 0, 0, 1363, 1364, 5, 73, 0, 0, 1364, 1365, 5, 84, 0, 0, 1365, 1366, 5, 73, 0, 0, 1366, 1367, 5, 79, 0, 0, 1367, 1368, 5, 78, 0, 0, 1368, 1369, 5, 83, 0, 0, 1369, 204, 1, 0, 0, 0, 1370, 1371, 5, 70, 0, 0, 1371, 1372, 5, 85, 0, 0, 1372, 1373, 5, 78, 0, 0, 1373, 1374, 5, 67, 0, 0, 1374, 1375, 5, 84, 0, 0, 1375, 1376, 5, 73, 0, 0, 1376, 1377, 5, 79, 0, 0, 1377, 1378, 5, 78, 0, 0, 1378, 1379, 5, 83, 0, 0, 1379, 206, 1, 0, 0, 0, 1380, 1381, 5, 68, 0, 0, 1381, 1382, 5, 82, 0, 0, 1382, 1383, 5, 79, 0, 0, 1383, 1384, 5, 80, 0, 0, 1384, 208, 1, 0, 0, 0, 1385, 1386, 5, 85, 0, 0, 1386, 1387, 5, 78, 0, 0, 1387, 1388, 5, 73, 0, 0, 1388, 1389, 5, 79, 0, 0, 1389, 1390, 5, 78, 0, 0, 1390, 210, 1, 0, 0, 0, 1391, 1392, 5, 69, 0, 0, 1392, 1393, 5, 88, 0, 0, 1393, 1394, 5, 67, 0, 0, 1394, 1395, 5, 69, 0, 0, 1395, 1396, 5, 80, 0, 0, 1396, 1397, 5, 84, 0, 0, 1397, 212, 1, 0, 0, 0, 1398, 1399, 5, 83, 0, 0, 1399, 1400, 5, 69, 0, 0, 1400, 1401, 5, 84, 0, 0, 1401, 1402, 5, 77, 0, 0, 1402, 1403, 5, 73, 0, 0, 1403, 1404, 5, 78, 0, 0, 1404, 1405, 5, 85, 0, 0, 1405, 1406, 5, 83, 0, 0, 1406, 214, 1, 0, 0, 0, 1407, 1408, 5, 73, 0, 0, 1408, 1409, 5, 78, 0, 0, 1409, 1410, 5, 84, 0, 0, 1410, 1411, 5, 69, 0, 0, 1411, 1412, 5, 82, 0, 0, 1412, 1413, 5, 83, 0, 0, 1413, 1414, 5, 69, 0, 0, 1414, 1415, 5, 67, 0, 0, 1415, 1416, 5, 84, 0, 0, 1416, 216, 1, 0, 0, 0, 1417, 1418, 5, 84, 0, 0, 1418, 1419, 5, 79, 0, 0, 1419, 218, 1, 0, 0, 0, 1420, 1421, 5, 84, 0, 0, 1421, 1422, 5, 65, 0, 0, 1422, 1423, 5, 66, 0, 0, 1423, 1424, 5, 76, 0, 0, 1424, 1425, 5, 69, 0, 0, 1425, 1426, 5, 83, 0, 0, 1426, 1427, 5, 65, 0, 0, 1427, 1428, 5, 77, 0, 0, 1428, 1429, 5, 80, 0, 0, 1429, 1430, 5, 76, 0, 0, 1430, 1431, 5, 69, 0, 0, 1431, 220, 1, 0, 0, 0, 1432, 1433, 5, 83, 0, 0, 1433, 1434, 5, 84, 0, 0, 1434, 1435, 5, 82, 0, 0, 1435, 1436, 5, 65, 0, 0, 1436, 1437, 5, 84, 0, 0, 1437, 1438, 5, 73, 0, 0, 1438, 1439, 5, 70, 0, 0, 1439, 1440, 5, 89, 0, 0, 1440, 222, 1, 0, 0, 0, 1441, 1442, 5, 65, 0, 0, 1442, 1443, 5, 76, 0, 0, 1443, 1444, 5, 84, 0, 0, 1444, 1445, 5, 69, 0, 0, 1445, 1446, 5, 82, 0, 0, 1446, 224, 1, 0, 0, 0, 1447, 1448, 5, 82, 0, 0, 1448, 1449, 5, 69, 0, 0, 1449, 1450, 5, 78, 0, 0, 1450, 1451, 5, 65, 0, 0, 1451, 1452, 5, 77, 0, 0, 1452, 1453, 5, 69, 0, 0, 1453, 226, 1, 0, 0, 0, 1454, 1455, 5, 83, 0, 0, 1455, 1456, 5, 84, 0, 0, 1456, 1457, 5, 82, 0, 0, 1457, 1458, 5, 85, 0, 0, 1458, 1459, 5, 67, 0, 0, 1459, 1460, 5, 84, 0, 0, 1460, 228, 1, 0, 0, 0, 1461, 1462, 5, 67, 0, 0, 1462, 1463, 5, 79, 0, 0, 1463, 1464, 5, 77, 0, 0, 1464, 1465, 5, 77, 0, 0, 1465, 1466, 5, 69, 0, 0, 1466, 1467, 5, 78, 0, 0, 1467, 1468, 5, 84, 0, 0, 1468, 230, 1, 0, 0, 0, 1469, 1470, 5, 83, 0, 0, 1470, 1471, 5, 69, 0, 0, 1471, 1472, 5, 84, 0, 0, 1472, 232, 1, 0, 0, 0, 1473, 1474, 5, 82, 0, 0, 1474, 1475, 5, 69, 0, 0, 1475, 1476, 5, 83, 0, 0, 1476, 1477, 5, 69, 0, 0, 1477, 1478, 5, 84, 0, 0, 1478, 234, 1, 0, 0, 0, 1479, 1480, 5, 68, 0, 0, 1480, 1481, 5, 65, 0, 0, 1481, 1482, 5, 84, 0, 0, 1482, 1483, 5, 65, 0, 0, 1483, 236, 1, 0, 0, 0, 1484, 1485, 5, 83, 0, 0, 1485, 1486, 5, 84, 0, 0, 1486, 1487, 5, 65, 0, 0, 1487, 1488, 5, 82, 0, 0, 1488, 1489, 5, 84, 0, 0, 1489, 238, 1, 0, 0, 0, 1490, 1491, 5, 84, 0, 0, 1491, 1492, 5, 82, 0, 0, 1492, 1493, 5, 65, 0, 0, 1493, 1494, 5, 78, 0, 0, 1494, 1495, 5, 83, 0, 0, 1495, 1496, 5, 65, 0, 0, 1496, 1497, 5, 67, 0, 0, 1497, 1498, 5, 84, 0, 0, 1498, 1499, 5, 73, 0, 0, 1499, 1500, 5, 79, 0, 0, 1500, 1501, 5, 78, 0, 0, 1501, 240, 1, 0, 0, 0, 1502, 1503, 5, 67, 0, 0, 1503, 1504, 5, 79, 0, 0, 1504, 1505, 5, 77, 0, 0, 1505, 1506, 5, 77, 0, 0, 1506, 1507, 5, 73, 0, 0, 1507, 1508, 5, 84, 0, 0, 1508, 242, 1, 0, 0, 0, 1509, 1510, 5, 82, 0, 0, 1510, 1511, 5, 79, 0, 0, 1511, 1512, 5, 76, 0, 0, 1512, 1513, 5, 76, 0, 0, 1513, 1514, 5, 66, 0, 0, 1514, 1515, 5, 65, 0, 0, 1515, 1516, 5, 67, 0, 0, 1516, 1517, 5, 75, 0, 0, 1517, 244, 1, 0, 0, 0, 1518, 1519, 5, 77, 0, 0, 1519, 1520, 5, 65, 0, 0, 1520, 1521, 5, 67, 0, 0, 1521, 1522, 5, 82, 0, 0, 1522, 1523, 5, 79, 0, 0, 1523, 246, 1, 0, 0, 0, 1524, 1525, 5, 73, 0, 0, 1525, 1526, 5, 71, 0, 0, 1526, 1527, 5, 78, 0, 0, 1527, 1528, 5, 79, 0, 0, 1528, 1529, 5, 82, 0, 0, 1529, 1530, 5, 69, 0, 0, 1530, 248, 1, 0, 0, 0, 1531, 1532, 5, 66, 0, 0, 1532, 1533, 5, 79, 0, 0, 1533, 1534, 5, 84, 0, 0, 1534, 1535, 5, 72, 0, 0, 1535, 250, 1, 0, 0, 0, 1536, 1537, 5, 76, 0, 0, 1537, 1538, 5, 69, 0, 0, 1538, 1539, 5, 65, 0, 0, 1539, 1540, 5, 68, 0, 0, 1540, 1541, 5, 73, 0, 0, 1541, 1542, 5, 78, 0, 0, 1542, 1543, 5, 71, 0, 0, 1543, 252, 1, 0, 0, 0, 1544, 1545, 5, 84, 0, 0, 1545, 1546, 5, 82, 0, 0, 1546, 1547, 5, 65, 0, 0, 1547, 1548, 5, 73, 0, 0, 1548, 1549, 5, 76, 0, 0, 1549, 1550, 5, 73, 0, 0, 1550, 1551, 5, 78, 0, 0, 1551, 1552, 5, 71, 0, 0, 1552, 254, 1, 0, 0, 0, 1553, 1554, 5, 73, 0, 0, 1554, 1555, 5, 70, 0, 0, 1555, 256, 1, 0, 0, 0, 1556, 1557, 5, 80, 0, 0, 1557, 1558, 5, 79, 0, 0, 1558, 1559, 5, 83, 0, 0, 1559, 1560, 5, 73, 0, 0, 1560, 1561, 5, 84, 0, 0, 1561, 1562, 5, 73, 0, 0, 1562, 1563, 5, 79, 0, 0, 1563, 1564, 5, 78, 0, 0, 1564, 258, 1, 0, 0, 0, 1565, 1566, 5, 69, 0, 0, 1566, 1567, 5, 88, 0, 0, 1567, 1568, 5, 84, 0, 0, 1568, 1569, 5, 82, 0, 0, 1569, 1570, 5, 65, 0, 0, 1570, 1571, 5, 67, 0, 0, 1571, 1572, 5, 84, 0, 0, 1572, 260, 1, 0, 0, 0, 1573, 1574, 5, 77, 0, 0, 1574, 1575, 5, 73, 0, 0, 1575, 1576, 5, 78, 0, 0, 1576, 1577, 5, 85, 0, 0, 1577, 1578, 5, 83, 0, 0, 1578, 262, 1, 0, 0, 0, 1579, 1580, 5, 68, 0, 0, 1580, 1581, 5, 73, 0, 0, 1581, 1582, 5, 86, 0, 0, 1582, 264, 1, 0, 0, 0, 1583, 1584, 5, 80, 0, 0, 1584, 1585, 5, 69, 0, 0, 1585, 1586, 5, 82, 0, 0, 1586, 1587, 5, 67, 0, 0, 1587, 1588, 5, 69, 0, 0, 1588, 1589, 5, 78, 0, 0, 1589, 1590, 5, 84, 0, 0, 1590, 1591, 5, 76, 0, 0, 1591, 1592, 5, 73, 0, 0, 1592, 1593, 5, 84, 0, 0, 1593, 266, 1, 0, 0, 0, 1594, 1595, 5, 66, 0, 0, 1595, 1596, 5, 85, 0, 0, 1596, 1597, 5, 67, 0, 0, 1597, 1598, 5, 75, 0, 0, 1598, 1599, 5, 69, 0, 0, 1599, 1600, 5, 84, 0, 0, 1600, 268, 1, 0, 0, 0, 1601, 1602, 5, 79, 0, 0, 1602, 1603, 5, 85, 0, 0, 1603, 1604, 5, 84, 0, 0, 1604, 270, 1, 0, 0, 0, 1605, 1606, 5, 79, 0, 0, 1606, 1607, 5, 70, 0, 0, 1607, 272, 1, 0, 0, 0, 1608, 1609, 5, 83, 0, 0, 1609, 1610, 5, 79, 0, 0, 1610, 1611, 5, 82, 0, 0, 1611, 1612, 5, 84, 0, 0, 1612, 274, 1, 0, 0, 0, 1613, 1614, 5, 67, 0, 0, 1614, 1615, 5, 76, 0, 0, 1615, 1616, 5, 85, 0, 0, 1616, 1617, 5, 83, 0, 0, 1617, 1618, 5, 84, 0, 0, 1618, 1619, 5, 69, 0, 0, 1619, 1620, 5, 82, 0, 0, 1620, 276, 1, 0, 0, 0, 1621, 1622, 5, 68, 0, 0, 1622, 1623, 5, 73, 0, 0, 1623, 1624, 5, 83, 0, 0, 1624, 1625, 5, 84, 0, 0, 1625, 1626, 5, 82, 0, 0, 1626, 1627, 5, 73, 0, 0, 1627, 1628, 5, 66, 0, 0, 1628, 1629, 5, 85, 0, 0, 1629, 1630, 5, 84, 0, 0, 1630, 1631, 5, 69, 0, 0, 1631, 278, 1, 0, 0, 0, 1632, 1633, 5, 79, 0, 0, 1633, 1634, 5, 86, 0, 0, 1634, 1635, 5, 69, 0, 0, 1635, 1636, 5, 82, 0, 0, 1636, 1637, 5, 87, 0, 0, 1637, 1638, 5, 82, 0, 0, 1638, 1639, 5, 73, 0, 0, 1639, 1640, 5, 84, 0, 0, 1640, 1641, 5, 69, 0, 0, 1641, 280, 1, 0, 0, 0, 1642, 1643, 5, 84, 0, 0, 1643, 1644, 5, 82, 0, 0, 1644, 1645, 5, 65, 0, 0, 1645, 1646, 5, 78, 0, 0, 1646, 1647, 5, 83, 0, 0, 1647, 1648, 5, 70, 0, 0, 1648, 1649, 5, 79, 0, 0, 1649, 1650, 5, 82, 0, 0, 1650, 1651, 5, 77, 0, 0, 1651, 282, 1, 0, 0, 0, 1652, 1653, 5, 82, 0, 0, 1653, 1654, 5, 69, 0, 0, 1654, 1655, 5, 68, 0, 0, 1655, 1656, 5, 85, 0, 0, 1656, 1657, 5, 67, 0, 0, 1657, 1658, 5, 69, 0, 0, 1658, 284, 1, 0, 0, 0, 1659, 1660, 5, 85, 0, 0, 1660, 1661, 5, 83, 0, 0, 1661, 1662, 5, 73, 0, 0, 1662, 1663, 5, 78, 0, 0, 1663, 1664, 5, 71, 0, 0, 1664, 286, 1, 0, 0, 0, 1665, 1666, 5, 83, 0, 0, 1666, 1667, 5, 69, 0, 0, 1667, 1668, 5, 82, 0, 0, 1668, 1669, 5, 68, 0, 0, 1669, 1670, 5, 69, 0, 0, 1670, 288, 1, 0, 0, 0, 1671, 1672, 5, 83, 0, 0, 1672, 1673, 5, 69, 0, 0, 1673, 1674, 5, 82, 0, 0, 1674, 1675, 5, 68, 0, 0, 1675, 1676, 5, 69, 0, 0, 1676, 1677, 5, 80, 0, 0, 1677, 1678, 5, 82, 0, 0, 1678, 1679, 5, 79, 0, 0, 1679, 1680, 5, 80, 0, 0, 1680, 1681, 5, 69, 0, 0, 1681, 1682, 5, 82, 0, 0, 1682, 1683, 5, 84, 0, 0, 1683, 1684, 5, 73, 0, 0, 1684, 1685, 5, 69, 0, 0, 1685, 1686, 5, 83, 0, 0, 1686, 290, 1, 0, 0, 0, 1687, 1688, 5, 82, 0, 0, 1688, 1689, 5, 69, 0, 0, 1689, 1690, 5, 67, 0, 0, 1690, 1691, 5, 79, 0, 0, 1691, 1692, 5, 82, 0, 0, 1692, 1693, 5, 68, 0, 0, 1693, 1694, 5, 82, 0, 0, 1694, 1695, 5, 69, 0, 0, 1695, 1696, 5, 65, 0, 0, 1696, 1697, 5, 68, 0, 0, 1697, 1698, 5, 69, 0, 0, 1698, 1699, 5, 82, 0, 0, 1699, 292, 1, 0, 0, 0, 1700, 1701, 5, 82, 0, 0, 1701, 1702, 5, 69, 0, 0, 1702, 1703, 5, 67, 0, 0, 1703, 1704, 5, 79, 0, 0, 1704, 1705, 5, 82, 0, 0, 1705, 1706, 5, 68, 0, 0, 1706, 1707, 5, 87, 0, 0, 1707, 1708, 5, 82, 0, 0, 1708, 1709, 5, 73, 0, 0, 1709, 1710, 5, 84, 0, 0, 1710, 1711, 5, 69, 0, 0, 1711, 1712, 5, 82, 0, 0, 1712, 294, 1, 0, 0, 0, 1713, 1714, 5, 68, 0, 0, 1714, 1715, 5, 69, 0, 0, 1715, 1716, 5, 76, 0, 0, 1716, 1717, 5, 73, 0, 0, 1717, 1718, 5, 77, 0, 0, 1718, 1719, 5, 73, 0, 0, 1719, 1720, 5, 84, 0, 0, 1720, 1721, 5, 69, 0, 0, 1721, 1722, 5, 68, 0, 0, 1722, 296, 1, 0, 0, 0, 1723, 1724, 5, 70, 0, 0, 1724, 1725, 5, 73, 0, 0, 1725, 1726, 5, 69, 0, 0, 1726, 1727, 5, 76, 0, 0, 1727, 1728, 5, 68, 0, 0, 1728, 1729, 5, 83, 0, 0, 1729, 298, 1, 0, 0, 0, 1730, 1731, 5, 84, 0, 0, 1731, 1732, 5, 69, 0, 0, 1732, 1733, 5, 82, 0, 0, 1733, 1734, 5, 77, 0, 0, 1734, 1735, 5, 73, 0, 0, 1735, 1736, 5, 78, 0, 0, 1736, 1737, 5, 65, 0, 0, 1737, 1738, 5, 84, 0, 0, 1738, 1739, 5, 69, 0, 0, 1739, 1740, 5, 68, 0, 0, 1740, 300, 1, 0, 0, 0, 1741, 1742, 5, 67, 0, 0, 1742, 1743, 5, 79, 0, 0, 1743, 1744, 5, 76, 0, 0, 1744, 1745, 5, 76, 0, 0, 1745, 1746, 5, 69, 0, 0, 1746, 1747, 5, 67, 0, 0, 1747, 1748, 5, 84, 0, 0, 1748, 1749, 5, 73, 0, 0, 1749, 1750, 5, 79, 0, 0, 1750, 1751, 5, 78, 0, 0, 1751, 302, 1, 0, 0, 0, 1752, 1753, 5, 73, 0, 0, 1753, 1754, 5, 84, 0, 0, 1754, 1755, 5, 69, 0, 0, 1755, 1756, 5, 77, 0, 0, 1756, 1757, 5, 83, 0, 0, 1757, 304, 1, 0, 0, 0, 1758, 1759, 5, 75, 0, 0, 1759, 1760, 5, 69, 0, 0, 1760, 1761, 5, 89, 0, 0, 1761, 1762, 5, 83, 0, 0, 1762, 306, 1, 0, 0, 0, 1763, 1764, 5, 69, 0, 0, 1764, 1765, 5, 83, 0, 0, 1765, 1766, 5, 67, 0, 0, 1766, 1767, 5, 65, 0, 0, 1767, 1768, 5, 80, 0, 0, 1768, 1769, 5, 69, 0, 0, 1769, 1770, 5, 68, 0, 0, 1770, 308, 1, 0, 0, 0, 1771, 1772, 5, 76, 0, 0, 1772, 1773, 5, 73, 0, 0, 1773, 1774, 5, 78, 0, 0, 1774, 1775, 5, 69, 0, 0, 1775, 1776, 5, 83, 0, 0, 1776, 310, 1, 0, 0, 0, 1777, 1778, 5, 83, 0, 0, 1778, 1779, 5, 69, 0, 0, 1779, 1780, 5, 80, 0, 0, 1780, 1781, 5, 65, 0, 0, 1781, 1782, 5, 82, 0, 0, 1782, 1783, 5, 65, 0, 0, 1783, 1784, 5, 84, 0, 0, 1784, 1785, 5, 69, 0, 0, 1785, 1786, 5, 68, 0, 0, 1786, 312, 1, 0, 0, 0, 1787, 1788, 5, 70, 0, 0, 1788, 1789, 5, 85, 0, 0, 1789, 1790, 5, 78, 0, 0, 1790, 1791, 5, 67, 0, 0, 1791, 1792, 5, 84, 0, 0, 1792, 1793, 5, 73, 0, 0, 1793, 1794, 5, 79, 0, 0, 1794, 1795, 5, 78, 0, 0, 1795, 314, 1, 0, 0, 0, 1796, 1797, 5, 69, 0, 0, 1797, 1798, 5, 88, 0, 0, 1798, 1799, 5, 84, 0, 0, 1799, 1800, 5, 69, 0, 0, 1800, 1801, 5, 78, 0, 0, 1801, 1802, 5, 68, 0, 0, 1802, 1803, 5, 69, 0, 0, 1803, 1804, 5, 68, 0, 0, 1804, 316, 1, 0, 0, 0, 1805, 1806, 5, 82, 0, 0, 1806, 1807, 5, 69, 0, 0, 1807, 1808, 5, 70, 0, 0, 1808, 1809, 5, 82, 0, 0, 1809, 1810, 5, 69, 0, 0, 1810, 1811, 5, 83, 0, 0, 1811, 1812, 5, 72, 0, 0, 1812, 318, 1, 0, 0, 0, 1813, 1814, 5, 67, 0, 0, 1814, 1815, 5, 76, 0, 0, 1815, 1816, 5, 69, 0, 0, 1816, 1817, 5, 65, 0, 0, 1817, 1818, 5, 82, 0, 0, 1818, 320, 1, 0, 0, 0, 1819, 1820, 5, 67, 0, 0, 1820, 1821, 5, 65, 0, 0, 1821, 1822, 5, 67, 0, 0, 1822, 1823, 5, 72, 0, 0, 1823, 1824, 5, 69, 0, 0, 1824, 322, 1, 0, 0, 0, 1825, 1826, 5, 85, 0, 0, 1826, 1827, 5, 78, 0, 0, 1827, 1828, 5, 67, 0, 0, 1828, 1829, 5, 65, 0, 0, 1829, 1830, 5, 67, 0, 0, 1830, 1831, 5, 72, 0, 0, 1831, 1832, 5, 69, 0, 0, 1832, 324, 1, 0, 0, 0, 1833, 1834, 5, 76, 0, 0, 1834, 1835, 5, 65, 0, 0, 1835, 1836, 5, 90, 0, 0, 1836, 1837, 5, 89, 0, 0, 1837, 326, 1, 0, 0, 0, 1838, 1839, 5, 70, 0, 0, 1839, 1840, 5, 79, 0, 0, 1840, 1841, 5, 82, 0, 0, 1841, 1842, 5, 77, 0, 0, 1842, 1843, 5, 65, 0, 0, 1843, 1844, 5, 84, 0, 0, 1844, 1845, 5, 84, 0, 0, 1845, 1846, 5, 69, 0, 0, 1846, 1847, 5, 68, 0, 0, 1847, 328, 1, 0, 0, 0, 1848, 1849, 5, 71, 0, 0, 1849, 1850, 5, 76, 0, 0, 1850, 1851, 5, 79, 0, 0, 1851, 1852, 5, 66, 0, 0, 1852, 1853, 5, 65, 0, 0, 1853, 1854, 5, 76, 0, 0, 1854, 330, 1, 0, 0, 0, 1855, 1856, 5, 84, 0, 0, 1856, 1857, 5, 69, 0, 0, 1857, 1858, 5, 77, 0, 0, 1858, 1859, 5, 80, 0, 0, 1859, 1860, 5, 79, 0, 0, 1860, 1861, 5, 82, 0, 0, 1861, 1862, 5, 65, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 89, 0, 0, 1864, 332, 1, 0, 0, 0, 1865, 1866, 5, 79, 0, 0, 1866, 1867, 5, 80, 0, 0, 1867, 1868, 5, 84, 0, 0, 1868, 1869, 5, 73, 0, 0, 1869, 1870, 5, 79, 0, 0, 1870, 1871, 5, 78, 0, 0, 1871, 1872, 5, 83, 0, 0, 1872, 334, 1, 0, 0, 0, 1873, 1874, 5, 85, 0, 0, 1874, 1875, 5, 78, 0, 0, 1875, 1876, 5, 83, 0, 0, 1876, 1877, 5, 69, 0, 0, 1877, 1878, 5, 84, 0, 0, 1878, 336, 1, 0, 0, 0, 1879, 1880, 5, 84, 0, 0, 1880, 1881, 5, 66, 0, 0, 1881, 1882, 5, 76, 0, 0, 1882, 1883, 5, 80, 0, 0, 1883, 1884, 5, 82, 0, 0, 1884, 1885, 5, 79, 0, 0, 1885, 1886, 5, 80, 0, 0, 1886, 1887, 5, 69, 0, 0, 1887, 1888, 5, 82, 0, 0, 1888, 1889, 5, 84, 0, 0, 1889, 1890, 5, 73, 0, 0, 1890, 1891, 5, 69, 0, 0, 1891, 1892, 5, 83, 0, 0, 1892, 338, 1, 0, 0, 0, 1893, 1894, 5, 68, 0, 0, 1894, 1895, 5, 66, 0, 0, 1895, 1896, 5, 80, 0, 0, 1896, 1897, 5, 82, 0, 0, 1897, 1898, 5, 79, 0, 0, 1898, 1899, 5, 80, 0, 0, 1899, 1900, 5, 69, 0, 0, 1900, 1901, 5, 82, 0, 0, 1901, 1902, 5, 84, 0, 0, 1902, 1903, 5, 73, 0, 0, 1903, 1904, 5, 69, 0, 0, 1904, 1905, 5, 83, 0, 0, 1905, 340, 1, 0, 0, 0, 1906, 1907, 5, 66, 0, 0, 1907, 1908, 5, 85, 0, 0, 1908, 1909, 5, 67, 0, 0, 1909, 1910, 5, 75, 0, 0, 1910, 1911, 5, 69, 0, 0, 1911, 1912, 5, 84, 0, 0, 1912, 1913, 5, 83, 0, 0, 1913, 342, 1, 0, 0, 0, 1914, 1915, 5, 83, 0, 0, 1915, 1916, 5, 75, 0, 0, 1916, 1917, 5, 69, 0, 0, 1917, 1918, 5, 87, 0, 0, 1918, 1919, 5, 69, 0, 0, 1919, 1920, 5, 68, 0, 0, 1920, 344, 1, 0, 0, 0, 1921, 1922, 5, 83, 0, 0, 1922, 1923, 5, 84, 0, 0, 1923, 1924, 5, 79, 0, 0, 1924, 1925, 5, 82, 0, 0, 1925, 1926, 5, 69, 0, 0, 1926, 1927, 5, 68, 0, 0, 1927, 346, 1, 0, 0, 0, 1928, 1929, 5, 68, 0, 0, 1929, 1930, 5, 73, 0, 0, 1930, 1931, 5, 82, 0, 0, 1931, 1932, 5, 69, 0, 0, 1932, 1933, 5, 67, 0, 0, 1933, 1934, 5, 84, 0, 0, 1934, 1935, 5, 79, 0, 0, 1935, 1936, 5, 82, 0, 0, 1936, 1937, 5, 73, 0, 0, 1937, 1938, 5, 69, 0, 0, 1938, 1939, 5, 83, 0, 0, 1939, 348, 1, 0, 0, 0, 1940, 1941, 5, 76, 0, 0, 1941, 1942, 5, 79, 0, 0, 1942, 1943, 5, 67, 0, 0, 1943, 1944, 5, 65, 0, 0, 1944, 1945, 5, 84, 0, 0, 1945, 1946, 5, 73, 0, 0, 1946, 1947, 5, 79, 0, 0, 1947, 1948, 5, 78, 0, 0, 1948, 350, 1, 0, 0, 0, 1949, 1950, 5, 69, 0, 0, 1950, 1951, 5, 88, 0, 0, 1951, 1952, 5, 67, 0, 0, 1952, 1953, 5, 72, 0, 0, 1953, 1954, 5, 65, 0, 0, 1954, 1955, 5, 78, 0, 0, 1955, 1956, 5, 71, 0, 0, 1956, 1957, 5, 69, 0, 0, 1957, 352, 1, 0, 0, 0, 1958, 1959, 5, 65, 0, 0, 1959, 1960, 5, 82, 0, 0, 1960, 1961, 5, 67, 0, 0, 1961, 1962, 5, 72, 0, 0, 1962, 1963, 5, 73, 0, 0, 1963, 1964, 5, 86, 0, 0, 1964, 1965, 5, 69, 0, 0, 1965, 354, 1, 0, 0, 0, 1966, 1967, 5, 85, 0, 0, 1967, 1968, 5, 78, 0, 0, 1968, 1969, 5, 65, 0, 0, 1969, 1970, 5, 82, 0, 0, 1970, 1971, 5, 67, 0, 0, 1971, 1972, 5, 72, 0, 0, 1972, 1973, 5, 73, 0, 0, 1973, 1974, 5, 86, 0, 0, 1974, 1975, 5, 69, 0, 0, 1975, 356, 1, 0, 0, 0, 1976, 1977, 5, 70, 0, 0, 1977, 1978, 5, 73, 0, 0, 1978, 1979, 5, 76, 0, 0, 1979, 1980, 5, 69, 0, 0, 1980, 1981, 5, 70, 0, 0, 1981, 1982, 5, 79, 0, 0, 1982, 1983, 5, 82, 0, 0, 1983, 1984, 5, 77, 0, 0, 1984, 1985, 5, 65, 0, 0, 1985, 1986, 5, 84, 0, 0, 1986, 358, 1, 0, 0, 0, 1987, 1988, 5, 84, 0, 0, 1988, 1989, 5, 79, 0, 0, 1989, 1990, 5, 85, 0, 0, 1990, 1991, 5, 67, 0, 0, 1991, 1992, 5, 72, 0, 0, 1992, 360, 1, 0, 0, 0, 1993, 1994, 5, 67, 0, 0, 1994, 1995, 5, 79, 0, 0, 1995, 1996, 5, 77, 0, 0, 1996, 1997, 5, 80, 0, 0, 1997, 1998, 5, 65, 0, 0, 1998, 1999, 5, 67, 0, 0, 1999, 2000, 5, 84, 0, 0, 2000, 362, 1, 0, 0, 0, 2001, 2002, 5, 67, 0, 0, 2002, 2003, 5, 79, 0, 0, 2003, 2004, 5, 78, 0, 0, 2004, 2005, 5, 67, 0, 0, 2005, 2006, 5, 65, 0, 0, 2006, 2007, 5, 84, 0, 0, 2007, 2008, 5, 69, 0, 0, 2008, 2009, 5, 78, 0, 0, 2009, 2010, 5, 65, 0, 0, 2010, 2011, 5, 84, 0, 0, 2011, 2012, 5, 69, 0, 0, 2012, 364, 1, 0, 0, 0, 2013, 2014, 5, 67, 0, 0, 2014, 2015, 5, 72, 0, 0, 2015, 2016, 5, 65, 0, 0, 2016, 2017, 5, 78, 0, 0, 2017, 2018, 5, 71, 0, 0, 2018, 2019, 5, 69, 0, 0, 2019, 366, 1, 0, 0, 0, 2020, 2021, 5, 67, 0, 0, 2021, 2022, 5, 65, 0, 0, 2022, 2023, 5, 83, 0, 0, 2023, 2024, 5, 67, 0, 0, 2024, 2025, 5, 65, 0, 0, 2025, 2026, 5, 68, 0, 0, 2026, 2027, 5, 69, 0, 0, 2027, 368, 1, 0, 0, 0, 2028, 2029, 5, 67, 0, 0, 2029, 2030, 5, 79, 0, 0, 2030, 2031, 5, 78, 0, 0, 2031, 2032, 5, 83, 0, 0, 2032, 2033, 5, 84, 0, 0, 2033, 2034, 5, 82, 0, 0, 2034, 2035, 5, 65, 0, 0, 2035, 2036, 5, 73, 0, 0, 2036, 2037, 5, 78, 0, 0, 2037, 2038, 5, 84, 0, 0, 2038, 370, 1, 0, 0, 0, 2039, 2040, 5, 82, 0, 0, 2040, 2041, 5, 69, 0, 0, 2041, 2042, 5, 83, 0, 0, 2042, 2043, 5, 84, 0, 0, 2043, 2044, 5, 82, 0, 0, 2044, 2045, 5, 73, 0, 0, 2045, 2046, 5, 67, 0, 0, 2046, 2047, 5, 84, 0, 0, 2047, 372, 1, 0, 0, 0, 2048, 2049, 5, 67, 0, 0, 2049, 2050, 5, 76, 0, 0, 2050, 2051, 5, 85, 0, 0, 2051, 2052, 5, 83, 0, 0, 2052, 2053, 5, 84, 0, 0, 2053, 2054, 5, 69, 0, 0, 2054, 2055, 5, 82, 0, 0, 2055, 2056, 5, 69, 0, 0, 2056, 2057, 5, 68, 0, 0, 2057, 374, 1, 0, 0, 0, 2058, 2059, 5, 83, 0, 0, 2059, 2060, 5, 79, 0, 0, 2060, 2061, 5, 82, 0, 0, 2061, 2062, 5, 84, 0, 0, 2062, 2063, 5, 69, 0, 0, 2063, 2064, 5, 68, 0, 0, 2064, 376, 1, 0, 0, 0, 2065, 2066, 5, 80, 0, 0, 2066, 2067, 5, 85, 0, 0, 2067, 2068, 5, 82, 0, 0, 2068, 2069, 5, 71, 0, 0, 2069, 2070, 5, 69, 0, 0, 2070, 378, 1, 0, 0, 0, 2071, 2072, 5, 73, 0, 0, 2072, 2073, 5, 78, 0, 0, 2073, 2074, 5, 80, 0, 0, 2074, 2075, 5, 85, 0, 0, 2075, 2076, 5, 84, 0, 0, 2076, 2077, 5, 70, 0, 0, 2077, 2078, 5, 79, 0, 0, 2078, 2079, 5, 82, 0, 0, 2079, 2080, 5, 77, 0, 0, 2080, 2081, 5, 65, 0, 0, 2081, 2082, 5, 84, 0, 0, 2082, 380, 1, 0, 0, 0, 2083, 2084, 5, 79, 0, 0, 2084, 2085, 5, 85, 0, 0, 2085, 2086, 5, 84, 0, 0, 2086, 2087, 5, 80, 0, 0, 2087, 2088, 5, 85, 0, 0, 2088, 2089, 5, 84, 0, 0, 2089, 2090, 5, 70, 0, 0, 2090, 2091, 5, 79, 0, 0, 2091, 2092, 5, 82, 0, 0, 2092, 2093, 5, 77, 0, 0, 2093, 2094, 5, 65, 0, 0, 2094, 2095, 5, 84, 0, 0, 2095, 382, 1, 0, 0, 0, 2096, 2097, 5, 68, 0, 0, 2097, 2098, 5, 65, 0, 0, 2098, 2099, 5, 84, 0, 0, 2099, 2100, 5, 65, 0, 0, 2100, 2101, 5, 66, 0, 0, 2101, 2102, 5, 65, 0, 0, 2102, 2103, 5, 83, 0, 0, 2103, 2104, 5, 69, 0, 0, 2104, 384, 1, 0, 0, 0, 2105, 2106, 5, 68, 0, 0, 2106, 2107, 5, 65, 0, 0, 2107, 2108, 5, 84, 0, 0, 2108, 2109, 5, 65, 0, 0, 2109, 2110, 5, 66, 0, 0, 2110, 2111, 5, 65, 0, 0, 2111, 2112, 5, 83, 0, 0, 2112, 2113, 5, 69, 0, 0, 2113, 2114, 5, 83, 0, 0, 2114, 386, 1, 0, 0, 0, 2115, 2116, 5, 68, 0, 0, 2116, 2117, 5, 70, 0, 0, 2117, 2118, 5, 83, 0, 0, 2118, 388, 1, 0, 0, 0, 2119, 2120, 5, 84, 0, 0, 2120, 2121, 5, 82, 0, 0, 2121, 2122, 5, 85, 0, 0, 2122, 2123, 5, 78, 0, 0, 2123, 2124, 5, 67, 0, 0, 2124, 2125, 5, 65, 0, 0, 2125, 2126, 5, 84, 0, 0, 2126, 2127, 5, 69, 0, 0, 2127, 390, 1, 0, 0, 0, 2128, 2129, 5, 65, 0, 0, 2129, 2130, 5, 78, 0, 0, 2130, 2131, 5, 65, 0, 0, 2131, 2132, 5, 76, 0, 0, 2132, 2133, 5, 89, 0, 0, 2133, 2134, 5, 90, 0, 0, 2134, 2135, 5, 69, 0, 0, 2135, 392, 1, 0, 0, 0, 2136, 2137, 5, 67, 0, 0, 2137, 2138, 5, 79, 0, 0, 2138, 2139, 5, 77, 0, 0, 2139, 2140, 5, 80, 0, 0, 2140, 2141, 5, 85, 0, 0, 2141, 2142, 5, 84, 0, 0, 2142, 2143, 5, 69, 0, 0, 2143, 394, 1, 0, 0, 0, 2144, 2145, 5, 76, 0, 0, 2145, 2146, 5, 73, 0, 0, 2146, 2147, 5, 83, 0, 0, 2147, 2148, 5, 84, 0, 0, 2148, 396, 1, 0, 0, 0, 2149, 2150, 5, 83, 0, 0, 2150, 2151, 5, 84, 0, 0, 2151, 2152, 5, 65, 0, 0, 2152, 2153, 5, 84, 0, 0, 2153, 2154, 5, 73, 0, 0, 2154, 2155, 5, 83, 0, 0, 2155, 2156, 5, 84, 0, 0, 2156, 2157, 5, 73, 0, 0, 2157, 2158, 5, 67, 0, 0, 2158, 2159, 5, 83, 0, 0, 2159, 398, 1, 0, 0, 0, 2160, 2161, 5, 80, 0, 0, 2161, 2162, 5, 65, 0, 0, 2162, 2163, 5, 82, 0, 0, 2163, 2164, 5, 84, 0, 0, 2164, 2165, 5, 73, 0, 0, 2165, 2166, 5, 84, 0, 0, 2166, 2167, 5, 73, 0, 0, 2167, 2168, 5, 79, 0, 0, 2168, 2169, 5, 78, 0, 0, 2169, 2170, 5, 69, 0, 0, 2170, 2171, 5, 68, 0, 0, 2171, 400, 1, 0, 0, 0, 2172, 2173, 5, 69, 0, 0, 2173, 2174, 5, 88, 0, 0, 2174, 2175, 5, 84, 0, 0, 2175, 2176, 5, 69, 0, 0, 2176, 2177, 5, 82, 0, 0, 2177, 2178, 5, 78, 0, 0, 2178, 2179, 5, 65, 0, 0, 2179, 2180, 5, 76, 0, 0, 2180, 402, 1, 0, 0, 0, 2181, 2182, 5, 68, 0, 0, 2182, 2183, 5, 69, 0, 0, 2183, 2184, 5, 70, 0, 0, 2184, 2185, 5, 73, 0, 0, 2185, 2186, 5, 78, 0, 0, 2186, 2187, 5, 69, 0, 0, 2187, 2188, 5, 68, 0, 0, 2188, 404, 1, 0, 0, 0, 2189, 2190, 5, 82, 0, 0, 2190, 2191, 5, 69, 0, 0, 2191, 2192, 5, 86, 0, 0, 2192, 2193, 5, 79, 0, 0, 2193, 2194, 5, 75, 0, 0, 2194, 2195, 5, 69, 0, 0, 2195, 406, 1, 0, 0, 0, 2196, 2197, 5, 71, 0, 0, 2197, 2198, 5, 82, 0, 0, 2198, 2199, 5, 65, 0, 0, 2199, 2200, 5, 78, 0, 0, 2200, 2201, 5, 84, 0, 0, 2201, 408, 1, 0, 0, 0, 2202, 2203, 5, 76, 0, 0, 2203, 2204, 5, 79, 0, 0, 2204, 2205, 5, 67, 0, 0, 2205, 2206, 5, 75, 0, 0, 2206, 410, 1, 0, 0, 0, 2207, 2208, 5, 85, 0, 0, 2208, 2209, 5, 78, 0, 0, 2209, 2210, 5, 76, 0, 0, 2210, 2211, 5, 79, 0, 0, 2211, 2212, 5, 67, 0, 0, 2212, 2213, 5, 75, 0, 0, 2213, 412, 1, 0, 0, 0, 2214, 2215, 5, 77, 0, 0, 2215, 2216, 5, 83, 0, 0, 2216, 2217, 5, 67, 0, 0, 2217, 2218, 5, 75, 0, 0, 2218, 414, 1, 0, 0, 0, 2219, 2220, 5, 82, 0, 0, 2220, 2221, 5, 69, 0, 0, 2221, 2222, 5, 80, 0, 0, 2222, 2223, 5, 65, 0, 0, 2223, 2224, 5, 73, 0, 0, 2224, 2225, 5, 82, 0, 0, 2225, 416, 1, 0, 0, 0, 2226, 2227, 5, 82, 0, 0, 2227, 2228, 5, 69, 0, 0, 2228, 2229, 5, 67, 0, 0, 2229, 2230, 5, 79, 0, 0, 2230, 2231, 5, 86, 0, 0, 2231, 2232, 5, 69, 0, 0, 2232, 2233, 5, 82, 0, 0, 2233, 418, 1, 0, 0, 0, 2234, 2235, 5, 69, 0, 0, 2235, 2236, 5, 88, 0, 0, 2236, 2237, 5, 80, 0, 0, 2237, 2238, 5, 79, 0, 0, 2238, 2239, 5, 82, 0, 0, 2239, 2240, 5, 84, 0, 0, 2240, 420, 1, 0, 0, 0, 2241, 2242, 5, 73, 0, 0, 2242, 2243, 5, 77, 0, 0, 2243, 2244, 5, 80, 0, 0, 2244, 2245, 5, 79, 0, 0, 2245, 2246, 5, 82, 0, 0, 2246, 2247, 5, 84, 0, 0, 2247, 422, 1, 0, 0, 0, 2248, 2249, 5, 76, 0, 0, 2249, 2250, 5, 79, 0, 0, 2250, 2251, 5, 65, 0, 0, 2251, 2252, 5, 68, 0, 0, 2252, 424, 1, 0, 0, 0, 2253, 2254, 5, 85, 0, 0, 2254, 2255, 5, 78, 0, 0, 2255, 2256, 5, 76, 0, 0, 2256, 2257, 5, 79, 0, 0, 2257, 2258, 5, 65, 0, 0, 2258, 2259, 5, 68, 0, 0, 2259, 426, 1, 0, 0, 0, 2260, 2261, 5, 82, 0, 0, 2261, 2262, 5, 79, 0, 0, 2262, 2263, 5, 76, 0, 0, 2263, 2264, 5, 69, 0, 0, 2264, 428, 1, 0, 0, 0, 2265, 2266, 5, 82, 0, 0, 2266, 2267, 5, 79, 0, 0, 2267, 2268, 5, 76, 0, 0, 2268, 2269, 5, 69, 0, 0, 2269, 2270, 5, 83, 0, 0, 2270, 430, 1, 0, 0, 0, 2271, 2272, 5, 67, 0, 0, 2272, 2273, 5, 79, 0, 0, 2273, 2274, 5, 77, 0, 0, 2274, 2275, 5, 80, 0, 0, 2275, 2276, 5, 65, 0, 0, 2276, 2277, 5, 67, 0, 0, 2277, 2278, 5, 84, 0, 0, 2278, 2279, 5, 73, 0, 0, 2279, 2280, 5, 79, 0, 0, 2280, 2281, 5, 78, 0, 0, 2281, 2282, 5, 83, 0, 0, 2282, 432, 1, 0, 0, 0, 2283, 2284, 5, 80, 0, 0, 2284, 2285, 5, 82, 0, 0, 2285, 2286, 5, 73, 0, 0, 2286, 2287, 5, 78, 0, 0, 2287, 2288, 5, 67, 0, 0, 2288, 2289, 5, 73, 0, 0, 2289, 2290, 5, 80, 0, 0, 2290, 2291, 5, 65, 0, 0, 2291, 2292, 5, 76, 0, 0, 2292, 2293, 5, 83, 0, 0, 2293, 434, 1, 0, 0, 0, 2294, 2295, 5, 84, 0, 0, 2295, 2296, 5, 82, 0, 0, 2296, 2297, 5, 65, 0, 0, 2297, 2298, 5, 78, 0, 0, 2298, 2299, 5, 83, 0, 0, 2299, 2300, 5, 65, 0, 0, 2300, 2301, 5, 67, 0, 0, 2301, 2302, 5, 84, 0, 0, 2302, 2303, 5, 73, 0, 0, 2303, 2304, 5, 79, 0, 0, 2304, 2305, 5, 78, 0, 0, 2305, 2306, 5, 83, 0, 0, 2306, 436, 1, 0, 0, 0, 2307, 2308, 5, 73, 0, 0, 2308, 2309, 5, 78, 0, 0, 2309, 2310, 5, 68, 0, 0, 2310, 2311, 5, 69, 0, 0, 2311, 2312, 5, 88, 0, 0, 2312, 438, 1, 0, 0, 0, 2313, 2314, 5, 73, 0, 0, 2314, 2315, 5, 78, 0, 0, 2315, 2316, 5, 68, 0, 0, 2316, 2317, 5, 69, 0, 0, 2317, 2318, 5, 88, 0, 0, 2318, 2319, 5, 69, 0, 0, 2319, 2320, 5, 83, 0, 0, 2320, 440, 1, 0, 0, 0, 2321, 2322, 5, 76, 0, 0, 2322, 2323, 5, 79, 0, 0, 2323, 2324, 5, 67, 0, 0, 2324, 2325, 5, 75, 0, 0, 2325, 2326, 5, 83, 0, 0, 2326, 442, 1, 0, 0, 0, 2327, 2328, 5, 79, 0, 0, 2328, 2329, 5, 80, 0, 0, 2329, 2330, 5, 84, 0, 0, 2330, 2331, 5, 73, 0, 0, 2331, 2332, 5, 79, 0, 0, 2332, 2333, 5, 78, 0, 0, 2333, 444, 1, 0, 0, 0, 2334, 2335, 5, 65, 0, 0, 2335, 2336, 5, 78, 0, 0, 2336, 2337, 5, 84, 0, 0, 2337, 2338, 5, 73, 0, 0, 2338, 446, 1, 0, 0, 0, 2339, 2340, 5, 76, 0, 0, 2340, 2341, 5, 79, 0, 0, 2341, 2342, 5, 67, 0, 0, 2342, 2343, 5, 65, 0, 0, 2343, 2344, 5, 76, 0, 0, 2344, 448, 1, 0, 0, 0, 2345, 2346, 5, 73, 0, 0, 2346, 2347, 5, 78, 0, 0, 2347, 2348, 5, 80, 0, 0, 2348, 2349, 5, 65, 0, 0, 2349, 2350, 5, 84, 0, 0, 2350, 2351, 5, 72, 0, 0, 2351, 450, 1, 0, 0, 0, 2352, 2353, 5, 87, 0, 0, 2353, 2354, 5, 65, 0, 0, 2354, 2355, 5, 84, 0, 0, 2355, 2356, 5, 69, 0, 0, 2356, 2357, 5, 82, 0, 0, 2357, 2358, 5, 77, 0, 0, 2358, 2359, 5, 65, 0, 0, 2359, 2360, 5, 82, 0, 0, 2360, 2361, 5, 75, 0, 0, 2361, 452, 1, 0, 0, 0, 2362, 2363, 5, 85, 0, 0, 2363, 2364, 5, 78, 0, 0, 2364, 2365, 5, 78, 0, 0, 2365, 2366, 5, 69, 0, 0, 2366, 2367, 5, 83, 0, 0, 2367, 2368, 5, 84, 0, 0, 2368, 454, 1, 0, 0, 0, 2369, 2370, 5, 77, 0, 0, 2370, 2371, 5, 65, 0, 0, 2371, 2372, 5, 84, 0, 0, 2372, 2373, 5, 67, 0, 0, 2373, 2374, 5, 72, 0, 0, 2374, 456, 1, 0, 0, 0, 2375, 2376, 5, 78, 0, 0, 2376, 2377, 5, 69, 0, 0, 2377, 2378, 5, 88, 0, 0, 2378, 2379, 5, 84, 0, 0, 2379, 458, 1, 0, 0, 0, 2380, 2381, 5, 87, 0, 0, 2381, 2382, 5, 73, 0, 0, 2382, 2383, 5, 84, 0, 0, 2383, 2384, 5, 72, 0, 0, 2384, 2385, 5, 73, 0, 0, 2385, 2386, 5, 78, 0, 0, 2386, 460, 1, 0, 0, 0, 2387, 2388, 5, 87, 0, 0, 2388, 2389, 5, 83, 0, 0, 2389, 462, 1, 0, 0, 0, 2390, 2391, 5, 83, 0, 0, 2391, 2392, 5, 89, 0, 0, 2392, 2393, 5, 83, 0, 0, 2393, 2394, 5, 84, 0, 0, 2394, 2395, 5, 69, 0, 0, 2395, 2396, 5, 77, 0, 0, 2396, 464, 1, 0, 0, 0, 2397, 2398, 5, 73, 0, 0, 2398, 2399, 5, 78, 0, 0, 2399, 2400, 5, 67, 0, 0, 2400, 2401, 5, 76, 0, 0, 2401, 2402, 5, 85, 0, 0, 2402, 2403, 5, 68, 0, 0, 2403, 2404, 5, 73, 0, 0, 2404, 2405, 5, 78, 0, 0, 2405, 2406, 5, 71, 0, 0, 2406, 466, 1, 0, 0, 0, 2407, 2408, 5, 69, 0, 0, 2408, 2409, 5, 88, 0, 0, 2409, 2410, 5, 67, 0, 0, 2410, 2411, 5, 76, 0, 0, 2411, 2412, 5, 85, 0, 0, 2412, 2413, 5, 68, 0, 0, 2413, 2414, 5, 73, 0, 0, 2414, 2415, 5, 78, 0, 0, 2415, 2416, 5, 71, 0, 0, 2416, 468, 1, 0, 0, 0, 2417, 2418, 5, 79, 0, 0, 2418, 2419, 5, 86, 0, 0, 2419, 2420, 5, 69, 0, 0, 2420, 2421, 5, 82, 0, 0, 2421, 2422, 5, 87, 0, 0, 2422, 2423, 5, 82, 0, 0, 2423, 2424, 5, 73, 0, 0, 2424, 2425, 5, 84, 0, 0, 2425, 2426, 5, 73, 0, 0, 2426, 2427, 5, 78, 0, 0, 2427, 2428, 5, 71, 0, 0, 2428, 470, 1, 0, 0, 0, 2429, 2430, 5, 67, 0, 0, 2430, 2431, 5, 79, 0, 0, 2431, 2432, 5, 78, 0, 0, 2432, 2433, 5, 83, 0, 0, 2433, 2434, 5, 84, 0, 0, 2434, 2435, 5, 82, 0, 0, 2435, 2436, 5, 65, 0, 0, 2436, 2437, 5, 73, 0, 0, 2437, 2438, 5, 78, 0, 0, 2438, 2439, 5, 84, 0, 0, 2439, 2440, 5, 83, 0, 0, 2440, 472, 1, 0, 0, 0, 2441, 2442, 5, 71, 0, 0, 2442, 2443, 5, 69, 0, 0, 2443, 2444, 5, 78, 0, 0, 2444, 2445, 5, 69, 0, 0, 2445, 2446, 5, 82, 0, 0, 2446, 2447, 5, 65, 0, 0, 2447, 2448, 5, 84, 0, 0, 2448, 2449, 5, 69, 0, 0, 2449, 2450, 5, 68, 0, 0, 2450, 474, 1, 0, 0, 0, 2451, 2452, 5, 87, 0, 0, 2452, 2453, 5, 65, 0, 0, 2453, 2454, 5, 84, 0, 0, 2454, 2455, 5, 69, 0, 0, 2455, 2456, 5, 82, 0, 0, 2456, 2457, 5, 77, 0, 0, 2457, 2458, 5, 65, 0, 0, 2458, 2459, 5, 82, 0, 0, 2459, 2460, 5, 75, 0, 0, 2460, 2461, 5, 83, 0, 0, 2461, 476, 1, 0, 0, 0, 2462, 2463, 5, 67, 0, 0, 2463, 2464, 5, 65, 0, 0, 2464, 2465, 5, 84, 0, 0, 2465, 2466, 5, 65, 0, 0, 2466, 2467, 5, 76, 0, 0, 2467, 2468, 5, 79, 0, 0, 2468, 2469, 5, 71, 0, 0, 2469, 478, 1, 0, 0, 0, 2470, 2471, 5, 76, 0, 0, 2471, 2472, 5, 65, 0, 0, 2472, 2473, 5, 78, 0, 0, 2473, 2474, 5, 71, 0, 0, 2474, 2475, 5, 85, 0, 0, 2475, 2476, 5, 65, 0, 0, 2476, 2477, 5, 71, 0, 0, 2477, 2478, 5, 69, 0, 0, 2478, 480, 1, 0, 0, 0, 2479, 2480, 5, 74, 0, 0, 2480, 2481, 5, 65, 0, 0, 2481, 2482, 5, 86, 0, 0, 2482, 2483, 5, 65, 0, 0, 2483, 482, 1, 0, 0, 0, 2484, 2485, 5, 83, 0, 0, 2485, 2486, 5, 67, 0, 0, 2486, 2487, 5, 65, 0, 0, 2487, 2488, 5, 76, 0, 0, 2488, 2489, 5, 65, 0, 0, 2489, 484, 1, 0, 0, 0, 2490, 2491, 5, 80, 0, 0, 2491, 2492, 5, 89, 0, 0, 2492, 2493, 5, 84, 0, 0, 2493, 2494, 5, 72, 0, 0, 2494, 2495, 5, 79, 0, 0, 2495, 2496, 5, 78, 0, 0, 2496, 486, 1, 0, 0, 0, 2497, 2498, 5, 74, 0, 0, 2498, 2499, 5, 65, 0, 0, 2499, 2500, 5, 82, 0, 0, 2500, 488, 1, 0, 0, 0, 2501, 2502, 5, 70, 0, 0, 2502, 2503, 5, 73, 0, 0, 2503, 2504, 5, 76, 0, 0, 2504, 2505, 5, 69, 0, 0, 2505, 490, 1, 0, 0, 0, 2506, 2507, 5, 80, 0, 0, 2507, 2508, 5, 89, 0, 0, 2508, 2509, 5, 84, 0, 0, 2509, 2510, 5, 72, 0, 0, 2510, 2511, 5, 79, 0, 0, 2511, 2512, 5, 78, 0, 0, 2512, 2513, 5, 95, 0, 0, 2513, 2514, 5, 70, 0, 0, 2514, 2515, 5, 73, 0, 0, 2515, 2516, 5, 76, 0, 0, 2516, 2517, 5, 69, 0, 0, 2517, 2518, 5, 83, 0, 0, 2518, 492, 1, 0, 0, 0, 2519, 2520, 5, 80, 0, 0, 2520, 2521, 5, 89, 0, 0, 2521, 2522, 5, 84, 0, 0, 2522, 2523, 5, 72, 0, 0, 2523, 2524, 5, 79, 0, 0, 2524, 2525, 5, 78, 0, 0, 2525, 2526, 5, 95, 0, 0, 2526, 2527, 5, 82, 0, 0, 2527, 2528, 5, 69, 0, 0, 2528, 2529, 5, 81, 0, 0, 2529, 2530, 5, 85, 0, 0, 2530, 2531, 5, 73, 0, 0, 2531, 2532, 5, 82, 0, 0, 2532, 2533, 5, 69, 0, 0, 2533, 2534, 5, 77, 0, 0, 2534, 2535, 5, 69, 0, 0, 2535, 2536, 5, 78, 0, 0, 2536, 2537, 5, 84, 0, 0, 2537, 2538, 5, 83, 0, 0, 2538, 494, 1, 0, 0, 0, 2539, 2540, 5, 80, 0, 0, 2540, 2541, 5, 89, 0, 0, 2541, 2542, 5, 84, 0, 0, 2542, 2543, 5, 72, 0, 0, 2543, 2544, 5, 79, 0, 0, 2544, 2545, 5, 78, 0, 0, 2545, 2546, 5, 95, 0, 0, 2546, 2547, 5, 68, 0, 0, 2547, 2548, 5, 69, 0, 0, 2548, 2549, 5, 80, 0, 0, 2549, 2550, 5, 69, 0, 0, 2550, 2551, 5, 78, 0, 0, 2551, 2552, 5, 68, 0, 0, 2552, 2553, 5, 69, 0, 0, 2553, 2554, 5, 78, 0, 0, 2554, 2555, 5, 67, 0, 0, 2555, 2556, 5, 73, 0, 0, 2556, 2557, 5, 69, 0, 0, 2557, 2558, 5, 83, 0, 0, 2558, 496, 1, 0, 0, 0, 2559, 2560, 5, 80, 0, 0, 2560, 2561, 5, 89, 0, 0, 2561, 2562, 5, 84, 0, 0, 2562, 2563, 5, 72, 0, 0, 2563, 2564, 5, 79, 0, 0, 2564, 2565, 5, 78, 0, 0, 2565, 2566, 5, 95, 0, 0, 2566, 2567, 5, 74, 0, 0, 2567, 2568, 5, 65, 0, 0, 2568, 2569, 5, 82, 0, 0, 2569, 498, 1, 0, 0, 0, 2570, 2571, 5, 80, 0, 0, 2571, 2572, 5, 89, 0, 0, 2572, 2573, 5, 84, 0, 0, 2573, 2574, 5, 72, 0, 0, 2574, 2575, 5, 79, 0, 0, 2575, 2576, 5, 78, 0, 0, 2576, 2577, 5, 95, 0, 0, 2577, 2578, 5, 65, 0, 0, 2578, 2579, 5, 82, 0, 0, 2579, 2580, 5, 67, 0, 0, 2580, 2581, 5, 72, 0, 0, 2581, 2582, 5, 73, 0, 0, 2582, 2583, 5, 86, 0, 0, 2583, 2584, 5, 69, 0, 0, 2584, 2585, 5, 83, 0, 0, 2585, 500, 1, 0, 0, 0, 2586, 2587, 5, 80, 0, 0, 2587, 2588, 5, 89, 0, 0, 2588, 2589, 5, 84, 0, 0, 2589, 2590, 5, 72, 0, 0, 2590, 2591, 5, 79, 0, 0, 2591, 2592, 5, 78, 0, 0, 2592, 2593, 5, 95, 0, 0, 2593, 2594, 5, 80, 0, 0, 2594, 2595, 5, 65, 0, 0, 2595, 2596, 5, 82, 0, 0, 2596, 2597, 5, 65, 0, 0, 2597, 2598, 5, 77, 0, 0, 2598, 2599, 5, 69, 0, 0, 2599, 2600, 5, 84, 0, 0, 2600, 2601, 5, 69, 0, 0, 2601, 2602, 5, 82, 0, 0, 2602, 502, 1, 0, 0, 0, 2603, 2604, 5, 69, 0, 0, 2604, 2605, 5, 78, 0, 0, 2605, 2606, 5, 71, 0, 0, 2606, 2607, 5, 73, 0, 0, 2607, 2608, 5, 78, 0, 0, 2608, 2609, 5, 69, 0, 0, 2609, 504, 1, 0, 0, 0, 2610, 2611, 5, 67, 0, 0, 2611, 2612, 5, 65, 0, 0, 2612, 2613, 5, 84, 0, 0, 2613, 2614, 5, 65, 0, 0, 2614, 2615, 5, 76, 0, 0, 2615, 2616, 5, 79, 0, 0, 2616, 2617, 5, 71, 0, 0, 2617, 2618, 5, 83, 0, 0, 2618, 506, 1, 0, 0, 0, 2619, 2620, 5, 86, 0, 0, 2620, 2621, 5, 73, 0, 0, 2621, 2622, 5, 69, 0, 0, 2622, 2623, 5, 87, 0, 0, 2623, 2624, 5, 83, 0, 0, 2624, 508, 1, 0, 0, 0, 2625, 2626, 5, 74, 0, 0, 2626, 2627, 5, 65, 0, 0, 2627, 2628, 5, 82, 0, 0, 2628, 2629, 5, 83, 0, 0, 2629, 510, 1, 0, 0, 0, 2630, 2631, 5, 80, 0, 0, 2631, 2632, 5, 82, 0, 0, 2632, 2633, 5, 73, 0, 0, 2633, 2634, 5, 77, 0, 0, 2634, 2635, 5, 65, 0, 0, 2635, 2636, 5, 82, 0, 0, 2636, 2637, 5, 89, 0, 0, 2637, 512, 1, 0, 0, 0, 2638, 2639, 5, 75, 0, 0, 2639, 2640, 5, 69, 0, 0, 2640, 2641, 5, 89, 0, 0, 2641, 514, 1, 0, 0, 0, 2642, 2643, 5, 80, 0, 0, 2643, 2644, 5, 69, 0, 0, 2644, 2645, 5, 82, 0, 0, 2645, 2646, 5, 73, 0, 0, 2646, 2647, 5, 79, 0, 0, 2647, 2648, 5, 68, 0, 0, 2648, 516, 1, 0, 0, 0, 2649, 2650, 5, 83, 0, 0, 2650, 2651, 5, 89, 0, 0, 2651, 2652, 5, 83, 0, 0, 2652, 2653, 5, 84, 0, 0, 2653, 2654, 5, 69, 0, 0, 2654, 2655, 5, 77, 0, 0, 2655, 2656, 5, 95, 0, 0, 2656, 2657, 5, 84, 0, 0, 2657, 2658, 5, 73, 0, 0, 2658, 2659, 5, 77, 0, 0, 2659, 2660, 5, 69, 0, 0, 2660, 518, 1, 0, 0, 0, 2661, 2662, 5, 69, 0, 0, 2662, 2663, 5, 78, 0, 0, 2663, 2664, 5, 70, 0, 0, 2664, 2665, 5, 79, 0, 0, 2665, 2666, 5, 82, 0, 0, 2666, 2667, 5, 67, 0, 0, 2667, 2668, 5, 69, 0, 0, 2668, 2669, 5, 68, 0, 0, 2669, 520, 1, 0, 0, 0, 2670, 2671, 5, 77, 0, 0, 2671, 2672, 5, 69, 0, 0, 2672, 2673, 5, 84, 0, 0, 2673, 2674, 5, 65, 0, 0, 2674, 2675, 5, 68, 0, 0, 2675, 2676, 5, 65, 0, 0, 2676, 2677, 5, 84, 0, 0, 2677, 2678, 5, 65, 0, 0, 2678, 522, 1, 0, 0, 0, 2679, 2680, 5, 86, 0, 0, 2680, 2681, 5, 73, 0, 0, 2681, 2682, 5, 82, 0, 0, 2682, 2683, 5, 84, 0, 0, 2683, 2684, 5, 85, 0, 0, 2684, 2685, 5, 65, 0, 0, 2685, 2686, 5, 76, 0, 0, 2686, 524, 1, 0, 0, 0, 2687, 2688, 5, 90, 0, 0, 2688, 2689, 5, 79, 0, 0, 2689, 2690, 5, 78, 0, 0, 2690, 2691, 5, 69, 0, 0, 2691, 526, 1, 0, 0, 0, 2692, 2693, 5, 83, 0, 0, 2693, 2694, 5, 84, 0, 0, 2694, 2695, 5, 82, 0, 0, 2695, 2696, 5, 73, 0, 0, 2696, 2697, 5, 78, 0, 0, 2697, 2698, 5, 71, 0, 0, 2698, 528, 1, 0, 0, 0, 2699, 2700, 5, 65, 0, 0, 2700, 2701, 5, 82, 0, 0, 2701, 2702, 5, 82, 0, 0, 2702, 2703, 5, 65, 0, 0, 2703, 2704, 5, 89, 0, 0, 2704, 530, 1, 0, 0, 0, 2705, 2706, 5, 77, 0, 0, 2706, 2707, 5, 65, 0, 0, 2707, 2708, 5, 80, 0, 0, 2708, 532, 1, 0, 0, 0, 2709, 2710, 5, 67, 0, 0, 2710, 2711, 5, 72, 0, 0, 2711, 2712, 5, 65, 0, 0, 2712, 2713, 5, 82, 0, 0, 2713, 534, 1, 0, 0, 0, 2714, 2715, 5, 86, 0, 0, 2715, 2716, 5, 65, 0, 0, 2716, 2717, 5, 82, 0, 0, 2717, 2718, 5, 67, 0, 0, 2718, 2719, 5, 72, 0, 0, 2719, 2720, 5, 65, 0, 0, 2720, 2721, 5, 82, 0, 0, 2721, 536, 1, 0, 0, 0, 2722, 2723, 5, 66, 0, 0, 2723, 2724, 5, 73, 0, 0, 2724, 2725, 5, 78, 0, 0, 2725, 2726, 5, 65, 0, 0, 2726, 2727, 5, 82, 0, 0, 2727, 2728, 5, 89, 0, 0, 2728, 538, 1, 0, 0, 0, 2729, 2730, 5, 86, 0, 0, 2730, 2731, 5, 65, 0, 0, 2731, 2732, 5, 82, 0, 0, 2732, 2733, 5, 66, 0, 0, 2733, 2734, 5, 73, 0, 0, 2734, 2735, 5, 78, 0, 0, 2735, 2736, 5, 65, 0, 0, 2736, 2737, 5, 82, 0, 0, 2737, 2738, 5, 89, 0, 0, 2738, 540, 1, 0, 0, 0, 2739, 2740, 5, 66, 0, 0, 2740, 2741, 5, 89, 0, 0, 2741, 2742, 5, 84, 0, 0, 2742, 2743, 5, 69, 0, 0, 2743, 2744, 5, 83, 0, 0, 2744, 542, 1, 0, 0, 0, 2745, 2746, 5, 68, 0, 0, 2746, 2747, 5, 69, 0, 0, 2747, 2748, 5, 67, 0, 0, 2748, 2749, 5, 73, 0, 0, 2749, 2750, 5, 77, 0, 0, 2750, 2751, 5, 65, 0, 0, 2751, 2752, 5, 76, 0, 0, 2752, 544, 1, 0, 0, 0, 2753, 2754, 5, 68, 0, 0, 2754, 2755, 5, 69, 0, 0, 2755, 2756, 5, 67, 0, 0, 2756, 546, 1, 0, 0, 0, 2757, 2758, 5, 78, 0, 0, 2758, 2759, 5, 85, 0, 0, 2759, 2760, 5, 77, 0, 0, 2760, 2761, 5, 69, 0, 0, 2761, 2762, 5, 82, 0, 0, 2762, 2763, 5, 73, 0, 0, 2763, 2764, 5, 67, 0, 0, 2764, 548, 1, 0, 0, 0, 2765, 2766, 5, 84, 0, 0, 2766, 2767, 5, 73, 0, 0, 2767, 2768, 5, 78, 0, 0, 2768, 2769, 5, 89, 0, 0, 2769, 2770, 5, 73, 0, 0, 2770, 2771, 5, 78, 0, 0, 2771, 2772, 5, 84, 0, 0, 2772, 550, 1, 0, 0, 0, 2773, 2774, 5, 83, 0, 0, 2774, 2775, 5, 77, 0, 0, 2775, 2776, 5, 65, 0, 0, 2776, 2777, 5, 76, 0, 0, 2777, 2778, 5, 76, 0, 0, 2778, 2779, 5, 73, 0, 0, 2779, 2780, 5, 78, 0, 0, 2780, 2781, 5, 84, 0, 0, 2781, 552, 1, 0, 0, 0, 2782, 2783, 5, 73, 0, 0, 2783, 2784, 5, 78, 0, 0, 2784, 2785, 5, 84, 0, 0, 2785, 554, 1, 0, 0, 0, 2786, 2787, 5, 73, 0, 0, 2787, 2788, 5, 78, 0, 0, 2788, 2789, 5, 84, 0, 0, 2789, 2790, 5, 69, 0, 0, 2790, 2791, 5, 71, 0, 0, 2791, 2792, 5, 69, 0, 0, 2792, 2793, 5, 82, 0, 0, 2793, 556, 1, 0, 0, 0, 2794, 2795, 5, 66, 0, 0, 2795, 2796, 5, 73, 0, 0, 2796, 2797, 5, 71, 0, 0, 2797, 2798, 5, 73, 0, 0, 2798, 2799, 5, 78, 0, 0, 2799, 2800, 5, 84, 0, 0, 2800, 558, 1, 0, 0, 0, 2801, 2802, 5, 70, 0, 0, 2802, 2803, 5, 76, 0, 0, 2803, 2804, 5, 79, 0, 0, 2804, 2805, 5, 65, 0, 0, 2805, 2806, 5, 84, 0, 0, 2806, 560, 1, 0, 0, 0, 2807, 2808, 5, 68, 0, 0, 2808, 2809, 5, 79, 0, 0, 2809, 2810, 5, 85, 0, 0, 2810, 2811, 5, 66, 0, 0, 2811, 2812, 5, 76, 0, 0, 2812, 2813, 5, 69, 0, 0, 2813, 562, 1, 0, 0, 0, 2814, 2815, 5, 68, 0, 0, 2815, 2816, 5, 65, 0, 0, 2816, 2817, 5, 84, 0, 0, 2817, 2818, 5, 69, 0, 0, 2818, 564, 1, 0, 0, 0, 2819, 2820, 5, 84, 0, 0, 2820, 2821, 5, 73, 0, 0, 2821, 2822, 5, 77, 0, 0, 2822, 2823, 5, 69, 0, 0, 2823, 566, 1, 0, 0, 0, 2824, 2825, 5, 84, 0, 0, 2825, 2826, 5, 73, 0, 0, 2826, 2827, 5, 77, 0, 0, 2827, 2828, 5, 69, 0, 0, 2828, 2829, 5, 83, 0, 0, 2829, 2830, 5, 84, 0, 0, 2830, 2831, 5, 65, 0, 0, 2831, 2832, 5, 77, 0, 0, 2832, 2833, 5, 80, 0, 0, 2833, 568, 1, 0, 0, 0, 2834, 2835, 5, 84, 0, 0, 2835, 2836, 5, 73, 0, 0, 2836, 2837, 5, 77, 0, 0, 2837, 2838, 5, 69, 0, 0, 2838, 2839, 5, 83, 0, 0, 2839, 2840, 5, 84, 0, 0, 2840, 2841, 5, 65, 0, 0, 2841, 2842, 5, 77, 0, 0, 2842, 2843, 5, 80, 0, 0, 2843, 2844, 5, 95, 0, 0, 2844, 2845, 5, 76, 0, 0, 2845, 2846, 5, 84, 0, 0, 2846, 2847, 5, 90, 0, 0, 2847, 570, 1, 0, 0, 0, 2848, 2849, 5, 77, 0, 0, 2849, 2850, 5, 85, 0, 0, 2850, 2851, 5, 76, 0, 0, 2851, 2852, 5, 84, 0, 0, 2852, 2853, 5, 73, 0, 0, 2853, 2854, 5, 83, 0, 0, 2854, 2855, 5, 69, 0, 0, 2855, 2856, 5, 84, 0, 0, 2856, 572, 1, 0, 0, 0, 2857, 2858, 5, 66, 0, 0, 2858, 2859, 5, 79, 0, 0, 2859, 2860, 5, 79, 0, 0, 2860, 2861, 5, 76, 0, 0, 2861, 2862, 5, 69, 0, 0, 2862, 2863, 5, 65, 0, 0, 2863, 2864, 5, 78, 0, 0, 2864, 574, 1, 0, 0, 0, 2865, 2866, 5, 82, 0, 0, 2866, 2867, 5, 65, 0, 0, 2867, 2868, 5, 87, 0, 0, 2868, 576, 1, 0, 0, 0, 2869, 2870, 5, 82, 0, 0, 2870, 2871, 5, 79, 0, 0, 2871, 2872, 5, 87, 0, 0, 2872, 578, 1, 0, 0, 0, 2873, 2874, 5, 78, 0, 0, 2874, 2875, 5, 85, 0, 0, 2875, 2876, 5, 76, 0, 0, 2876, 2877, 5, 76, 0, 0, 2877, 580, 1, 0, 0, 0, 2878, 2879, 5, 68, 0, 0, 2879, 2880, 5, 65, 0, 0, 2880, 2881, 5, 84, 0, 0, 2881, 2882, 5, 69, 0, 0, 2882, 2883, 5, 84, 0, 0, 2883, 2884, 5, 73, 0, 0, 2884, 2885, 5, 77, 0, 0, 2885, 2886, 5, 69, 0, 0, 2886, 582, 1, 0, 0, 0, 2887, 2888, 5, 61, 0, 0, 2888, 584, 1, 0, 0, 0, 2889, 2890, 5, 62, 0, 0, 2890, 586, 1, 0, 0, 0, 2891, 2892, 5, 60, 0, 0, 2892, 588, 1, 0, 0, 0, 2893, 2894, 5, 33, 0, 0, 2894, 590, 1, 0, 0, 0, 2895, 2896, 5, 126, 0, 0, 2896, 592, 1, 0, 0, 0, 2897, 2898, 5, 124, 0, 0, 2898, 594, 1, 0, 0, 0, 2899, 2900, 5, 38, 0, 0, 2900, 596, 1, 0, 0, 0, 2901, 2902, 5, 94, 0, 0, 2902, 598, 1, 0, 0, 0, 2903, 2904, 5, 46, 0, 0, 2904, 600, 1, 0, 0, 0, 2905, 2906, 5, 91, 0, 0, 2906, 602, 1, 0, 0, 0, 2907, 2908, 5, 93, 0, 0, 2908, 604, 1, 0, 0, 0, 2909, 2910, 5, 40, 0, 0, 2910, 606, 1, 0, 0, 0, 2911, 2912, 5, 41, 0, 0, 2912, 608, 1, 0, 0, 0, 2913, 2914, 5, 44, 0, 0, 2914, 610, 1, 0, 0, 0, 2915, 2916, 5, 59, 0, 0, 2916, 612, 1, 0, 0, 0, 2917, 2918, 5, 64, 0, 0, 2918, 614, 1, 0, 0, 0, 2919, 2920, 5, 39, 0, 0, 2920, 616, 1, 0, 0, 0, 2921, 2922, 5, 34, 0, 0, 2922, 618, 1, 0, 0, 0, 2923, 2924, 5, 96, 0, 0, 2924, 620, 1, 0, 0, 0, 2925, 2926, 5, 58, 0, 0, 2926, 622, 1, 0, 0, 0, 2927, 2928, 5, 42, 0, 0, 2928, 624, 1, 0, 0, 0, 2929, 2930, 5, 95, 0, 0, 2930, 626, 1, 0, 0, 0, 2931, 2932, 5, 45, 0, 0, 2932, 628, 1, 0, 0, 0, 2933, 2934, 5, 43, 0, 0, 2934, 630, 1, 0, 0, 0, 2935, 2936, 5, 37, 0, 0, 2936, 632, 1, 0, 0, 0, 2937, 2938, 5, 124, 0, 0, 2938, 2939, 5, 124, 0, 0, 2939, 634, 1, 0, 0, 0, 2940, 2941, 5, 45, 0, 0, 2941, 2942, 5, 45, 0, 0, 2942, 636, 1, 0, 0, 0, 2943, 2944, 5, 47, 0, 0, 2944, 638, 1, 0, 0, 0, 2945, 2946, 5, 46, 0, 0, 2946, 2947, 3, 663, 331, 0, 2947, 640, 1, 0, 0, 0, 2948, 2949, 7, 2, 0, 0, 2949, 2950, 3, 653, 326, 0, 2950, 642, 1, 0, 0, 0, 2951, 2955, 3, 671, 335, 0, 2952, 2955, 3, 673, 336, 0, 2953, 2955, 3, 677, 338, 0, 2954, 2951, 1, 0, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 644, 1, 0, 0, 0, 2956, 2958, 3, 667, 333, 0, 2957, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2957, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 646, 1, 0, 0, 0, 2961, 2963, 3, 667, 333, 0, 2962, 2961, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2962, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2970, 5, 46, 0, 0, 2969, 2971, 3, 667, 333, 0, 2970, 2969, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 3005, 1, 0, 0, 0, 2974, 2976, 3, 667, 333, 0, 2975, 2974, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2975, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2980, 5, 46, 0, 0, 2980, 2981, 3, 661, 330, 0, 2981, 3005, 1, 0, 0, 0, 2982, 2984, 3, 667, 333, 0, 2983, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2988, 1, 0, 0, 0, 2987, 2983, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 5, 46, 0, 0, 2990, 2992, 3, 667, 333, 0, 2991, 2990, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 3, 661, 330, 0, 2996, 3005, 1, 0, 0, 0, 2997, 2999, 3, 667, 333, 0, 2998, 2997, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 2998, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 3, 661, 330, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2966, 1, 0, 0, 0, 3004, 2975, 1, 0, 0, 0, 3004, 2987, 1, 0, 0, 0, 3004, 2998, 1, 0, 0, 0, 3005, 648, 1, 0, 0, 0, 3006, 3007, 3, 675, 337, 0, 3007, 650, 1, 0, 0, 0, 3008, 3009, 3, 663, 331, 0, 3009, 652, 1, 0, 0, 0, 3010, 3011, 3, 665, 332, 0, 3011, 654, 1, 0, 0, 0, 3012, 3013, 3, 657, 328, 0, 3013, 656, 1, 0, 0, 0, 3014, 3018, 7, 3, 0, 0, 3015, 3017, 8, 4, 0, 0, 3016, 3015, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3022, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3014, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3021, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 658, 1, 0, 0, 0, 3025, 3033, 5, 96, 0, 0, 3026, 3027, 5, 92, 0, 0, 3027, 3032, 9, 0, 0, 0, 3028, 3029, 5, 96, 0, 0, 3029, 3032, 5, 96, 0, 0, 3030, 3032, 8, 5, 0, 0, 3031, 3026, 1, 0, 0, 0, 3031, 3028, 1, 0, 0, 0, 3031, 3030, 1, 0, 0, 0, 3032, 3035, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3036, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3036, 3037, 5, 96, 0, 0, 3037, 660, 1, 0, 0, 0, 3038, 3040, 5, 69, 0, 0, 3039, 3041, 7, 6, 0, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 3043, 1, 0, 0, 0, 3042, 3044, 3, 667, 333, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 662, 1, 0, 0, 0, 3047, 3049, 7, 7, 0, 0, 3048, 3047, 1, 0, 0, 0, 3049, 3052, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3050, 3048, 1, 0, 0, 0, 3051, 3054, 1, 0, 0, 0, 3052, 3050, 1, 0, 0, 0, 3053, 3055, 7, 8, 0, 0, 3054, 3053, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3056, 3054, 1, 0, 0, 0, 3057, 3061, 1, 0, 0, 0, 3058, 3060, 7, 7, 0, 0, 3059, 3058, 1, 0, 0, 0, 3060, 3063, 1, 0, 0, 0, 3061, 3059, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 664, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3064, 3066, 7, 9, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3069, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3068, 3071, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3070, 3072, 7, 10, 0, 0, 3071, 3070, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3074, 3078, 1, 0, 0, 0, 3075, 3077, 7, 9, 0, 0, 3076, 3075, 1, 0, 0, 0, 3077, 3080, 1, 0, 0, 0, 3078, 3076, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 666, 1, 0, 0, 0, 3080, 3078, 1, 0, 0, 0, 3081, 3082, 7, 11, 0, 0, 3082, 668, 1, 0, 0, 0, 3083, 3084, 7, 12, 0, 0, 3084, 670, 1, 0, 0, 0, 3085, 3093, 5, 34, 0, 0, 3086, 3087, 5, 92, 0, 0, 3087, 3092, 9, 0, 0, 0, 3088, 3089, 5, 34, 0, 0, 3089, 3092, 5, 34, 0, 0, 3090, 3092, 8, 13, 0, 0, 3091, 3086, 1, 0, 0, 0, 3091, 3088, 1, 0, 0, 0, 3091, 3090, 1, 0, 0, 0, 3092, 3095, 1, 0, 0, 0, 3093, 3091, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3096, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3096, 3097, 5, 34, 0, 0, 3097, 672, 1, 0, 0, 0, 3098, 3106, 5, 39, 0, 0, 3099, 3100, 5, 92, 0, 0, 3100, 3105, 9, 0, 0, 0, 3101, 3102, 5, 39, 0, 0, 3102, 3105, 5, 39, 0, 0, 3103, 3105, 8, 14, 0, 0, 3104, 3099, 1, 0, 0, 0, 3104, 3101, 1, 0, 0, 0, 3104, 3103, 1, 0, 0, 0, 3105, 3108, 1, 0, 0, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3109, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3109, 3110, 5, 39, 0, 0, 3110, 674, 1, 0, 0, 0, 3111, 3112, 5, 66, 0, 0, 3112, 3114, 5, 39, 0, 0, 3113, 3115, 7, 15, 0, 0, 3114, 3113, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 5, 39, 0, 0, 3119, 676, 1, 0, 0, 0, 3120, 3128, 5, 96, 0, 0, 3121, 3122, 5, 92, 0, 0, 3122, 3127, 9, 0, 0, 0, 3123, 3124, 5, 96, 0, 0, 3124, 3127, 5, 96, 0, 0, 3125, 3127, 8, 5, 0, 0, 3126, 3121, 1, 0, 0, 0, 3126, 3123, 1, 0, 0, 0, 3126, 3125, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3131, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3132, 5, 96, 0, 0, 3132, 678, 1, 0, 0, 0, 40, 0, 682, 692, 703, 708, 712, 716, 722, 726, 728, 2954, 2959, 2964, 2966, 2972, 2977, 2985, 2987, 2993, 3000, 3004, 3018, 3023, 3031, 3033, 3040, 3045, 3050, 3056, 3061, 3067, 3073, 3078, 3091, 3093, 3104, 3106, 3116, 3126, 3128, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 329, 3142, 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, 1, 0, 4, 0, 683, 8, 0, 11, 0, 12, 0, 684, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 693, 8, 1, 10, 1, 12, 1, 696, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 706, 8, 2, 1, 2, 5, 2, 709, 8, 2, 10, 2, 12, 2, 712, 9, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 1, 2, 3, 2, 719, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 725, 8, 2, 1, 2, 1, 2, 3, 2, 729, 8, 2, 3, 2, 731, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 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, 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, 12, 1, 12, 1, 12, 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, 15, 1, 15, 1, 15, 1, 15, 1, 15, 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, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 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, 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, 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, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 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, 44, 1, 44, 1, 44, 1, 44, 1, 44, 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, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 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, 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, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 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, 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, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 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, 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, 74, 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, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 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, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 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, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 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, 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, 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, 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, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 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, 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, 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, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 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, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 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, 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, 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, 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, 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, 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, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 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, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 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, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 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, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 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, 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, 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, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 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, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 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, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 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, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 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, 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, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 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, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 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, 178, 1, 178, 1, 178, 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, 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, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 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, 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, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 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, 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, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 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, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 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, 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, 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, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 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, 222, 1, 222, 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, 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, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 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, 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, 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, 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, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 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, 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, 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, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 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, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 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, 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, 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, 261, 1, 261, 1, 261, 1, 262, 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, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 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, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 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, 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, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 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, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 302, 1, 302, 1, 303, 1, 303, 1, 304, 1, 304, 1, 305, 1, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 2964, 8, 322, 1, 323, 4, 323, 2967, 8, 323, 11, 323, 12, 323, 2968, 1, 324, 4, 324, 2972, 8, 324, 11, 324, 12, 324, 2973, 3, 324, 2976, 8, 324, 1, 324, 1, 324, 4, 324, 2980, 8, 324, 11, 324, 12, 324, 2981, 1, 324, 4, 324, 2985, 8, 324, 11, 324, 12, 324, 2986, 1, 324, 1, 324, 1, 324, 1, 324, 4, 324, 2993, 8, 324, 11, 324, 12, 324, 2994, 3, 324, 2997, 8, 324, 1, 324, 1, 324, 4, 324, 3001, 8, 324, 11, 324, 12, 324, 3002, 1, 324, 1, 324, 1, 324, 4, 324, 3008, 8, 324, 11, 324, 12, 324, 3009, 1, 324, 1, 324, 3, 324, 3014, 8, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 5, 329, 3026, 8, 329, 10, 329, 12, 329, 3029, 9, 329, 4, 329, 3031, 8, 329, 11, 329, 12, 329, 3032, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 5, 330, 3041, 8, 330, 10, 330, 12, 330, 3044, 9, 330, 1, 330, 1, 330, 1, 331, 1, 331, 3, 331, 3050, 8, 331, 1, 331, 4, 331, 3053, 8, 331, 11, 331, 12, 331, 3054, 1, 332, 5, 332, 3058, 8, 332, 10, 332, 12, 332, 3061, 9, 332, 1, 332, 4, 332, 3064, 8, 332, 11, 332, 12, 332, 3065, 1, 332, 5, 332, 3069, 8, 332, 10, 332, 12, 332, 3072, 9, 332, 1, 333, 5, 333, 3075, 8, 333, 10, 333, 12, 333, 3078, 9, 333, 1, 333, 4, 333, 3081, 8, 333, 11, 333, 12, 333, 3082, 1, 333, 5, 333, 3086, 8, 333, 10, 333, 12, 333, 3089, 9, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 3101, 8, 336, 10, 336, 12, 336, 3104, 9, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 3114, 8, 337, 10, 337, 12, 337, 3117, 9, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 4, 338, 3124, 8, 338, 11, 338, 12, 338, 3125, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 3136, 8, 339, 10, 339, 12, 339, 3139, 9, 339, 1, 339, 1, 339, 5, 694, 3059, 3065, 3076, 3082, 0, 340, 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, 0, 661, 0, 663, 0, 665, 0, 667, 0, 669, 0, 671, 0, 673, 0, 675, 0, 677, 0, 679, 0, 1, 0, 16, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 46, 46, 58, 58, 2, 0, 47, 47, 92, 92, 3, 0, 32, 32, 47, 47, 92, 92, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 7, 0, 35, 38, 42, 42, 48, 57, 64, 90, 94, 95, 97, 123, 125, 125, 6, 0, 35, 38, 42, 42, 64, 90, 94, 95, 97, 123, 125, 125, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 3176, 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, 1, 682, 1, 0, 0, 0, 3, 688, 1, 0, 0, 0, 5, 730, 1, 0, 0, 0, 7, 734, 1, 0, 0, 0, 9, 741, 1, 0, 0, 0, 11, 746, 1, 0, 0, 0, 13, 750, 1, 0, 0, 0, 15, 753, 1, 0, 0, 0, 17, 757, 1, 0, 0, 0, 19, 761, 1, 0, 0, 0, 21, 770, 1, 0, 0, 0, 23, 776, 1, 0, 0, 0, 25, 782, 1, 0, 0, 0, 27, 785, 1, 0, 0, 0, 29, 794, 1, 0, 0, 0, 31, 799, 1, 0, 0, 0, 33, 804, 1, 0, 0, 0, 35, 811, 1, 0, 0, 0, 37, 817, 1, 0, 0, 0, 39, 824, 1, 0, 0, 0, 41, 830, 1, 0, 0, 0, 43, 833, 1, 0, 0, 0, 45, 836, 1, 0, 0, 0, 47, 840, 1, 0, 0, 0, 49, 843, 1, 0, 0, 0, 51, 847, 1, 0, 0, 0, 53, 850, 1, 0, 0, 0, 55, 857, 1, 0, 0, 0, 57, 865, 1, 0, 0, 0, 59, 870, 1, 0, 0, 0, 61, 876, 1, 0, 0, 0, 63, 879, 1, 0, 0, 0, 65, 884, 1, 0, 0, 0, 67, 890, 1, 0, 0, 0, 69, 896, 1, 0, 0, 0, 71, 900, 1, 0, 0, 0, 73, 905, 1, 0, 0, 0, 75, 909, 1, 0, 0, 0, 77, 918, 1, 0, 0, 0, 79, 923, 1, 0, 0, 0, 81, 928, 1, 0, 0, 0, 83, 933, 1, 0, 0, 0, 85, 938, 1, 0, 0, 0, 87, 944, 1, 0, 0, 0, 89, 948, 1, 0, 0, 0, 91, 953, 1, 0, 0, 0, 93, 959, 1, 0, 0, 0, 95, 965, 1, 0, 0, 0, 97, 971, 1, 0, 0, 0, 99, 976, 1, 0, 0, 0, 101, 981, 1, 0, 0, 0, 103, 987, 1, 0, 0, 0, 105, 992, 1, 0, 0, 0, 107, 997, 1, 0, 0, 0, 109, 1005, 1, 0, 0, 0, 111, 1008, 1, 0, 0, 0, 113, 1014, 1, 0, 0, 0, 115, 1022, 1, 0, 0, 0, 117, 1029, 1, 0, 0, 0, 119, 1034, 1, 0, 0, 0, 121, 1044, 1, 0, 0, 0, 123, 1050, 1, 0, 0, 0, 125, 1055, 1, 0, 0, 0, 127, 1065, 1, 0, 0, 0, 129, 1075, 1, 0, 0, 0, 131, 1085, 1, 0, 0, 0, 133, 1093, 1, 0, 0, 0, 135, 1099, 1, 0, 0, 0, 137, 1105, 1, 0, 0, 0, 139, 1110, 1, 0, 0, 0, 141, 1115, 1, 0, 0, 0, 143, 1123, 1, 0, 0, 0, 145, 1130, 1, 0, 0, 0, 147, 1137, 1, 0, 0, 0, 149, 1143, 1, 0, 0, 0, 151, 1153, 1, 0, 0, 0, 153, 1158, 1, 0, 0, 0, 155, 1166, 1, 0, 0, 0, 157, 1174, 1, 0, 0, 0, 159, 1184, 1, 0, 0, 0, 161, 1191, 1, 0, 0, 0, 163, 1198, 1, 0, 0, 0, 165, 1205, 1, 0, 0, 0, 167, 1210, 1, 0, 0, 0, 169, 1219, 1, 0, 0, 0, 171, 1227, 1, 0, 0, 0, 173, 1232, 1, 0, 0, 0, 175, 1247, 1, 0, 0, 0, 177, 1267, 1, 0, 0, 0, 179, 1282, 1, 0, 0, 0, 181, 1289, 1, 0, 0, 0, 183, 1297, 1, 0, 0, 0, 185, 1305, 1, 0, 0, 0, 187, 1310, 1, 0, 0, 0, 189, 1315, 1, 0, 0, 0, 191, 1320, 1, 0, 0, 0, 193, 1327, 1, 0, 0, 0, 195, 1335, 1, 0, 0, 0, 197, 1342, 1, 0, 0, 0, 199, 1346, 1, 0, 0, 0, 201, 1353, 1, 0, 0, 0, 203, 1361, 1, 0, 0, 0, 205, 1372, 1, 0, 0, 0, 207, 1382, 1, 0, 0, 0, 209, 1387, 1, 0, 0, 0, 211, 1393, 1, 0, 0, 0, 213, 1400, 1, 0, 0, 0, 215, 1409, 1, 0, 0, 0, 217, 1419, 1, 0, 0, 0, 219, 1422, 1, 0, 0, 0, 221, 1434, 1, 0, 0, 0, 223, 1443, 1, 0, 0, 0, 225, 1449, 1, 0, 0, 0, 227, 1456, 1, 0, 0, 0, 229, 1463, 1, 0, 0, 0, 231, 1471, 1, 0, 0, 0, 233, 1475, 1, 0, 0, 0, 235, 1481, 1, 0, 0, 0, 237, 1486, 1, 0, 0, 0, 239, 1492, 1, 0, 0, 0, 241, 1504, 1, 0, 0, 0, 243, 1511, 1, 0, 0, 0, 245, 1520, 1, 0, 0, 0, 247, 1526, 1, 0, 0, 0, 249, 1533, 1, 0, 0, 0, 251, 1538, 1, 0, 0, 0, 253, 1546, 1, 0, 0, 0, 255, 1555, 1, 0, 0, 0, 257, 1558, 1, 0, 0, 0, 259, 1567, 1, 0, 0, 0, 261, 1575, 1, 0, 0, 0, 263, 1581, 1, 0, 0, 0, 265, 1585, 1, 0, 0, 0, 267, 1596, 1, 0, 0, 0, 269, 1603, 1, 0, 0, 0, 271, 1607, 1, 0, 0, 0, 273, 1610, 1, 0, 0, 0, 275, 1615, 1, 0, 0, 0, 277, 1623, 1, 0, 0, 0, 279, 1634, 1, 0, 0, 0, 281, 1644, 1, 0, 0, 0, 283, 1654, 1, 0, 0, 0, 285, 1661, 1, 0, 0, 0, 287, 1667, 1, 0, 0, 0, 289, 1673, 1, 0, 0, 0, 291, 1689, 1, 0, 0, 0, 293, 1702, 1, 0, 0, 0, 295, 1715, 1, 0, 0, 0, 297, 1725, 1, 0, 0, 0, 299, 1732, 1, 0, 0, 0, 301, 1743, 1, 0, 0, 0, 303, 1754, 1, 0, 0, 0, 305, 1760, 1, 0, 0, 0, 307, 1765, 1, 0, 0, 0, 309, 1773, 1, 0, 0, 0, 311, 1779, 1, 0, 0, 0, 313, 1789, 1, 0, 0, 0, 315, 1798, 1, 0, 0, 0, 317, 1807, 1, 0, 0, 0, 319, 1815, 1, 0, 0, 0, 321, 1821, 1, 0, 0, 0, 323, 1827, 1, 0, 0, 0, 325, 1835, 1, 0, 0, 0, 327, 1840, 1, 0, 0, 0, 329, 1850, 1, 0, 0, 0, 331, 1857, 1, 0, 0, 0, 333, 1867, 1, 0, 0, 0, 335, 1875, 1, 0, 0, 0, 337, 1881, 1, 0, 0, 0, 339, 1895, 1, 0, 0, 0, 341, 1908, 1, 0, 0, 0, 343, 1916, 1, 0, 0, 0, 345, 1923, 1, 0, 0, 0, 347, 1930, 1, 0, 0, 0, 349, 1942, 1, 0, 0, 0, 351, 1951, 1, 0, 0, 0, 353, 1960, 1, 0, 0, 0, 355, 1968, 1, 0, 0, 0, 357, 1978, 1, 0, 0, 0, 359, 1989, 1, 0, 0, 0, 361, 1995, 1, 0, 0, 0, 363, 2003, 1, 0, 0, 0, 365, 2015, 1, 0, 0, 0, 367, 2022, 1, 0, 0, 0, 369, 2030, 1, 0, 0, 0, 371, 2041, 1, 0, 0, 0, 373, 2050, 1, 0, 0, 0, 375, 2060, 1, 0, 0, 0, 377, 2067, 1, 0, 0, 0, 379, 2073, 1, 0, 0, 0, 381, 2085, 1, 0, 0, 0, 383, 2098, 1, 0, 0, 0, 385, 2107, 1, 0, 0, 0, 387, 2117, 1, 0, 0, 0, 389, 2121, 1, 0, 0, 0, 391, 2130, 1, 0, 0, 0, 393, 2138, 1, 0, 0, 0, 395, 2146, 1, 0, 0, 0, 397, 2151, 1, 0, 0, 0, 399, 2162, 1, 0, 0, 0, 401, 2174, 1, 0, 0, 0, 403, 2183, 1, 0, 0, 0, 405, 2191, 1, 0, 0, 0, 407, 2198, 1, 0, 0, 0, 409, 2204, 1, 0, 0, 0, 411, 2209, 1, 0, 0, 0, 413, 2216, 1, 0, 0, 0, 415, 2221, 1, 0, 0, 0, 417, 2228, 1, 0, 0, 0, 419, 2236, 1, 0, 0, 0, 421, 2243, 1, 0, 0, 0, 423, 2250, 1, 0, 0, 0, 425, 2255, 1, 0, 0, 0, 427, 2262, 1, 0, 0, 0, 429, 2267, 1, 0, 0, 0, 431, 2273, 1, 0, 0, 0, 433, 2285, 1, 0, 0, 0, 435, 2296, 1, 0, 0, 0, 437, 2309, 1, 0, 0, 0, 439, 2315, 1, 0, 0, 0, 441, 2323, 1, 0, 0, 0, 443, 2329, 1, 0, 0, 0, 445, 2336, 1, 0, 0, 0, 447, 2341, 1, 0, 0, 0, 449, 2347, 1, 0, 0, 0, 451, 2354, 1, 0, 0, 0, 453, 2364, 1, 0, 0, 0, 455, 2371, 1, 0, 0, 0, 457, 2377, 1, 0, 0, 0, 459, 2382, 1, 0, 0, 0, 461, 2389, 1, 0, 0, 0, 463, 2392, 1, 0, 0, 0, 465, 2399, 1, 0, 0, 0, 467, 2409, 1, 0, 0, 0, 469, 2419, 1, 0, 0, 0, 471, 2431, 1, 0, 0, 0, 473, 2443, 1, 0, 0, 0, 475, 2453, 1, 0, 0, 0, 477, 2464, 1, 0, 0, 0, 479, 2472, 1, 0, 0, 0, 481, 2481, 1, 0, 0, 0, 483, 2486, 1, 0, 0, 0, 485, 2492, 1, 0, 0, 0, 487, 2499, 1, 0, 0, 0, 489, 2503, 1, 0, 0, 0, 491, 2508, 1, 0, 0, 0, 493, 2521, 1, 0, 0, 0, 495, 2541, 1, 0, 0, 0, 497, 2561, 1, 0, 0, 0, 499, 2572, 1, 0, 0, 0, 501, 2588, 1, 0, 0, 0, 503, 2605, 1, 0, 0, 0, 505, 2612, 1, 0, 0, 0, 507, 2621, 1, 0, 0, 0, 509, 2627, 1, 0, 0, 0, 511, 2632, 1, 0, 0, 0, 513, 2640, 1, 0, 0, 0, 515, 2647, 1, 0, 0, 0, 517, 2651, 1, 0, 0, 0, 519, 2658, 1, 0, 0, 0, 521, 2670, 1, 0, 0, 0, 523, 2679, 1, 0, 0, 0, 525, 2688, 1, 0, 0, 0, 527, 2696, 1, 0, 0, 0, 529, 2701, 1, 0, 0, 0, 531, 2708, 1, 0, 0, 0, 533, 2714, 1, 0, 0, 0, 535, 2718, 1, 0, 0, 0, 537, 2723, 1, 0, 0, 0, 539, 2731, 1, 0, 0, 0, 541, 2738, 1, 0, 0, 0, 543, 2748, 1, 0, 0, 0, 545, 2754, 1, 0, 0, 0, 547, 2762, 1, 0, 0, 0, 549, 2766, 1, 0, 0, 0, 551, 2774, 1, 0, 0, 0, 553, 2782, 1, 0, 0, 0, 555, 2791, 1, 0, 0, 0, 557, 2795, 1, 0, 0, 0, 559, 2803, 1, 0, 0, 0, 561, 2810, 1, 0, 0, 0, 563, 2816, 1, 0, 0, 0, 565, 2823, 1, 0, 0, 0, 567, 2828, 1, 0, 0, 0, 569, 2833, 1, 0, 0, 0, 571, 2843, 1, 0, 0, 0, 573, 2857, 1, 0, 0, 0, 575, 2866, 1, 0, 0, 0, 577, 2874, 1, 0, 0, 0, 579, 2878, 1, 0, 0, 0, 581, 2882, 1, 0, 0, 0, 583, 2887, 1, 0, 0, 0, 585, 2896, 1, 0, 0, 0, 587, 2898, 1, 0, 0, 0, 589, 2900, 1, 0, 0, 0, 591, 2902, 1, 0, 0, 0, 593, 2904, 1, 0, 0, 0, 595, 2906, 1, 0, 0, 0, 597, 2908, 1, 0, 0, 0, 599, 2910, 1, 0, 0, 0, 601, 2912, 1, 0, 0, 0, 603, 2914, 1, 0, 0, 0, 605, 2916, 1, 0, 0, 0, 607, 2918, 1, 0, 0, 0, 609, 2920, 1, 0, 0, 0, 611, 2922, 1, 0, 0, 0, 613, 2924, 1, 0, 0, 0, 615, 2926, 1, 0, 0, 0, 617, 2928, 1, 0, 0, 0, 619, 2930, 1, 0, 0, 0, 621, 2932, 1, 0, 0, 0, 623, 2934, 1, 0, 0, 0, 625, 2936, 1, 0, 0, 0, 627, 2938, 1, 0, 0, 0, 629, 2940, 1, 0, 0, 0, 631, 2942, 1, 0, 0, 0, 633, 2944, 1, 0, 0, 0, 635, 2946, 1, 0, 0, 0, 637, 2949, 1, 0, 0, 0, 639, 2952, 1, 0, 0, 0, 641, 2954, 1, 0, 0, 0, 643, 2957, 1, 0, 0, 0, 645, 2963, 1, 0, 0, 0, 647, 2966, 1, 0, 0, 0, 649, 3013, 1, 0, 0, 0, 651, 3015, 1, 0, 0, 0, 653, 3017, 1, 0, 0, 0, 655, 3019, 1, 0, 0, 0, 657, 3021, 1, 0, 0, 0, 659, 3030, 1, 0, 0, 0, 661, 3034, 1, 0, 0, 0, 663, 3047, 1, 0, 0, 0, 665, 3059, 1, 0, 0, 0, 667, 3076, 1, 0, 0, 0, 669, 3090, 1, 0, 0, 0, 671, 3092, 1, 0, 0, 0, 673, 3094, 1, 0, 0, 0, 675, 3107, 1, 0, 0, 0, 677, 3120, 1, 0, 0, 0, 679, 3129, 1, 0, 0, 0, 681, 683, 7, 0, 0, 0, 682, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 6, 0, 0, 0, 687, 2, 1, 0, 0, 0, 688, 689, 5, 47, 0, 0, 689, 690, 5, 42, 0, 0, 690, 694, 1, 0, 0, 0, 691, 693, 9, 0, 0, 0, 692, 691, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 695, 697, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 698, 5, 42, 0, 0, 698, 699, 5, 47, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 6, 1, 0, 0, 701, 4, 1, 0, 0, 0, 702, 703, 5, 45, 0, 0, 703, 706, 5, 45, 0, 0, 704, 706, 5, 35, 0, 0, 705, 702, 1, 0, 0, 0, 705, 704, 1, 0, 0, 0, 706, 710, 1, 0, 0, 0, 707, 709, 8, 1, 0, 0, 708, 707, 1, 0, 0, 0, 709, 712, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 718, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 713, 715, 5, 13, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 719, 5, 10, 0, 0, 717, 719, 5, 0, 0, 1, 718, 714, 1, 0, 0, 0, 718, 717, 1, 0, 0, 0, 719, 731, 1, 0, 0, 0, 720, 721, 5, 45, 0, 0, 721, 722, 5, 45, 0, 0, 722, 728, 1, 0, 0, 0, 723, 725, 5, 13, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 729, 5, 10, 0, 0, 727, 729, 5, 0, 0, 1, 728, 724, 1, 0, 0, 0, 728, 727, 1, 0, 0, 0, 729, 731, 1, 0, 0, 0, 730, 705, 1, 0, 0, 0, 730, 720, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 6, 2, 0, 0, 733, 6, 1, 0, 0, 0, 734, 735, 5, 83, 0, 0, 735, 736, 5, 69, 0, 0, 736, 737, 5, 76, 0, 0, 737, 738, 5, 69, 0, 0, 738, 739, 5, 67, 0, 0, 739, 740, 5, 84, 0, 0, 740, 8, 1, 0, 0, 0, 741, 742, 5, 70, 0, 0, 742, 743, 5, 82, 0, 0, 743, 744, 5, 79, 0, 0, 744, 745, 5, 77, 0, 0, 745, 10, 1, 0, 0, 0, 746, 747, 5, 65, 0, 0, 747, 748, 5, 68, 0, 0, 748, 749, 5, 68, 0, 0, 749, 12, 1, 0, 0, 0, 750, 751, 5, 65, 0, 0, 751, 752, 5, 83, 0, 0, 752, 14, 1, 0, 0, 0, 753, 754, 5, 65, 0, 0, 754, 755, 5, 76, 0, 0, 755, 756, 5, 76, 0, 0, 756, 16, 1, 0, 0, 0, 757, 758, 5, 65, 0, 0, 758, 759, 5, 78, 0, 0, 759, 760, 5, 89, 0, 0, 760, 18, 1, 0, 0, 0, 761, 762, 5, 68, 0, 0, 762, 763, 5, 73, 0, 0, 763, 764, 5, 83, 0, 0, 764, 765, 5, 84, 0, 0, 765, 766, 5, 73, 0, 0, 766, 767, 5, 78, 0, 0, 767, 768, 5, 67, 0, 0, 768, 769, 5, 84, 0, 0, 769, 20, 1, 0, 0, 0, 770, 771, 5, 87, 0, 0, 771, 772, 5, 72, 0, 0, 772, 773, 5, 69, 0, 0, 773, 774, 5, 82, 0, 0, 774, 775, 5, 69, 0, 0, 775, 22, 1, 0, 0, 0, 776, 777, 5, 71, 0, 0, 777, 778, 5, 82, 0, 0, 778, 779, 5, 79, 0, 0, 779, 780, 5, 85, 0, 0, 780, 781, 5, 80, 0, 0, 781, 24, 1, 0, 0, 0, 782, 783, 5, 66, 0, 0, 783, 784, 5, 89, 0, 0, 784, 26, 1, 0, 0, 0, 785, 786, 5, 71, 0, 0, 786, 787, 5, 82, 0, 0, 787, 788, 5, 79, 0, 0, 788, 789, 5, 85, 0, 0, 789, 790, 5, 80, 0, 0, 790, 791, 5, 73, 0, 0, 791, 792, 5, 78, 0, 0, 792, 793, 5, 71, 0, 0, 793, 28, 1, 0, 0, 0, 794, 795, 5, 83, 0, 0, 795, 796, 5, 69, 0, 0, 796, 797, 5, 84, 0, 0, 797, 798, 5, 83, 0, 0, 798, 30, 1, 0, 0, 0, 799, 800, 5, 67, 0, 0, 800, 801, 5, 85, 0, 0, 801, 802, 5, 66, 0, 0, 802, 803, 5, 69, 0, 0, 803, 32, 1, 0, 0, 0, 804, 805, 5, 82, 0, 0, 805, 806, 5, 79, 0, 0, 806, 807, 5, 76, 0, 0, 807, 808, 5, 76, 0, 0, 808, 809, 5, 85, 0, 0, 809, 810, 5, 80, 0, 0, 810, 34, 1, 0, 0, 0, 811, 812, 5, 79, 0, 0, 812, 813, 5, 82, 0, 0, 813, 814, 5, 68, 0, 0, 814, 815, 5, 69, 0, 0, 815, 816, 5, 82, 0, 0, 816, 36, 1, 0, 0, 0, 817, 818, 5, 72, 0, 0, 818, 819, 5, 65, 0, 0, 819, 820, 5, 86, 0, 0, 820, 821, 5, 73, 0, 0, 821, 822, 5, 78, 0, 0, 822, 823, 5, 71, 0, 0, 823, 38, 1, 0, 0, 0, 824, 825, 5, 76, 0, 0, 825, 826, 5, 73, 0, 0, 826, 827, 5, 77, 0, 0, 827, 828, 5, 73, 0, 0, 828, 829, 5, 84, 0, 0, 829, 40, 1, 0, 0, 0, 830, 831, 5, 65, 0, 0, 831, 832, 5, 84, 0, 0, 832, 42, 1, 0, 0, 0, 833, 834, 5, 79, 0, 0, 834, 835, 5, 82, 0, 0, 835, 44, 1, 0, 0, 0, 836, 837, 5, 65, 0, 0, 837, 838, 5, 78, 0, 0, 838, 839, 5, 68, 0, 0, 839, 46, 1, 0, 0, 0, 840, 841, 5, 73, 0, 0, 841, 842, 5, 78, 0, 0, 842, 48, 1, 0, 0, 0, 843, 844, 5, 78, 0, 0, 844, 845, 5, 79, 0, 0, 845, 846, 5, 84, 0, 0, 846, 50, 1, 0, 0, 0, 847, 848, 5, 78, 0, 0, 848, 849, 5, 79, 0, 0, 849, 52, 1, 0, 0, 0, 850, 851, 5, 69, 0, 0, 851, 852, 5, 88, 0, 0, 852, 853, 5, 73, 0, 0, 853, 854, 5, 83, 0, 0, 854, 855, 5, 84, 0, 0, 855, 856, 5, 83, 0, 0, 856, 54, 1, 0, 0, 0, 857, 858, 5, 66, 0, 0, 858, 859, 5, 69, 0, 0, 859, 860, 5, 84, 0, 0, 860, 861, 5, 87, 0, 0, 861, 862, 5, 69, 0, 0, 862, 863, 5, 69, 0, 0, 863, 864, 5, 78, 0, 0, 864, 56, 1, 0, 0, 0, 865, 866, 5, 76, 0, 0, 866, 867, 5, 73, 0, 0, 867, 868, 5, 75, 0, 0, 868, 869, 5, 69, 0, 0, 869, 58, 1, 0, 0, 0, 870, 871, 5, 82, 0, 0, 871, 872, 5, 76, 0, 0, 872, 873, 5, 73, 0, 0, 873, 874, 5, 75, 0, 0, 874, 875, 5, 69, 0, 0, 875, 60, 1, 0, 0, 0, 876, 877, 5, 73, 0, 0, 877, 878, 5, 83, 0, 0, 878, 62, 1, 0, 0, 0, 879, 880, 5, 84, 0, 0, 880, 881, 5, 82, 0, 0, 881, 882, 5, 85, 0, 0, 882, 883, 5, 69, 0, 0, 883, 64, 1, 0, 0, 0, 884, 885, 5, 70, 0, 0, 885, 886, 5, 65, 0, 0, 886, 887, 5, 76, 0, 0, 887, 888, 5, 83, 0, 0, 888, 889, 5, 69, 0, 0, 889, 66, 1, 0, 0, 0, 890, 891, 5, 78, 0, 0, 891, 892, 5, 85, 0, 0, 892, 893, 5, 76, 0, 0, 893, 894, 5, 76, 0, 0, 894, 895, 5, 83, 0, 0, 895, 68, 1, 0, 0, 0, 896, 897, 5, 65, 0, 0, 897, 898, 5, 83, 0, 0, 898, 899, 5, 67, 0, 0, 899, 70, 1, 0, 0, 0, 900, 901, 5, 68, 0, 0, 901, 902, 5, 69, 0, 0, 902, 903, 5, 83, 0, 0, 903, 904, 5, 67, 0, 0, 904, 72, 1, 0, 0, 0, 905, 906, 5, 70, 0, 0, 906, 907, 5, 79, 0, 0, 907, 908, 5, 82, 0, 0, 908, 74, 1, 0, 0, 0, 909, 910, 5, 73, 0, 0, 910, 911, 5, 78, 0, 0, 911, 912, 5, 84, 0, 0, 912, 913, 5, 69, 0, 0, 913, 914, 5, 82, 0, 0, 914, 915, 5, 86, 0, 0, 915, 916, 5, 65, 0, 0, 916, 917, 5, 76, 0, 0, 917, 76, 1, 0, 0, 0, 918, 919, 5, 67, 0, 0, 919, 920, 5, 65, 0, 0, 920, 921, 5, 83, 0, 0, 921, 922, 5, 69, 0, 0, 922, 78, 1, 0, 0, 0, 923, 924, 5, 87, 0, 0, 924, 925, 5, 72, 0, 0, 925, 926, 5, 69, 0, 0, 926, 927, 5, 78, 0, 0, 927, 80, 1, 0, 0, 0, 928, 929, 5, 84, 0, 0, 929, 930, 5, 72, 0, 0, 930, 931, 5, 69, 0, 0, 931, 932, 5, 78, 0, 0, 932, 82, 1, 0, 0, 0, 933, 934, 5, 69, 0, 0, 934, 935, 5, 76, 0, 0, 935, 936, 5, 83, 0, 0, 936, 937, 5, 69, 0, 0, 937, 84, 1, 0, 0, 0, 938, 939, 5, 66, 0, 0, 939, 940, 5, 69, 0, 0, 940, 941, 5, 71, 0, 0, 941, 942, 5, 73, 0, 0, 942, 943, 5, 78, 0, 0, 943, 86, 1, 0, 0, 0, 944, 945, 5, 69, 0, 0, 945, 946, 5, 78, 0, 0, 946, 947, 5, 68, 0, 0, 947, 88, 1, 0, 0, 0, 948, 949, 5, 74, 0, 0, 949, 950, 5, 79, 0, 0, 950, 951, 5, 73, 0, 0, 951, 952, 5, 78, 0, 0, 952, 90, 1, 0, 0, 0, 953, 954, 5, 67, 0, 0, 954, 955, 5, 82, 0, 0, 955, 956, 5, 79, 0, 0, 956, 957, 5, 83, 0, 0, 957, 958, 5, 83, 0, 0, 958, 92, 1, 0, 0, 0, 959, 960, 5, 79, 0, 0, 960, 961, 5, 85, 0, 0, 961, 962, 5, 84, 0, 0, 962, 963, 5, 69, 0, 0, 963, 964, 5, 82, 0, 0, 964, 94, 1, 0, 0, 0, 965, 966, 5, 73, 0, 0, 966, 967, 5, 78, 0, 0, 967, 968, 5, 78, 0, 0, 968, 969, 5, 69, 0, 0, 969, 970, 5, 82, 0, 0, 970, 96, 1, 0, 0, 0, 971, 972, 5, 76, 0, 0, 972, 973, 5, 69, 0, 0, 973, 974, 5, 70, 0, 0, 974, 975, 5, 84, 0, 0, 975, 98, 1, 0, 0, 0, 976, 977, 5, 83, 0, 0, 977, 978, 5, 69, 0, 0, 978, 979, 5, 77, 0, 0, 979, 980, 5, 73, 0, 0, 980, 100, 1, 0, 0, 0, 981, 982, 5, 82, 0, 0, 982, 983, 5, 73, 0, 0, 983, 984, 5, 71, 0, 0, 984, 985, 5, 72, 0, 0, 985, 986, 5, 84, 0, 0, 986, 102, 1, 0, 0, 0, 987, 988, 5, 70, 0, 0, 988, 989, 5, 85, 0, 0, 989, 990, 5, 76, 0, 0, 990, 991, 5, 76, 0, 0, 991, 104, 1, 0, 0, 0, 992, 993, 5, 85, 0, 0, 993, 994, 5, 83, 0, 0, 994, 995, 5, 69, 0, 0, 995, 996, 5, 82, 0, 0, 996, 106, 1, 0, 0, 0, 997, 998, 5, 78, 0, 0, 998, 999, 5, 65, 0, 0, 999, 1000, 5, 84, 0, 0, 1000, 1001, 5, 85, 0, 0, 1001, 1002, 5, 82, 0, 0, 1002, 1003, 5, 65, 0, 0, 1003, 1004, 5, 76, 0, 0, 1004, 108, 1, 0, 0, 0, 1005, 1006, 5, 79, 0, 0, 1006, 1007, 5, 78, 0, 0, 1007, 110, 1, 0, 0, 0, 1008, 1009, 5, 80, 0, 0, 1009, 1010, 5, 73, 0, 0, 1010, 1011, 5, 86, 0, 0, 1011, 1012, 5, 79, 0, 0, 1012, 1013, 5, 84, 0, 0, 1013, 112, 1, 0, 0, 0, 1014, 1015, 5, 76, 0, 0, 1015, 1016, 5, 65, 0, 0, 1016, 1017, 5, 84, 0, 0, 1017, 1018, 5, 69, 0, 0, 1018, 1019, 5, 82, 0, 0, 1019, 1020, 5, 65, 0, 0, 1020, 1021, 5, 76, 0, 0, 1021, 114, 1, 0, 0, 0, 1022, 1023, 5, 87, 0, 0, 1023, 1024, 5, 73, 0, 0, 1024, 1025, 5, 78, 0, 0, 1025, 1026, 5, 68, 0, 0, 1026, 1027, 5, 79, 0, 0, 1027, 1028, 5, 87, 0, 0, 1028, 116, 1, 0, 0, 0, 1029, 1030, 5, 79, 0, 0, 1030, 1031, 5, 86, 0, 0, 1031, 1032, 5, 69, 0, 0, 1032, 1033, 5, 82, 0, 0, 1033, 118, 1, 0, 0, 0, 1034, 1035, 5, 80, 0, 0, 1035, 1036, 5, 65, 0, 0, 1036, 1037, 5, 82, 0, 0, 1037, 1038, 5, 84, 0, 0, 1038, 1039, 5, 73, 0, 0, 1039, 1040, 5, 84, 0, 0, 1040, 1041, 5, 73, 0, 0, 1041, 1042, 5, 79, 0, 0, 1042, 1043, 5, 78, 0, 0, 1043, 120, 1, 0, 0, 0, 1044, 1045, 5, 82, 0, 0, 1045, 1046, 5, 65, 0, 0, 1046, 1047, 5, 78, 0, 0, 1047, 1048, 5, 71, 0, 0, 1048, 1049, 5, 69, 0, 0, 1049, 122, 1, 0, 0, 0, 1050, 1051, 5, 82, 0, 0, 1051, 1052, 5, 79, 0, 0, 1052, 1053, 5, 87, 0, 0, 1053, 1054, 5, 83, 0, 0, 1054, 124, 1, 0, 0, 0, 1055, 1056, 5, 85, 0, 0, 1056, 1057, 5, 78, 0, 0, 1057, 1058, 5, 66, 0, 0, 1058, 1059, 5, 79, 0, 0, 1059, 1060, 5, 85, 0, 0, 1060, 1061, 5, 78, 0, 0, 1061, 1062, 5, 68, 0, 0, 1062, 1063, 5, 69, 0, 0, 1063, 1064, 5, 68, 0, 0, 1064, 126, 1, 0, 0, 0, 1065, 1066, 5, 80, 0, 0, 1066, 1067, 5, 82, 0, 0, 1067, 1068, 5, 69, 0, 0, 1068, 1069, 5, 67, 0, 0, 1069, 1070, 5, 69, 0, 0, 1070, 1071, 5, 68, 0, 0, 1071, 1072, 5, 73, 0, 0, 1072, 1073, 5, 78, 0, 0, 1073, 1074, 5, 71, 0, 0, 1074, 128, 1, 0, 0, 0, 1075, 1076, 5, 70, 0, 0, 1076, 1077, 5, 79, 0, 0, 1077, 1078, 5, 76, 0, 0, 1078, 1079, 5, 76, 0, 0, 1079, 1080, 5, 79, 0, 0, 1080, 1081, 5, 87, 0, 0, 1081, 1082, 5, 73, 0, 0, 1082, 1083, 5, 78, 0, 0, 1083, 1084, 5, 71, 0, 0, 1084, 130, 1, 0, 0, 0, 1085, 1086, 5, 67, 0, 0, 1086, 1087, 5, 85, 0, 0, 1087, 1088, 5, 82, 0, 0, 1088, 1089, 5, 82, 0, 0, 1089, 1090, 5, 69, 0, 0, 1090, 1091, 5, 78, 0, 0, 1091, 1092, 5, 84, 0, 0, 1092, 132, 1, 0, 0, 0, 1093, 1094, 5, 70, 0, 0, 1094, 1095, 5, 73, 0, 0, 1095, 1096, 5, 82, 0, 0, 1096, 1097, 5, 83, 0, 0, 1097, 1098, 5, 84, 0, 0, 1098, 134, 1, 0, 0, 0, 1099, 1100, 5, 65, 0, 0, 1100, 1101, 5, 70, 0, 0, 1101, 1102, 5, 84, 0, 0, 1102, 1103, 5, 69, 0, 0, 1103, 1104, 5, 82, 0, 0, 1104, 136, 1, 0, 0, 0, 1105, 1106, 5, 76, 0, 0, 1106, 1107, 5, 65, 0, 0, 1107, 1108, 5, 83, 0, 0, 1108, 1109, 5, 84, 0, 0, 1109, 138, 1, 0, 0, 0, 1110, 1111, 5, 87, 0, 0, 1111, 1112, 5, 73, 0, 0, 1112, 1113, 5, 84, 0, 0, 1113, 1114, 5, 72, 0, 0, 1114, 140, 1, 0, 0, 0, 1115, 1116, 5, 87, 0, 0, 1116, 1117, 5, 73, 0, 0, 1117, 1118, 5, 84, 0, 0, 1118, 1119, 5, 72, 0, 0, 1119, 1120, 5, 79, 0, 0, 1120, 1121, 5, 85, 0, 0, 1121, 1122, 5, 84, 0, 0, 1122, 142, 1, 0, 0, 0, 1123, 1124, 5, 86, 0, 0, 1124, 1125, 5, 65, 0, 0, 1125, 1126, 5, 76, 0, 0, 1126, 1127, 5, 85, 0, 0, 1127, 1128, 5, 69, 0, 0, 1128, 1129, 5, 83, 0, 0, 1129, 144, 1, 0, 0, 0, 1130, 1131, 5, 67, 0, 0, 1131, 1132, 5, 82, 0, 0, 1132, 1133, 5, 69, 0, 0, 1133, 1134, 5, 65, 0, 0, 1134, 1135, 5, 84, 0, 0, 1135, 1136, 5, 69, 0, 0, 1136, 146, 1, 0, 0, 0, 1137, 1138, 5, 84, 0, 0, 1138, 1139, 5, 65, 0, 0, 1139, 1140, 5, 66, 0, 0, 1140, 1141, 5, 76, 0, 0, 1141, 1142, 5, 69, 0, 0, 1142, 148, 1, 0, 0, 0, 1143, 1144, 5, 68, 0, 0, 1144, 1145, 5, 73, 0, 0, 1145, 1146, 5, 82, 0, 0, 1146, 1147, 5, 69, 0, 0, 1147, 1148, 5, 67, 0, 0, 1148, 1149, 5, 84, 0, 0, 1149, 1150, 5, 79, 0, 0, 1150, 1151, 5, 82, 0, 0, 1151, 1152, 5, 89, 0, 0, 1152, 150, 1, 0, 0, 0, 1153, 1154, 5, 86, 0, 0, 1154, 1155, 5, 73, 0, 0, 1155, 1156, 5, 69, 0, 0, 1156, 1157, 5, 87, 0, 0, 1157, 152, 1, 0, 0, 0, 1158, 1159, 5, 82, 0, 0, 1159, 1160, 5, 69, 0, 0, 1160, 1161, 5, 80, 0, 0, 1161, 1162, 5, 76, 0, 0, 1162, 1163, 5, 65, 0, 0, 1163, 1164, 5, 67, 0, 0, 1164, 1165, 5, 69, 0, 0, 1165, 154, 1, 0, 0, 0, 1166, 1167, 5, 69, 0, 0, 1167, 1168, 5, 88, 0, 0, 1168, 1169, 5, 69, 0, 0, 1169, 1170, 5, 67, 0, 0, 1170, 1171, 5, 85, 0, 0, 1171, 1172, 5, 84, 0, 0, 1172, 1173, 5, 69, 0, 0, 1173, 156, 1, 0, 0, 0, 1174, 1175, 5, 83, 0, 0, 1175, 1176, 5, 84, 0, 0, 1176, 1177, 5, 65, 0, 0, 1177, 1178, 5, 84, 0, 0, 1178, 1179, 5, 69, 0, 0, 1179, 1180, 5, 77, 0, 0, 1180, 1181, 5, 69, 0, 0, 1181, 1182, 5, 78, 0, 0, 1182, 1183, 5, 84, 0, 0, 1183, 158, 1, 0, 0, 0, 1184, 1185, 5, 73, 0, 0, 1185, 1186, 5, 78, 0, 0, 1186, 1187, 5, 83, 0, 0, 1187, 1188, 5, 69, 0, 0, 1188, 1189, 5, 82, 0, 0, 1189, 1190, 5, 84, 0, 0, 1190, 160, 1, 0, 0, 0, 1191, 1192, 5, 68, 0, 0, 1192, 1193, 5, 69, 0, 0, 1193, 1194, 5, 76, 0, 0, 1194, 1195, 5, 69, 0, 0, 1195, 1196, 5, 84, 0, 0, 1196, 1197, 5, 69, 0, 0, 1197, 162, 1, 0, 0, 0, 1198, 1199, 5, 82, 0, 0, 1199, 1200, 5, 69, 0, 0, 1200, 1201, 5, 77, 0, 0, 1201, 1202, 5, 79, 0, 0, 1202, 1203, 5, 86, 0, 0, 1203, 1204, 5, 69, 0, 0, 1204, 164, 1, 0, 0, 0, 1205, 1206, 5, 73, 0, 0, 1206, 1207, 5, 78, 0, 0, 1207, 1208, 5, 84, 0, 0, 1208, 1209, 5, 79, 0, 0, 1209, 166, 1, 0, 0, 0, 1210, 1211, 5, 68, 0, 0, 1211, 1212, 5, 69, 0, 0, 1212, 1213, 5, 83, 0, 0, 1213, 1214, 5, 67, 0, 0, 1214, 1215, 5, 82, 0, 0, 1215, 1216, 5, 73, 0, 0, 1216, 1217, 5, 66, 0, 0, 1217, 1218, 5, 69, 0, 0, 1218, 168, 1, 0, 0, 0, 1219, 1220, 5, 69, 0, 0, 1220, 1221, 5, 88, 0, 0, 1221, 1222, 5, 80, 0, 0, 1222, 1223, 5, 76, 0, 0, 1223, 1224, 5, 65, 0, 0, 1224, 1225, 5, 73, 0, 0, 1225, 1226, 5, 78, 0, 0, 1226, 170, 1, 0, 0, 0, 1227, 1228, 5, 80, 0, 0, 1228, 1229, 5, 76, 0, 0, 1229, 1230, 5, 65, 0, 0, 1230, 1231, 5, 78, 0, 0, 1231, 172, 1, 0, 0, 0, 1232, 1233, 5, 67, 0, 0, 1233, 1234, 5, 72, 0, 0, 1234, 1235, 5, 65, 0, 0, 1235, 1236, 5, 78, 0, 0, 1236, 1237, 5, 71, 0, 0, 1237, 1238, 5, 69, 0, 0, 1238, 1239, 5, 76, 0, 0, 1239, 1240, 5, 79, 0, 0, 1240, 1241, 5, 71, 0, 0, 1241, 1242, 5, 95, 0, 0, 1242, 1243, 5, 77, 0, 0, 1243, 1244, 5, 79, 0, 0, 1244, 1245, 5, 68, 0, 0, 1245, 1246, 5, 69, 0, 0, 1246, 174, 1, 0, 0, 0, 1247, 1248, 5, 74, 0, 0, 1248, 1249, 5, 83, 0, 0, 1249, 1250, 5, 79, 0, 0, 1250, 1251, 5, 78, 0, 0, 1251, 1252, 5, 95, 0, 0, 1252, 1253, 5, 69, 0, 0, 1253, 1254, 5, 88, 0, 0, 1254, 1255, 5, 69, 0, 0, 1255, 1256, 5, 67, 0, 0, 1256, 1257, 5, 85, 0, 0, 1257, 1258, 5, 84, 0, 0, 1258, 1259, 5, 73, 0, 0, 1259, 1260, 5, 79, 0, 0, 1260, 1261, 5, 78, 0, 0, 1261, 1262, 5, 95, 0, 0, 1262, 1263, 5, 80, 0, 0, 1263, 1264, 5, 76, 0, 0, 1264, 1265, 5, 65, 0, 0, 1265, 1266, 5, 78, 0, 0, 1266, 176, 1, 0, 0, 0, 1267, 1268, 5, 69, 0, 0, 1268, 1269, 5, 83, 0, 0, 1269, 1270, 5, 84, 0, 0, 1270, 1271, 5, 73, 0, 0, 1271, 1272, 5, 77, 0, 0, 1272, 1273, 5, 65, 0, 0, 1273, 1274, 5, 84, 0, 0, 1274, 1275, 5, 69, 0, 0, 1275, 1276, 5, 68, 0, 0, 1276, 1277, 5, 95, 0, 0, 1277, 1278, 5, 67, 0, 0, 1278, 1279, 5, 79, 0, 0, 1279, 1280, 5, 83, 0, 0, 1280, 1281, 5, 84, 0, 0, 1281, 178, 1, 0, 0, 0, 1282, 1283, 5, 70, 0, 0, 1283, 1284, 5, 79, 0, 0, 1284, 1285, 5, 82, 0, 0, 1285, 1286, 5, 77, 0, 0, 1286, 1287, 5, 65, 0, 0, 1287, 1288, 5, 84, 0, 0, 1288, 180, 1, 0, 0, 0, 1289, 1290, 5, 76, 0, 0, 1290, 1291, 5, 79, 0, 0, 1291, 1292, 5, 71, 0, 0, 1292, 1293, 5, 73, 0, 0, 1293, 1294, 5, 67, 0, 0, 1294, 1295, 5, 65, 0, 0, 1295, 1296, 5, 76, 0, 0, 1296, 182, 1, 0, 0, 0, 1297, 1298, 5, 67, 0, 0, 1298, 1299, 5, 79, 0, 0, 1299, 1300, 5, 68, 0, 0, 1300, 1301, 5, 69, 0, 0, 1301, 1302, 5, 71, 0, 0, 1302, 1303, 5, 69, 0, 0, 1303, 1304, 5, 78, 0, 0, 1304, 184, 1, 0, 0, 0, 1305, 1306, 5, 67, 0, 0, 1306, 1307, 5, 79, 0, 0, 1307, 1308, 5, 83, 0, 0, 1308, 1309, 5, 84, 0, 0, 1309, 186, 1, 0, 0, 0, 1310, 1311, 5, 67, 0, 0, 1311, 1312, 5, 65, 0, 0, 1312, 1313, 5, 83, 0, 0, 1313, 1314, 5, 84, 0, 0, 1314, 188, 1, 0, 0, 0, 1315, 1316, 5, 83, 0, 0, 1316, 1317, 5, 72, 0, 0, 1317, 1318, 5, 79, 0, 0, 1318, 1319, 5, 87, 0, 0, 1319, 190, 1, 0, 0, 0, 1320, 1321, 5, 84, 0, 0, 1321, 1322, 5, 65, 0, 0, 1322, 1323, 5, 66, 0, 0, 1323, 1324, 5, 76, 0, 0, 1324, 1325, 5, 69, 0, 0, 1325, 1326, 5, 83, 0, 0, 1326, 192, 1, 0, 0, 0, 1327, 1328, 5, 67, 0, 0, 1328, 1329, 5, 79, 0, 0, 1329, 1330, 5, 76, 0, 0, 1330, 1331, 5, 85, 0, 0, 1331, 1332, 5, 77, 0, 0, 1332, 1333, 5, 78, 0, 0, 1333, 1334, 5, 83, 0, 0, 1334, 194, 1, 0, 0, 0, 1335, 1336, 5, 67, 0, 0, 1336, 1337, 5, 79, 0, 0, 1337, 1338, 5, 76, 0, 0, 1338, 1339, 5, 85, 0, 0, 1339, 1340, 5, 77, 0, 0, 1340, 1341, 5, 78, 0, 0, 1341, 196, 1, 0, 0, 0, 1342, 1343, 5, 85, 0, 0, 1343, 1344, 5, 83, 0, 0, 1344, 1345, 5, 69, 0, 0, 1345, 198, 1, 0, 0, 0, 1346, 1347, 5, 77, 0, 0, 1347, 1348, 5, 79, 0, 0, 1348, 1349, 5, 68, 0, 0, 1349, 1350, 5, 85, 0, 0, 1350, 1351, 5, 76, 0, 0, 1351, 1352, 5, 69, 0, 0, 1352, 200, 1, 0, 0, 0, 1353, 1354, 5, 77, 0, 0, 1354, 1355, 5, 79, 0, 0, 1355, 1356, 5, 68, 0, 0, 1356, 1357, 5, 85, 0, 0, 1357, 1358, 5, 76, 0, 0, 1358, 1359, 5, 69, 0, 0, 1359, 1360, 5, 83, 0, 0, 1360, 202, 1, 0, 0, 0, 1361, 1362, 5, 80, 0, 0, 1362, 1363, 5, 65, 0, 0, 1363, 1364, 5, 82, 0, 0, 1364, 1365, 5, 84, 0, 0, 1365, 1366, 5, 73, 0, 0, 1366, 1367, 5, 84, 0, 0, 1367, 1368, 5, 73, 0, 0, 1368, 1369, 5, 79, 0, 0, 1369, 1370, 5, 78, 0, 0, 1370, 1371, 5, 83, 0, 0, 1371, 204, 1, 0, 0, 0, 1372, 1373, 5, 70, 0, 0, 1373, 1374, 5, 85, 0, 0, 1374, 1375, 5, 78, 0, 0, 1375, 1376, 5, 67, 0, 0, 1376, 1377, 5, 84, 0, 0, 1377, 1378, 5, 73, 0, 0, 1378, 1379, 5, 79, 0, 0, 1379, 1380, 5, 78, 0, 0, 1380, 1381, 5, 83, 0, 0, 1381, 206, 1, 0, 0, 0, 1382, 1383, 5, 68, 0, 0, 1383, 1384, 5, 82, 0, 0, 1384, 1385, 5, 79, 0, 0, 1385, 1386, 5, 80, 0, 0, 1386, 208, 1, 0, 0, 0, 1387, 1388, 5, 85, 0, 0, 1388, 1389, 5, 78, 0, 0, 1389, 1390, 5, 73, 0, 0, 1390, 1391, 5, 79, 0, 0, 1391, 1392, 5, 78, 0, 0, 1392, 210, 1, 0, 0, 0, 1393, 1394, 5, 69, 0, 0, 1394, 1395, 5, 88, 0, 0, 1395, 1396, 5, 67, 0, 0, 1396, 1397, 5, 69, 0, 0, 1397, 1398, 5, 80, 0, 0, 1398, 1399, 5, 84, 0, 0, 1399, 212, 1, 0, 0, 0, 1400, 1401, 5, 83, 0, 0, 1401, 1402, 5, 69, 0, 0, 1402, 1403, 5, 84, 0, 0, 1403, 1404, 5, 77, 0, 0, 1404, 1405, 5, 73, 0, 0, 1405, 1406, 5, 78, 0, 0, 1406, 1407, 5, 85, 0, 0, 1407, 1408, 5, 83, 0, 0, 1408, 214, 1, 0, 0, 0, 1409, 1410, 5, 73, 0, 0, 1410, 1411, 5, 78, 0, 0, 1411, 1412, 5, 84, 0, 0, 1412, 1413, 5, 69, 0, 0, 1413, 1414, 5, 82, 0, 0, 1414, 1415, 5, 83, 0, 0, 1415, 1416, 5, 69, 0, 0, 1416, 1417, 5, 67, 0, 0, 1417, 1418, 5, 84, 0, 0, 1418, 216, 1, 0, 0, 0, 1419, 1420, 5, 84, 0, 0, 1420, 1421, 5, 79, 0, 0, 1421, 218, 1, 0, 0, 0, 1422, 1423, 5, 84, 0, 0, 1423, 1424, 5, 65, 0, 0, 1424, 1425, 5, 66, 0, 0, 1425, 1426, 5, 76, 0, 0, 1426, 1427, 5, 69, 0, 0, 1427, 1428, 5, 83, 0, 0, 1428, 1429, 5, 65, 0, 0, 1429, 1430, 5, 77, 0, 0, 1430, 1431, 5, 80, 0, 0, 1431, 1432, 5, 76, 0, 0, 1432, 1433, 5, 69, 0, 0, 1433, 220, 1, 0, 0, 0, 1434, 1435, 5, 83, 0, 0, 1435, 1436, 5, 84, 0, 0, 1436, 1437, 5, 82, 0, 0, 1437, 1438, 5, 65, 0, 0, 1438, 1439, 5, 84, 0, 0, 1439, 1440, 5, 73, 0, 0, 1440, 1441, 5, 70, 0, 0, 1441, 1442, 5, 89, 0, 0, 1442, 222, 1, 0, 0, 0, 1443, 1444, 5, 65, 0, 0, 1444, 1445, 5, 76, 0, 0, 1445, 1446, 5, 84, 0, 0, 1446, 1447, 5, 69, 0, 0, 1447, 1448, 5, 82, 0, 0, 1448, 224, 1, 0, 0, 0, 1449, 1450, 5, 82, 0, 0, 1450, 1451, 5, 69, 0, 0, 1451, 1452, 5, 78, 0, 0, 1452, 1453, 5, 65, 0, 0, 1453, 1454, 5, 77, 0, 0, 1454, 1455, 5, 69, 0, 0, 1455, 226, 1, 0, 0, 0, 1456, 1457, 5, 83, 0, 0, 1457, 1458, 5, 84, 0, 0, 1458, 1459, 5, 82, 0, 0, 1459, 1460, 5, 85, 0, 0, 1460, 1461, 5, 67, 0, 0, 1461, 1462, 5, 84, 0, 0, 1462, 228, 1, 0, 0, 0, 1463, 1464, 5, 67, 0, 0, 1464, 1465, 5, 79, 0, 0, 1465, 1466, 5, 77, 0, 0, 1466, 1467, 5, 77, 0, 0, 1467, 1468, 5, 69, 0, 0, 1468, 1469, 5, 78, 0, 0, 1469, 1470, 5, 84, 0, 0, 1470, 230, 1, 0, 0, 0, 1471, 1472, 5, 83, 0, 0, 1472, 1473, 5, 69, 0, 0, 1473, 1474, 5, 84, 0, 0, 1474, 232, 1, 0, 0, 0, 1475, 1476, 5, 82, 0, 0, 1476, 1477, 5, 69, 0, 0, 1477, 1478, 5, 83, 0, 0, 1478, 1479, 5, 69, 0, 0, 1479, 1480, 5, 84, 0, 0, 1480, 234, 1, 0, 0, 0, 1481, 1482, 5, 68, 0, 0, 1482, 1483, 5, 65, 0, 0, 1483, 1484, 5, 84, 0, 0, 1484, 1485, 5, 65, 0, 0, 1485, 236, 1, 0, 0, 0, 1486, 1487, 5, 83, 0, 0, 1487, 1488, 5, 84, 0, 0, 1488, 1489, 5, 65, 0, 0, 1489, 1490, 5, 82, 0, 0, 1490, 1491, 5, 84, 0, 0, 1491, 238, 1, 0, 0, 0, 1492, 1493, 5, 84, 0, 0, 1493, 1494, 5, 82, 0, 0, 1494, 1495, 5, 65, 0, 0, 1495, 1496, 5, 78, 0, 0, 1496, 1497, 5, 83, 0, 0, 1497, 1498, 5, 65, 0, 0, 1498, 1499, 5, 67, 0, 0, 1499, 1500, 5, 84, 0, 0, 1500, 1501, 5, 73, 0, 0, 1501, 1502, 5, 79, 0, 0, 1502, 1503, 5, 78, 0, 0, 1503, 240, 1, 0, 0, 0, 1504, 1505, 5, 67, 0, 0, 1505, 1506, 5, 79, 0, 0, 1506, 1507, 5, 77, 0, 0, 1507, 1508, 5, 77, 0, 0, 1508, 1509, 5, 73, 0, 0, 1509, 1510, 5, 84, 0, 0, 1510, 242, 1, 0, 0, 0, 1511, 1512, 5, 82, 0, 0, 1512, 1513, 5, 79, 0, 0, 1513, 1514, 5, 76, 0, 0, 1514, 1515, 5, 76, 0, 0, 1515, 1516, 5, 66, 0, 0, 1516, 1517, 5, 65, 0, 0, 1517, 1518, 5, 67, 0, 0, 1518, 1519, 5, 75, 0, 0, 1519, 244, 1, 0, 0, 0, 1520, 1521, 5, 77, 0, 0, 1521, 1522, 5, 65, 0, 0, 1522, 1523, 5, 67, 0, 0, 1523, 1524, 5, 82, 0, 0, 1524, 1525, 5, 79, 0, 0, 1525, 246, 1, 0, 0, 0, 1526, 1527, 5, 73, 0, 0, 1527, 1528, 5, 71, 0, 0, 1528, 1529, 5, 78, 0, 0, 1529, 1530, 5, 79, 0, 0, 1530, 1531, 5, 82, 0, 0, 1531, 1532, 5, 69, 0, 0, 1532, 248, 1, 0, 0, 0, 1533, 1534, 5, 66, 0, 0, 1534, 1535, 5, 79, 0, 0, 1535, 1536, 5, 84, 0, 0, 1536, 1537, 5, 72, 0, 0, 1537, 250, 1, 0, 0, 0, 1538, 1539, 5, 76, 0, 0, 1539, 1540, 5, 69, 0, 0, 1540, 1541, 5, 65, 0, 0, 1541, 1542, 5, 68, 0, 0, 1542, 1543, 5, 73, 0, 0, 1543, 1544, 5, 78, 0, 0, 1544, 1545, 5, 71, 0, 0, 1545, 252, 1, 0, 0, 0, 1546, 1547, 5, 84, 0, 0, 1547, 1548, 5, 82, 0, 0, 1548, 1549, 5, 65, 0, 0, 1549, 1550, 5, 73, 0, 0, 1550, 1551, 5, 76, 0, 0, 1551, 1552, 5, 73, 0, 0, 1552, 1553, 5, 78, 0, 0, 1553, 1554, 5, 71, 0, 0, 1554, 254, 1, 0, 0, 0, 1555, 1556, 5, 73, 0, 0, 1556, 1557, 5, 70, 0, 0, 1557, 256, 1, 0, 0, 0, 1558, 1559, 5, 80, 0, 0, 1559, 1560, 5, 79, 0, 0, 1560, 1561, 5, 83, 0, 0, 1561, 1562, 5, 73, 0, 0, 1562, 1563, 5, 84, 0, 0, 1563, 1564, 5, 73, 0, 0, 1564, 1565, 5, 79, 0, 0, 1565, 1566, 5, 78, 0, 0, 1566, 258, 1, 0, 0, 0, 1567, 1568, 5, 69, 0, 0, 1568, 1569, 5, 88, 0, 0, 1569, 1570, 5, 84, 0, 0, 1570, 1571, 5, 82, 0, 0, 1571, 1572, 5, 65, 0, 0, 1572, 1573, 5, 67, 0, 0, 1573, 1574, 5, 84, 0, 0, 1574, 260, 1, 0, 0, 0, 1575, 1576, 5, 77, 0, 0, 1576, 1577, 5, 73, 0, 0, 1577, 1578, 5, 78, 0, 0, 1578, 1579, 5, 85, 0, 0, 1579, 1580, 5, 83, 0, 0, 1580, 262, 1, 0, 0, 0, 1581, 1582, 5, 68, 0, 0, 1582, 1583, 5, 73, 0, 0, 1583, 1584, 5, 86, 0, 0, 1584, 264, 1, 0, 0, 0, 1585, 1586, 5, 80, 0, 0, 1586, 1587, 5, 69, 0, 0, 1587, 1588, 5, 82, 0, 0, 1588, 1589, 5, 67, 0, 0, 1589, 1590, 5, 69, 0, 0, 1590, 1591, 5, 78, 0, 0, 1591, 1592, 5, 84, 0, 0, 1592, 1593, 5, 76, 0, 0, 1593, 1594, 5, 73, 0, 0, 1594, 1595, 5, 84, 0, 0, 1595, 266, 1, 0, 0, 0, 1596, 1597, 5, 66, 0, 0, 1597, 1598, 5, 85, 0, 0, 1598, 1599, 5, 67, 0, 0, 1599, 1600, 5, 75, 0, 0, 1600, 1601, 5, 69, 0, 0, 1601, 1602, 5, 84, 0, 0, 1602, 268, 1, 0, 0, 0, 1603, 1604, 5, 79, 0, 0, 1604, 1605, 5, 85, 0, 0, 1605, 1606, 5, 84, 0, 0, 1606, 270, 1, 0, 0, 0, 1607, 1608, 5, 79, 0, 0, 1608, 1609, 5, 70, 0, 0, 1609, 272, 1, 0, 0, 0, 1610, 1611, 5, 83, 0, 0, 1611, 1612, 5, 79, 0, 0, 1612, 1613, 5, 82, 0, 0, 1613, 1614, 5, 84, 0, 0, 1614, 274, 1, 0, 0, 0, 1615, 1616, 5, 67, 0, 0, 1616, 1617, 5, 76, 0, 0, 1617, 1618, 5, 85, 0, 0, 1618, 1619, 5, 83, 0, 0, 1619, 1620, 5, 84, 0, 0, 1620, 1621, 5, 69, 0, 0, 1621, 1622, 5, 82, 0, 0, 1622, 276, 1, 0, 0, 0, 1623, 1624, 5, 68, 0, 0, 1624, 1625, 5, 73, 0, 0, 1625, 1626, 5, 83, 0, 0, 1626, 1627, 5, 84, 0, 0, 1627, 1628, 5, 82, 0, 0, 1628, 1629, 5, 73, 0, 0, 1629, 1630, 5, 66, 0, 0, 1630, 1631, 5, 85, 0, 0, 1631, 1632, 5, 84, 0, 0, 1632, 1633, 5, 69, 0, 0, 1633, 278, 1, 0, 0, 0, 1634, 1635, 5, 79, 0, 0, 1635, 1636, 5, 86, 0, 0, 1636, 1637, 5, 69, 0, 0, 1637, 1638, 5, 82, 0, 0, 1638, 1639, 5, 87, 0, 0, 1639, 1640, 5, 82, 0, 0, 1640, 1641, 5, 73, 0, 0, 1641, 1642, 5, 84, 0, 0, 1642, 1643, 5, 69, 0, 0, 1643, 280, 1, 0, 0, 0, 1644, 1645, 5, 84, 0, 0, 1645, 1646, 5, 82, 0, 0, 1646, 1647, 5, 65, 0, 0, 1647, 1648, 5, 78, 0, 0, 1648, 1649, 5, 83, 0, 0, 1649, 1650, 5, 70, 0, 0, 1650, 1651, 5, 79, 0, 0, 1651, 1652, 5, 82, 0, 0, 1652, 1653, 5, 77, 0, 0, 1653, 282, 1, 0, 0, 0, 1654, 1655, 5, 82, 0, 0, 1655, 1656, 5, 69, 0, 0, 1656, 1657, 5, 68, 0, 0, 1657, 1658, 5, 85, 0, 0, 1658, 1659, 5, 67, 0, 0, 1659, 1660, 5, 69, 0, 0, 1660, 284, 1, 0, 0, 0, 1661, 1662, 5, 85, 0, 0, 1662, 1663, 5, 83, 0, 0, 1663, 1664, 5, 73, 0, 0, 1664, 1665, 5, 78, 0, 0, 1665, 1666, 5, 71, 0, 0, 1666, 286, 1, 0, 0, 0, 1667, 1668, 5, 83, 0, 0, 1668, 1669, 5, 69, 0, 0, 1669, 1670, 5, 82, 0, 0, 1670, 1671, 5, 68, 0, 0, 1671, 1672, 5, 69, 0, 0, 1672, 288, 1, 0, 0, 0, 1673, 1674, 5, 83, 0, 0, 1674, 1675, 5, 69, 0, 0, 1675, 1676, 5, 82, 0, 0, 1676, 1677, 5, 68, 0, 0, 1677, 1678, 5, 69, 0, 0, 1678, 1679, 5, 80, 0, 0, 1679, 1680, 5, 82, 0, 0, 1680, 1681, 5, 79, 0, 0, 1681, 1682, 5, 80, 0, 0, 1682, 1683, 5, 69, 0, 0, 1683, 1684, 5, 82, 0, 0, 1684, 1685, 5, 84, 0, 0, 1685, 1686, 5, 73, 0, 0, 1686, 1687, 5, 69, 0, 0, 1687, 1688, 5, 83, 0, 0, 1688, 290, 1, 0, 0, 0, 1689, 1690, 5, 82, 0, 0, 1690, 1691, 5, 69, 0, 0, 1691, 1692, 5, 67, 0, 0, 1692, 1693, 5, 79, 0, 0, 1693, 1694, 5, 82, 0, 0, 1694, 1695, 5, 68, 0, 0, 1695, 1696, 5, 82, 0, 0, 1696, 1697, 5, 69, 0, 0, 1697, 1698, 5, 65, 0, 0, 1698, 1699, 5, 68, 0, 0, 1699, 1700, 5, 69, 0, 0, 1700, 1701, 5, 82, 0, 0, 1701, 292, 1, 0, 0, 0, 1702, 1703, 5, 82, 0, 0, 1703, 1704, 5, 69, 0, 0, 1704, 1705, 5, 67, 0, 0, 1705, 1706, 5, 79, 0, 0, 1706, 1707, 5, 82, 0, 0, 1707, 1708, 5, 68, 0, 0, 1708, 1709, 5, 87, 0, 0, 1709, 1710, 5, 82, 0, 0, 1710, 1711, 5, 73, 0, 0, 1711, 1712, 5, 84, 0, 0, 1712, 1713, 5, 69, 0, 0, 1713, 1714, 5, 82, 0, 0, 1714, 294, 1, 0, 0, 0, 1715, 1716, 5, 68, 0, 0, 1716, 1717, 5, 69, 0, 0, 1717, 1718, 5, 76, 0, 0, 1718, 1719, 5, 73, 0, 0, 1719, 1720, 5, 77, 0, 0, 1720, 1721, 5, 73, 0, 0, 1721, 1722, 5, 84, 0, 0, 1722, 1723, 5, 69, 0, 0, 1723, 1724, 5, 68, 0, 0, 1724, 296, 1, 0, 0, 0, 1725, 1726, 5, 70, 0, 0, 1726, 1727, 5, 73, 0, 0, 1727, 1728, 5, 69, 0, 0, 1728, 1729, 5, 76, 0, 0, 1729, 1730, 5, 68, 0, 0, 1730, 1731, 5, 83, 0, 0, 1731, 298, 1, 0, 0, 0, 1732, 1733, 5, 84, 0, 0, 1733, 1734, 5, 69, 0, 0, 1734, 1735, 5, 82, 0, 0, 1735, 1736, 5, 77, 0, 0, 1736, 1737, 5, 73, 0, 0, 1737, 1738, 5, 78, 0, 0, 1738, 1739, 5, 65, 0, 0, 1739, 1740, 5, 84, 0, 0, 1740, 1741, 5, 69, 0, 0, 1741, 1742, 5, 68, 0, 0, 1742, 300, 1, 0, 0, 0, 1743, 1744, 5, 67, 0, 0, 1744, 1745, 5, 79, 0, 0, 1745, 1746, 5, 76, 0, 0, 1746, 1747, 5, 76, 0, 0, 1747, 1748, 5, 69, 0, 0, 1748, 1749, 5, 67, 0, 0, 1749, 1750, 5, 84, 0, 0, 1750, 1751, 5, 73, 0, 0, 1751, 1752, 5, 79, 0, 0, 1752, 1753, 5, 78, 0, 0, 1753, 302, 1, 0, 0, 0, 1754, 1755, 5, 73, 0, 0, 1755, 1756, 5, 84, 0, 0, 1756, 1757, 5, 69, 0, 0, 1757, 1758, 5, 77, 0, 0, 1758, 1759, 5, 83, 0, 0, 1759, 304, 1, 0, 0, 0, 1760, 1761, 5, 75, 0, 0, 1761, 1762, 5, 69, 0, 0, 1762, 1763, 5, 89, 0, 0, 1763, 1764, 5, 83, 0, 0, 1764, 306, 1, 0, 0, 0, 1765, 1766, 5, 69, 0, 0, 1766, 1767, 5, 83, 0, 0, 1767, 1768, 5, 67, 0, 0, 1768, 1769, 5, 65, 0, 0, 1769, 1770, 5, 80, 0, 0, 1770, 1771, 5, 69, 0, 0, 1771, 1772, 5, 68, 0, 0, 1772, 308, 1, 0, 0, 0, 1773, 1774, 5, 76, 0, 0, 1774, 1775, 5, 73, 0, 0, 1775, 1776, 5, 78, 0, 0, 1776, 1777, 5, 69, 0, 0, 1777, 1778, 5, 83, 0, 0, 1778, 310, 1, 0, 0, 0, 1779, 1780, 5, 83, 0, 0, 1780, 1781, 5, 69, 0, 0, 1781, 1782, 5, 80, 0, 0, 1782, 1783, 5, 65, 0, 0, 1783, 1784, 5, 82, 0, 0, 1784, 1785, 5, 65, 0, 0, 1785, 1786, 5, 84, 0, 0, 1786, 1787, 5, 69, 0, 0, 1787, 1788, 5, 68, 0, 0, 1788, 312, 1, 0, 0, 0, 1789, 1790, 5, 70, 0, 0, 1790, 1791, 5, 85, 0, 0, 1791, 1792, 5, 78, 0, 0, 1792, 1793, 5, 67, 0, 0, 1793, 1794, 5, 84, 0, 0, 1794, 1795, 5, 73, 0, 0, 1795, 1796, 5, 79, 0, 0, 1796, 1797, 5, 78, 0, 0, 1797, 314, 1, 0, 0, 0, 1798, 1799, 5, 69, 0, 0, 1799, 1800, 5, 88, 0, 0, 1800, 1801, 5, 84, 0, 0, 1801, 1802, 5, 69, 0, 0, 1802, 1803, 5, 78, 0, 0, 1803, 1804, 5, 68, 0, 0, 1804, 1805, 5, 69, 0, 0, 1805, 1806, 5, 68, 0, 0, 1806, 316, 1, 0, 0, 0, 1807, 1808, 5, 82, 0, 0, 1808, 1809, 5, 69, 0, 0, 1809, 1810, 5, 70, 0, 0, 1810, 1811, 5, 82, 0, 0, 1811, 1812, 5, 69, 0, 0, 1812, 1813, 5, 83, 0, 0, 1813, 1814, 5, 72, 0, 0, 1814, 318, 1, 0, 0, 0, 1815, 1816, 5, 67, 0, 0, 1816, 1817, 5, 76, 0, 0, 1817, 1818, 5, 69, 0, 0, 1818, 1819, 5, 65, 0, 0, 1819, 1820, 5, 82, 0, 0, 1820, 320, 1, 0, 0, 0, 1821, 1822, 5, 67, 0, 0, 1822, 1823, 5, 65, 0, 0, 1823, 1824, 5, 67, 0, 0, 1824, 1825, 5, 72, 0, 0, 1825, 1826, 5, 69, 0, 0, 1826, 322, 1, 0, 0, 0, 1827, 1828, 5, 85, 0, 0, 1828, 1829, 5, 78, 0, 0, 1829, 1830, 5, 67, 0, 0, 1830, 1831, 5, 65, 0, 0, 1831, 1832, 5, 67, 0, 0, 1832, 1833, 5, 72, 0, 0, 1833, 1834, 5, 69, 0, 0, 1834, 324, 1, 0, 0, 0, 1835, 1836, 5, 76, 0, 0, 1836, 1837, 5, 65, 0, 0, 1837, 1838, 5, 90, 0, 0, 1838, 1839, 5, 89, 0, 0, 1839, 326, 1, 0, 0, 0, 1840, 1841, 5, 70, 0, 0, 1841, 1842, 5, 79, 0, 0, 1842, 1843, 5, 82, 0, 0, 1843, 1844, 5, 77, 0, 0, 1844, 1845, 5, 65, 0, 0, 1845, 1846, 5, 84, 0, 0, 1846, 1847, 5, 84, 0, 0, 1847, 1848, 5, 69, 0, 0, 1848, 1849, 5, 68, 0, 0, 1849, 328, 1, 0, 0, 0, 1850, 1851, 5, 71, 0, 0, 1851, 1852, 5, 76, 0, 0, 1852, 1853, 5, 79, 0, 0, 1853, 1854, 5, 66, 0, 0, 1854, 1855, 5, 65, 0, 0, 1855, 1856, 5, 76, 0, 0, 1856, 330, 1, 0, 0, 0, 1857, 1858, 5, 84, 0, 0, 1858, 1859, 5, 69, 0, 0, 1859, 1860, 5, 77, 0, 0, 1860, 1861, 5, 80, 0, 0, 1861, 1862, 5, 79, 0, 0, 1862, 1863, 5, 82, 0, 0, 1863, 1864, 5, 65, 0, 0, 1864, 1865, 5, 82, 0, 0, 1865, 1866, 5, 89, 0, 0, 1866, 332, 1, 0, 0, 0, 1867, 1868, 5, 79, 0, 0, 1868, 1869, 5, 80, 0, 0, 1869, 1870, 5, 84, 0, 0, 1870, 1871, 5, 73, 0, 0, 1871, 1872, 5, 79, 0, 0, 1872, 1873, 5, 78, 0, 0, 1873, 1874, 5, 83, 0, 0, 1874, 334, 1, 0, 0, 0, 1875, 1876, 5, 85, 0, 0, 1876, 1877, 5, 78, 0, 0, 1877, 1878, 5, 83, 0, 0, 1878, 1879, 5, 69, 0, 0, 1879, 1880, 5, 84, 0, 0, 1880, 336, 1, 0, 0, 0, 1881, 1882, 5, 84, 0, 0, 1882, 1883, 5, 66, 0, 0, 1883, 1884, 5, 76, 0, 0, 1884, 1885, 5, 80, 0, 0, 1885, 1886, 5, 82, 0, 0, 1886, 1887, 5, 79, 0, 0, 1887, 1888, 5, 80, 0, 0, 1888, 1889, 5, 69, 0, 0, 1889, 1890, 5, 82, 0, 0, 1890, 1891, 5, 84, 0, 0, 1891, 1892, 5, 73, 0, 0, 1892, 1893, 5, 69, 0, 0, 1893, 1894, 5, 83, 0, 0, 1894, 338, 1, 0, 0, 0, 1895, 1896, 5, 68, 0, 0, 1896, 1897, 5, 66, 0, 0, 1897, 1898, 5, 80, 0, 0, 1898, 1899, 5, 82, 0, 0, 1899, 1900, 5, 79, 0, 0, 1900, 1901, 5, 80, 0, 0, 1901, 1902, 5, 69, 0, 0, 1902, 1903, 5, 82, 0, 0, 1903, 1904, 5, 84, 0, 0, 1904, 1905, 5, 73, 0, 0, 1905, 1906, 5, 69, 0, 0, 1906, 1907, 5, 83, 0, 0, 1907, 340, 1, 0, 0, 0, 1908, 1909, 5, 66, 0, 0, 1909, 1910, 5, 85, 0, 0, 1910, 1911, 5, 67, 0, 0, 1911, 1912, 5, 75, 0, 0, 1912, 1913, 5, 69, 0, 0, 1913, 1914, 5, 84, 0, 0, 1914, 1915, 5, 83, 0, 0, 1915, 342, 1, 0, 0, 0, 1916, 1917, 5, 83, 0, 0, 1917, 1918, 5, 75, 0, 0, 1918, 1919, 5, 69, 0, 0, 1919, 1920, 5, 87, 0, 0, 1920, 1921, 5, 69, 0, 0, 1921, 1922, 5, 68, 0, 0, 1922, 344, 1, 0, 0, 0, 1923, 1924, 5, 83, 0, 0, 1924, 1925, 5, 84, 0, 0, 1925, 1926, 5, 79, 0, 0, 1926, 1927, 5, 82, 0, 0, 1927, 1928, 5, 69, 0, 0, 1928, 1929, 5, 68, 0, 0, 1929, 346, 1, 0, 0, 0, 1930, 1931, 5, 68, 0, 0, 1931, 1932, 5, 73, 0, 0, 1932, 1933, 5, 82, 0, 0, 1933, 1934, 5, 69, 0, 0, 1934, 1935, 5, 67, 0, 0, 1935, 1936, 5, 84, 0, 0, 1936, 1937, 5, 79, 0, 0, 1937, 1938, 5, 82, 0, 0, 1938, 1939, 5, 73, 0, 0, 1939, 1940, 5, 69, 0, 0, 1940, 1941, 5, 83, 0, 0, 1941, 348, 1, 0, 0, 0, 1942, 1943, 5, 76, 0, 0, 1943, 1944, 5, 79, 0, 0, 1944, 1945, 5, 67, 0, 0, 1945, 1946, 5, 65, 0, 0, 1946, 1947, 5, 84, 0, 0, 1947, 1948, 5, 73, 0, 0, 1948, 1949, 5, 79, 0, 0, 1949, 1950, 5, 78, 0, 0, 1950, 350, 1, 0, 0, 0, 1951, 1952, 5, 69, 0, 0, 1952, 1953, 5, 88, 0, 0, 1953, 1954, 5, 67, 0, 0, 1954, 1955, 5, 72, 0, 0, 1955, 1956, 5, 65, 0, 0, 1956, 1957, 5, 78, 0, 0, 1957, 1958, 5, 71, 0, 0, 1958, 1959, 5, 69, 0, 0, 1959, 352, 1, 0, 0, 0, 1960, 1961, 5, 65, 0, 0, 1961, 1962, 5, 82, 0, 0, 1962, 1963, 5, 67, 0, 0, 1963, 1964, 5, 72, 0, 0, 1964, 1965, 5, 73, 0, 0, 1965, 1966, 5, 86, 0, 0, 1966, 1967, 5, 69, 0, 0, 1967, 354, 1, 0, 0, 0, 1968, 1969, 5, 85, 0, 0, 1969, 1970, 5, 78, 0, 0, 1970, 1971, 5, 65, 0, 0, 1971, 1972, 5, 82, 0, 0, 1972, 1973, 5, 67, 0, 0, 1973, 1974, 5, 72, 0, 0, 1974, 1975, 5, 73, 0, 0, 1975, 1976, 5, 86, 0, 0, 1976, 1977, 5, 69, 0, 0, 1977, 356, 1, 0, 0, 0, 1978, 1979, 5, 70, 0, 0, 1979, 1980, 5, 73, 0, 0, 1980, 1981, 5, 76, 0, 0, 1981, 1982, 5, 69, 0, 0, 1982, 1983, 5, 70, 0, 0, 1983, 1984, 5, 79, 0, 0, 1984, 1985, 5, 82, 0, 0, 1985, 1986, 5, 77, 0, 0, 1986, 1987, 5, 65, 0, 0, 1987, 1988, 5, 84, 0, 0, 1988, 358, 1, 0, 0, 0, 1989, 1990, 5, 84, 0, 0, 1990, 1991, 5, 79, 0, 0, 1991, 1992, 5, 85, 0, 0, 1992, 1993, 5, 67, 0, 0, 1993, 1994, 5, 72, 0, 0, 1994, 360, 1, 0, 0, 0, 1995, 1996, 5, 67, 0, 0, 1996, 1997, 5, 79, 0, 0, 1997, 1998, 5, 77, 0, 0, 1998, 1999, 5, 80, 0, 0, 1999, 2000, 5, 65, 0, 0, 2000, 2001, 5, 67, 0, 0, 2001, 2002, 5, 84, 0, 0, 2002, 362, 1, 0, 0, 0, 2003, 2004, 5, 67, 0, 0, 2004, 2005, 5, 79, 0, 0, 2005, 2006, 5, 78, 0, 0, 2006, 2007, 5, 67, 0, 0, 2007, 2008, 5, 65, 0, 0, 2008, 2009, 5, 84, 0, 0, 2009, 2010, 5, 69, 0, 0, 2010, 2011, 5, 78, 0, 0, 2011, 2012, 5, 65, 0, 0, 2012, 2013, 5, 84, 0, 0, 2013, 2014, 5, 69, 0, 0, 2014, 364, 1, 0, 0, 0, 2015, 2016, 5, 67, 0, 0, 2016, 2017, 5, 72, 0, 0, 2017, 2018, 5, 65, 0, 0, 2018, 2019, 5, 78, 0, 0, 2019, 2020, 5, 71, 0, 0, 2020, 2021, 5, 69, 0, 0, 2021, 366, 1, 0, 0, 0, 2022, 2023, 5, 67, 0, 0, 2023, 2024, 5, 65, 0, 0, 2024, 2025, 5, 83, 0, 0, 2025, 2026, 5, 67, 0, 0, 2026, 2027, 5, 65, 0, 0, 2027, 2028, 5, 68, 0, 0, 2028, 2029, 5, 69, 0, 0, 2029, 368, 1, 0, 0, 0, 2030, 2031, 5, 67, 0, 0, 2031, 2032, 5, 79, 0, 0, 2032, 2033, 5, 78, 0, 0, 2033, 2034, 5, 83, 0, 0, 2034, 2035, 5, 84, 0, 0, 2035, 2036, 5, 82, 0, 0, 2036, 2037, 5, 65, 0, 0, 2037, 2038, 5, 73, 0, 0, 2038, 2039, 5, 78, 0, 0, 2039, 2040, 5, 84, 0, 0, 2040, 370, 1, 0, 0, 0, 2041, 2042, 5, 82, 0, 0, 2042, 2043, 5, 69, 0, 0, 2043, 2044, 5, 83, 0, 0, 2044, 2045, 5, 84, 0, 0, 2045, 2046, 5, 82, 0, 0, 2046, 2047, 5, 73, 0, 0, 2047, 2048, 5, 67, 0, 0, 2048, 2049, 5, 84, 0, 0, 2049, 372, 1, 0, 0, 0, 2050, 2051, 5, 67, 0, 0, 2051, 2052, 5, 76, 0, 0, 2052, 2053, 5, 85, 0, 0, 2053, 2054, 5, 83, 0, 0, 2054, 2055, 5, 84, 0, 0, 2055, 2056, 5, 69, 0, 0, 2056, 2057, 5, 82, 0, 0, 2057, 2058, 5, 69, 0, 0, 2058, 2059, 5, 68, 0, 0, 2059, 374, 1, 0, 0, 0, 2060, 2061, 5, 83, 0, 0, 2061, 2062, 5, 79, 0, 0, 2062, 2063, 5, 82, 0, 0, 2063, 2064, 5, 84, 0, 0, 2064, 2065, 5, 69, 0, 0, 2065, 2066, 5, 68, 0, 0, 2066, 376, 1, 0, 0, 0, 2067, 2068, 5, 80, 0, 0, 2068, 2069, 5, 85, 0, 0, 2069, 2070, 5, 82, 0, 0, 2070, 2071, 5, 71, 0, 0, 2071, 2072, 5, 69, 0, 0, 2072, 378, 1, 0, 0, 0, 2073, 2074, 5, 73, 0, 0, 2074, 2075, 5, 78, 0, 0, 2075, 2076, 5, 80, 0, 0, 2076, 2077, 5, 85, 0, 0, 2077, 2078, 5, 84, 0, 0, 2078, 2079, 5, 70, 0, 0, 2079, 2080, 5, 79, 0, 0, 2080, 2081, 5, 82, 0, 0, 2081, 2082, 5, 77, 0, 0, 2082, 2083, 5, 65, 0, 0, 2083, 2084, 5, 84, 0, 0, 2084, 380, 1, 0, 0, 0, 2085, 2086, 5, 79, 0, 0, 2086, 2087, 5, 85, 0, 0, 2087, 2088, 5, 84, 0, 0, 2088, 2089, 5, 80, 0, 0, 2089, 2090, 5, 85, 0, 0, 2090, 2091, 5, 84, 0, 0, 2091, 2092, 5, 70, 0, 0, 2092, 2093, 5, 79, 0, 0, 2093, 2094, 5, 82, 0, 0, 2094, 2095, 5, 77, 0, 0, 2095, 2096, 5, 65, 0, 0, 2096, 2097, 5, 84, 0, 0, 2097, 382, 1, 0, 0, 0, 2098, 2099, 5, 68, 0, 0, 2099, 2100, 5, 65, 0, 0, 2100, 2101, 5, 84, 0, 0, 2101, 2102, 5, 65, 0, 0, 2102, 2103, 5, 66, 0, 0, 2103, 2104, 5, 65, 0, 0, 2104, 2105, 5, 83, 0, 0, 2105, 2106, 5, 69, 0, 0, 2106, 384, 1, 0, 0, 0, 2107, 2108, 5, 68, 0, 0, 2108, 2109, 5, 65, 0, 0, 2109, 2110, 5, 84, 0, 0, 2110, 2111, 5, 65, 0, 0, 2111, 2112, 5, 66, 0, 0, 2112, 2113, 5, 65, 0, 0, 2113, 2114, 5, 83, 0, 0, 2114, 2115, 5, 69, 0, 0, 2115, 2116, 5, 83, 0, 0, 2116, 386, 1, 0, 0, 0, 2117, 2118, 5, 68, 0, 0, 2118, 2119, 5, 70, 0, 0, 2119, 2120, 5, 83, 0, 0, 2120, 388, 1, 0, 0, 0, 2121, 2122, 5, 84, 0, 0, 2122, 2123, 5, 82, 0, 0, 2123, 2124, 5, 85, 0, 0, 2124, 2125, 5, 78, 0, 0, 2125, 2126, 5, 67, 0, 0, 2126, 2127, 5, 65, 0, 0, 2127, 2128, 5, 84, 0, 0, 2128, 2129, 5, 69, 0, 0, 2129, 390, 1, 0, 0, 0, 2130, 2131, 5, 65, 0, 0, 2131, 2132, 5, 78, 0, 0, 2132, 2133, 5, 65, 0, 0, 2133, 2134, 5, 76, 0, 0, 2134, 2135, 5, 89, 0, 0, 2135, 2136, 5, 90, 0, 0, 2136, 2137, 5, 69, 0, 0, 2137, 392, 1, 0, 0, 0, 2138, 2139, 5, 67, 0, 0, 2139, 2140, 5, 79, 0, 0, 2140, 2141, 5, 77, 0, 0, 2141, 2142, 5, 80, 0, 0, 2142, 2143, 5, 85, 0, 0, 2143, 2144, 5, 84, 0, 0, 2144, 2145, 5, 69, 0, 0, 2145, 394, 1, 0, 0, 0, 2146, 2147, 5, 76, 0, 0, 2147, 2148, 5, 73, 0, 0, 2148, 2149, 5, 83, 0, 0, 2149, 2150, 5, 84, 0, 0, 2150, 396, 1, 0, 0, 0, 2151, 2152, 5, 83, 0, 0, 2152, 2153, 5, 84, 0, 0, 2153, 2154, 5, 65, 0, 0, 2154, 2155, 5, 84, 0, 0, 2155, 2156, 5, 73, 0, 0, 2156, 2157, 5, 83, 0, 0, 2157, 2158, 5, 84, 0, 0, 2158, 2159, 5, 73, 0, 0, 2159, 2160, 5, 67, 0, 0, 2160, 2161, 5, 83, 0, 0, 2161, 398, 1, 0, 0, 0, 2162, 2163, 5, 80, 0, 0, 2163, 2164, 5, 65, 0, 0, 2164, 2165, 5, 82, 0, 0, 2165, 2166, 5, 84, 0, 0, 2166, 2167, 5, 73, 0, 0, 2167, 2168, 5, 84, 0, 0, 2168, 2169, 5, 73, 0, 0, 2169, 2170, 5, 79, 0, 0, 2170, 2171, 5, 78, 0, 0, 2171, 2172, 5, 69, 0, 0, 2172, 2173, 5, 68, 0, 0, 2173, 400, 1, 0, 0, 0, 2174, 2175, 5, 69, 0, 0, 2175, 2176, 5, 88, 0, 0, 2176, 2177, 5, 84, 0, 0, 2177, 2178, 5, 69, 0, 0, 2178, 2179, 5, 82, 0, 0, 2179, 2180, 5, 78, 0, 0, 2180, 2181, 5, 65, 0, 0, 2181, 2182, 5, 76, 0, 0, 2182, 402, 1, 0, 0, 0, 2183, 2184, 5, 68, 0, 0, 2184, 2185, 5, 69, 0, 0, 2185, 2186, 5, 70, 0, 0, 2186, 2187, 5, 73, 0, 0, 2187, 2188, 5, 78, 0, 0, 2188, 2189, 5, 69, 0, 0, 2189, 2190, 5, 68, 0, 0, 2190, 404, 1, 0, 0, 0, 2191, 2192, 5, 82, 0, 0, 2192, 2193, 5, 69, 0, 0, 2193, 2194, 5, 86, 0, 0, 2194, 2195, 5, 79, 0, 0, 2195, 2196, 5, 75, 0, 0, 2196, 2197, 5, 69, 0, 0, 2197, 406, 1, 0, 0, 0, 2198, 2199, 5, 71, 0, 0, 2199, 2200, 5, 82, 0, 0, 2200, 2201, 5, 65, 0, 0, 2201, 2202, 5, 78, 0, 0, 2202, 2203, 5, 84, 0, 0, 2203, 408, 1, 0, 0, 0, 2204, 2205, 5, 76, 0, 0, 2205, 2206, 5, 79, 0, 0, 2206, 2207, 5, 67, 0, 0, 2207, 2208, 5, 75, 0, 0, 2208, 410, 1, 0, 0, 0, 2209, 2210, 5, 85, 0, 0, 2210, 2211, 5, 78, 0, 0, 2211, 2212, 5, 76, 0, 0, 2212, 2213, 5, 79, 0, 0, 2213, 2214, 5, 67, 0, 0, 2214, 2215, 5, 75, 0, 0, 2215, 412, 1, 0, 0, 0, 2216, 2217, 5, 77, 0, 0, 2217, 2218, 5, 83, 0, 0, 2218, 2219, 5, 67, 0, 0, 2219, 2220, 5, 75, 0, 0, 2220, 414, 1, 0, 0, 0, 2221, 2222, 5, 82, 0, 0, 2222, 2223, 5, 69, 0, 0, 2223, 2224, 5, 80, 0, 0, 2224, 2225, 5, 65, 0, 0, 2225, 2226, 5, 73, 0, 0, 2226, 2227, 5, 82, 0, 0, 2227, 416, 1, 0, 0, 0, 2228, 2229, 5, 82, 0, 0, 2229, 2230, 5, 69, 0, 0, 2230, 2231, 5, 67, 0, 0, 2231, 2232, 5, 79, 0, 0, 2232, 2233, 5, 86, 0, 0, 2233, 2234, 5, 69, 0, 0, 2234, 2235, 5, 82, 0, 0, 2235, 418, 1, 0, 0, 0, 2236, 2237, 5, 69, 0, 0, 2237, 2238, 5, 88, 0, 0, 2238, 2239, 5, 80, 0, 0, 2239, 2240, 5, 79, 0, 0, 2240, 2241, 5, 82, 0, 0, 2241, 2242, 5, 84, 0, 0, 2242, 420, 1, 0, 0, 0, 2243, 2244, 5, 73, 0, 0, 2244, 2245, 5, 77, 0, 0, 2245, 2246, 5, 80, 0, 0, 2246, 2247, 5, 79, 0, 0, 2247, 2248, 5, 82, 0, 0, 2248, 2249, 5, 84, 0, 0, 2249, 422, 1, 0, 0, 0, 2250, 2251, 5, 76, 0, 0, 2251, 2252, 5, 79, 0, 0, 2252, 2253, 5, 65, 0, 0, 2253, 2254, 5, 68, 0, 0, 2254, 424, 1, 0, 0, 0, 2255, 2256, 5, 85, 0, 0, 2256, 2257, 5, 78, 0, 0, 2257, 2258, 5, 76, 0, 0, 2258, 2259, 5, 79, 0, 0, 2259, 2260, 5, 65, 0, 0, 2260, 2261, 5, 68, 0, 0, 2261, 426, 1, 0, 0, 0, 2262, 2263, 5, 82, 0, 0, 2263, 2264, 5, 79, 0, 0, 2264, 2265, 5, 76, 0, 0, 2265, 2266, 5, 69, 0, 0, 2266, 428, 1, 0, 0, 0, 2267, 2268, 5, 82, 0, 0, 2268, 2269, 5, 79, 0, 0, 2269, 2270, 5, 76, 0, 0, 2270, 2271, 5, 69, 0, 0, 2271, 2272, 5, 83, 0, 0, 2272, 430, 1, 0, 0, 0, 2273, 2274, 5, 67, 0, 0, 2274, 2275, 5, 79, 0, 0, 2275, 2276, 5, 77, 0, 0, 2276, 2277, 5, 80, 0, 0, 2277, 2278, 5, 65, 0, 0, 2278, 2279, 5, 67, 0, 0, 2279, 2280, 5, 84, 0, 0, 2280, 2281, 5, 73, 0, 0, 2281, 2282, 5, 79, 0, 0, 2282, 2283, 5, 78, 0, 0, 2283, 2284, 5, 83, 0, 0, 2284, 432, 1, 0, 0, 0, 2285, 2286, 5, 80, 0, 0, 2286, 2287, 5, 82, 0, 0, 2287, 2288, 5, 73, 0, 0, 2288, 2289, 5, 78, 0, 0, 2289, 2290, 5, 67, 0, 0, 2290, 2291, 5, 73, 0, 0, 2291, 2292, 5, 80, 0, 0, 2292, 2293, 5, 65, 0, 0, 2293, 2294, 5, 76, 0, 0, 2294, 2295, 5, 83, 0, 0, 2295, 434, 1, 0, 0, 0, 2296, 2297, 5, 84, 0, 0, 2297, 2298, 5, 82, 0, 0, 2298, 2299, 5, 65, 0, 0, 2299, 2300, 5, 78, 0, 0, 2300, 2301, 5, 83, 0, 0, 2301, 2302, 5, 65, 0, 0, 2302, 2303, 5, 67, 0, 0, 2303, 2304, 5, 84, 0, 0, 2304, 2305, 5, 73, 0, 0, 2305, 2306, 5, 79, 0, 0, 2306, 2307, 5, 78, 0, 0, 2307, 2308, 5, 83, 0, 0, 2308, 436, 1, 0, 0, 0, 2309, 2310, 5, 73, 0, 0, 2310, 2311, 5, 78, 0, 0, 2311, 2312, 5, 68, 0, 0, 2312, 2313, 5, 69, 0, 0, 2313, 2314, 5, 88, 0, 0, 2314, 438, 1, 0, 0, 0, 2315, 2316, 5, 73, 0, 0, 2316, 2317, 5, 78, 0, 0, 2317, 2318, 5, 68, 0, 0, 2318, 2319, 5, 69, 0, 0, 2319, 2320, 5, 88, 0, 0, 2320, 2321, 5, 69, 0, 0, 2321, 2322, 5, 83, 0, 0, 2322, 440, 1, 0, 0, 0, 2323, 2324, 5, 76, 0, 0, 2324, 2325, 5, 79, 0, 0, 2325, 2326, 5, 67, 0, 0, 2326, 2327, 5, 75, 0, 0, 2327, 2328, 5, 83, 0, 0, 2328, 442, 1, 0, 0, 0, 2329, 2330, 5, 79, 0, 0, 2330, 2331, 5, 80, 0, 0, 2331, 2332, 5, 84, 0, 0, 2332, 2333, 5, 73, 0, 0, 2333, 2334, 5, 79, 0, 0, 2334, 2335, 5, 78, 0, 0, 2335, 444, 1, 0, 0, 0, 2336, 2337, 5, 65, 0, 0, 2337, 2338, 5, 78, 0, 0, 2338, 2339, 5, 84, 0, 0, 2339, 2340, 5, 73, 0, 0, 2340, 446, 1, 0, 0, 0, 2341, 2342, 5, 76, 0, 0, 2342, 2343, 5, 79, 0, 0, 2343, 2344, 5, 67, 0, 0, 2344, 2345, 5, 65, 0, 0, 2345, 2346, 5, 76, 0, 0, 2346, 448, 1, 0, 0, 0, 2347, 2348, 5, 73, 0, 0, 2348, 2349, 5, 78, 0, 0, 2349, 2350, 5, 80, 0, 0, 2350, 2351, 5, 65, 0, 0, 2351, 2352, 5, 84, 0, 0, 2352, 2353, 5, 72, 0, 0, 2353, 450, 1, 0, 0, 0, 2354, 2355, 5, 87, 0, 0, 2355, 2356, 5, 65, 0, 0, 2356, 2357, 5, 84, 0, 0, 2357, 2358, 5, 69, 0, 0, 2358, 2359, 5, 82, 0, 0, 2359, 2360, 5, 77, 0, 0, 2360, 2361, 5, 65, 0, 0, 2361, 2362, 5, 82, 0, 0, 2362, 2363, 5, 75, 0, 0, 2363, 452, 1, 0, 0, 0, 2364, 2365, 5, 85, 0, 0, 2365, 2366, 5, 78, 0, 0, 2366, 2367, 5, 78, 0, 0, 2367, 2368, 5, 69, 0, 0, 2368, 2369, 5, 83, 0, 0, 2369, 2370, 5, 84, 0, 0, 2370, 454, 1, 0, 0, 0, 2371, 2372, 5, 77, 0, 0, 2372, 2373, 5, 65, 0, 0, 2373, 2374, 5, 84, 0, 0, 2374, 2375, 5, 67, 0, 0, 2375, 2376, 5, 72, 0, 0, 2376, 456, 1, 0, 0, 0, 2377, 2378, 5, 78, 0, 0, 2378, 2379, 5, 69, 0, 0, 2379, 2380, 5, 88, 0, 0, 2380, 2381, 5, 84, 0, 0, 2381, 458, 1, 0, 0, 0, 2382, 2383, 5, 87, 0, 0, 2383, 2384, 5, 73, 0, 0, 2384, 2385, 5, 84, 0, 0, 2385, 2386, 5, 72, 0, 0, 2386, 2387, 5, 73, 0, 0, 2387, 2388, 5, 78, 0, 0, 2388, 460, 1, 0, 0, 0, 2389, 2390, 5, 87, 0, 0, 2390, 2391, 5, 83, 0, 0, 2391, 462, 1, 0, 0, 0, 2392, 2393, 5, 83, 0, 0, 2393, 2394, 5, 89, 0, 0, 2394, 2395, 5, 83, 0, 0, 2395, 2396, 5, 84, 0, 0, 2396, 2397, 5, 69, 0, 0, 2397, 2398, 5, 77, 0, 0, 2398, 464, 1, 0, 0, 0, 2399, 2400, 5, 73, 0, 0, 2400, 2401, 5, 78, 0, 0, 2401, 2402, 5, 67, 0, 0, 2402, 2403, 5, 76, 0, 0, 2403, 2404, 5, 85, 0, 0, 2404, 2405, 5, 68, 0, 0, 2405, 2406, 5, 73, 0, 0, 2406, 2407, 5, 78, 0, 0, 2407, 2408, 5, 71, 0, 0, 2408, 466, 1, 0, 0, 0, 2409, 2410, 5, 69, 0, 0, 2410, 2411, 5, 88, 0, 0, 2411, 2412, 5, 67, 0, 0, 2412, 2413, 5, 76, 0, 0, 2413, 2414, 5, 85, 0, 0, 2414, 2415, 5, 68, 0, 0, 2415, 2416, 5, 73, 0, 0, 2416, 2417, 5, 78, 0, 0, 2417, 2418, 5, 71, 0, 0, 2418, 468, 1, 0, 0, 0, 2419, 2420, 5, 79, 0, 0, 2420, 2421, 5, 86, 0, 0, 2421, 2422, 5, 69, 0, 0, 2422, 2423, 5, 82, 0, 0, 2423, 2424, 5, 87, 0, 0, 2424, 2425, 5, 82, 0, 0, 2425, 2426, 5, 73, 0, 0, 2426, 2427, 5, 84, 0, 0, 2427, 2428, 5, 73, 0, 0, 2428, 2429, 5, 78, 0, 0, 2429, 2430, 5, 71, 0, 0, 2430, 470, 1, 0, 0, 0, 2431, 2432, 5, 67, 0, 0, 2432, 2433, 5, 79, 0, 0, 2433, 2434, 5, 78, 0, 0, 2434, 2435, 5, 83, 0, 0, 2435, 2436, 5, 84, 0, 0, 2436, 2437, 5, 82, 0, 0, 2437, 2438, 5, 65, 0, 0, 2438, 2439, 5, 73, 0, 0, 2439, 2440, 5, 78, 0, 0, 2440, 2441, 5, 84, 0, 0, 2441, 2442, 5, 83, 0, 0, 2442, 472, 1, 0, 0, 0, 2443, 2444, 5, 71, 0, 0, 2444, 2445, 5, 69, 0, 0, 2445, 2446, 5, 78, 0, 0, 2446, 2447, 5, 69, 0, 0, 2447, 2448, 5, 82, 0, 0, 2448, 2449, 5, 65, 0, 0, 2449, 2450, 5, 84, 0, 0, 2450, 2451, 5, 69, 0, 0, 2451, 2452, 5, 68, 0, 0, 2452, 474, 1, 0, 0, 0, 2453, 2454, 5, 87, 0, 0, 2454, 2455, 5, 65, 0, 0, 2455, 2456, 5, 84, 0, 0, 2456, 2457, 5, 69, 0, 0, 2457, 2458, 5, 82, 0, 0, 2458, 2459, 5, 77, 0, 0, 2459, 2460, 5, 65, 0, 0, 2460, 2461, 5, 82, 0, 0, 2461, 2462, 5, 75, 0, 0, 2462, 2463, 5, 83, 0, 0, 2463, 476, 1, 0, 0, 0, 2464, 2465, 5, 67, 0, 0, 2465, 2466, 5, 65, 0, 0, 2466, 2467, 5, 84, 0, 0, 2467, 2468, 5, 65, 0, 0, 2468, 2469, 5, 76, 0, 0, 2469, 2470, 5, 79, 0, 0, 2470, 2471, 5, 71, 0, 0, 2471, 478, 1, 0, 0, 0, 2472, 2473, 5, 76, 0, 0, 2473, 2474, 5, 65, 0, 0, 2474, 2475, 5, 78, 0, 0, 2475, 2476, 5, 71, 0, 0, 2476, 2477, 5, 85, 0, 0, 2477, 2478, 5, 65, 0, 0, 2478, 2479, 5, 71, 0, 0, 2479, 2480, 5, 69, 0, 0, 2480, 480, 1, 0, 0, 0, 2481, 2482, 5, 74, 0, 0, 2482, 2483, 5, 65, 0, 0, 2483, 2484, 5, 86, 0, 0, 2484, 2485, 5, 65, 0, 0, 2485, 482, 1, 0, 0, 0, 2486, 2487, 5, 83, 0, 0, 2487, 2488, 5, 67, 0, 0, 2488, 2489, 5, 65, 0, 0, 2489, 2490, 5, 76, 0, 0, 2490, 2491, 5, 65, 0, 0, 2491, 484, 1, 0, 0, 0, 2492, 2493, 5, 80, 0, 0, 2493, 2494, 5, 89, 0, 0, 2494, 2495, 5, 84, 0, 0, 2495, 2496, 5, 72, 0, 0, 2496, 2497, 5, 79, 0, 0, 2497, 2498, 5, 78, 0, 0, 2498, 486, 1, 0, 0, 0, 2499, 2500, 5, 74, 0, 0, 2500, 2501, 5, 65, 0, 0, 2501, 2502, 5, 82, 0, 0, 2502, 488, 1, 0, 0, 0, 2503, 2504, 5, 70, 0, 0, 2504, 2505, 5, 73, 0, 0, 2505, 2506, 5, 76, 0, 0, 2506, 2507, 5, 69, 0, 0, 2507, 490, 1, 0, 0, 0, 2508, 2509, 5, 80, 0, 0, 2509, 2510, 5, 89, 0, 0, 2510, 2511, 5, 84, 0, 0, 2511, 2512, 5, 72, 0, 0, 2512, 2513, 5, 79, 0, 0, 2513, 2514, 5, 78, 0, 0, 2514, 2515, 5, 95, 0, 0, 2515, 2516, 5, 70, 0, 0, 2516, 2517, 5, 73, 0, 0, 2517, 2518, 5, 76, 0, 0, 2518, 2519, 5, 69, 0, 0, 2519, 2520, 5, 83, 0, 0, 2520, 492, 1, 0, 0, 0, 2521, 2522, 5, 80, 0, 0, 2522, 2523, 5, 89, 0, 0, 2523, 2524, 5, 84, 0, 0, 2524, 2525, 5, 72, 0, 0, 2525, 2526, 5, 79, 0, 0, 2526, 2527, 5, 78, 0, 0, 2527, 2528, 5, 95, 0, 0, 2528, 2529, 5, 82, 0, 0, 2529, 2530, 5, 69, 0, 0, 2530, 2531, 5, 81, 0, 0, 2531, 2532, 5, 85, 0, 0, 2532, 2533, 5, 73, 0, 0, 2533, 2534, 5, 82, 0, 0, 2534, 2535, 5, 69, 0, 0, 2535, 2536, 5, 77, 0, 0, 2536, 2537, 5, 69, 0, 0, 2537, 2538, 5, 78, 0, 0, 2538, 2539, 5, 84, 0, 0, 2539, 2540, 5, 83, 0, 0, 2540, 494, 1, 0, 0, 0, 2541, 2542, 5, 80, 0, 0, 2542, 2543, 5, 89, 0, 0, 2543, 2544, 5, 84, 0, 0, 2544, 2545, 5, 72, 0, 0, 2545, 2546, 5, 79, 0, 0, 2546, 2547, 5, 78, 0, 0, 2547, 2548, 5, 95, 0, 0, 2548, 2549, 5, 68, 0, 0, 2549, 2550, 5, 69, 0, 0, 2550, 2551, 5, 80, 0, 0, 2551, 2552, 5, 69, 0, 0, 2552, 2553, 5, 78, 0, 0, 2553, 2554, 5, 68, 0, 0, 2554, 2555, 5, 69, 0, 0, 2555, 2556, 5, 78, 0, 0, 2556, 2557, 5, 67, 0, 0, 2557, 2558, 5, 73, 0, 0, 2558, 2559, 5, 69, 0, 0, 2559, 2560, 5, 83, 0, 0, 2560, 496, 1, 0, 0, 0, 2561, 2562, 5, 80, 0, 0, 2562, 2563, 5, 89, 0, 0, 2563, 2564, 5, 84, 0, 0, 2564, 2565, 5, 72, 0, 0, 2565, 2566, 5, 79, 0, 0, 2566, 2567, 5, 78, 0, 0, 2567, 2568, 5, 95, 0, 0, 2568, 2569, 5, 74, 0, 0, 2569, 2570, 5, 65, 0, 0, 2570, 2571, 5, 82, 0, 0, 2571, 498, 1, 0, 0, 0, 2572, 2573, 5, 80, 0, 0, 2573, 2574, 5, 89, 0, 0, 2574, 2575, 5, 84, 0, 0, 2575, 2576, 5, 72, 0, 0, 2576, 2577, 5, 79, 0, 0, 2577, 2578, 5, 78, 0, 0, 2578, 2579, 5, 95, 0, 0, 2579, 2580, 5, 65, 0, 0, 2580, 2581, 5, 82, 0, 0, 2581, 2582, 5, 67, 0, 0, 2582, 2583, 5, 72, 0, 0, 2583, 2584, 5, 73, 0, 0, 2584, 2585, 5, 86, 0, 0, 2585, 2586, 5, 69, 0, 0, 2586, 2587, 5, 83, 0, 0, 2587, 500, 1, 0, 0, 0, 2588, 2589, 5, 80, 0, 0, 2589, 2590, 5, 89, 0, 0, 2590, 2591, 5, 84, 0, 0, 2591, 2592, 5, 72, 0, 0, 2592, 2593, 5, 79, 0, 0, 2593, 2594, 5, 78, 0, 0, 2594, 2595, 5, 95, 0, 0, 2595, 2596, 5, 80, 0, 0, 2596, 2597, 5, 65, 0, 0, 2597, 2598, 5, 82, 0, 0, 2598, 2599, 5, 65, 0, 0, 2599, 2600, 5, 77, 0, 0, 2600, 2601, 5, 69, 0, 0, 2601, 2602, 5, 84, 0, 0, 2602, 2603, 5, 69, 0, 0, 2603, 2604, 5, 82, 0, 0, 2604, 502, 1, 0, 0, 0, 2605, 2606, 5, 69, 0, 0, 2606, 2607, 5, 78, 0, 0, 2607, 2608, 5, 71, 0, 0, 2608, 2609, 5, 73, 0, 0, 2609, 2610, 5, 78, 0, 0, 2610, 2611, 5, 69, 0, 0, 2611, 504, 1, 0, 0, 0, 2612, 2613, 5, 67, 0, 0, 2613, 2614, 5, 65, 0, 0, 2614, 2615, 5, 84, 0, 0, 2615, 2616, 5, 65, 0, 0, 2616, 2617, 5, 76, 0, 0, 2617, 2618, 5, 79, 0, 0, 2618, 2619, 5, 71, 0, 0, 2619, 2620, 5, 83, 0, 0, 2620, 506, 1, 0, 0, 0, 2621, 2622, 5, 86, 0, 0, 2622, 2623, 5, 73, 0, 0, 2623, 2624, 5, 69, 0, 0, 2624, 2625, 5, 87, 0, 0, 2625, 2626, 5, 83, 0, 0, 2626, 508, 1, 0, 0, 0, 2627, 2628, 5, 74, 0, 0, 2628, 2629, 5, 65, 0, 0, 2629, 2630, 5, 82, 0, 0, 2630, 2631, 5, 83, 0, 0, 2631, 510, 1, 0, 0, 0, 2632, 2633, 5, 80, 0, 0, 2633, 2634, 5, 82, 0, 0, 2634, 2635, 5, 73, 0, 0, 2635, 2636, 5, 77, 0, 0, 2636, 2637, 5, 65, 0, 0, 2637, 2638, 5, 82, 0, 0, 2638, 2639, 5, 89, 0, 0, 2639, 512, 1, 0, 0, 0, 2640, 2641, 5, 85, 0, 0, 2641, 2642, 5, 78, 0, 0, 2642, 2643, 5, 73, 0, 0, 2643, 2644, 5, 81, 0, 0, 2644, 2645, 5, 85, 0, 0, 2645, 2646, 5, 69, 0, 0, 2646, 514, 1, 0, 0, 0, 2647, 2648, 5, 75, 0, 0, 2648, 2649, 5, 69, 0, 0, 2649, 2650, 5, 89, 0, 0, 2650, 516, 1, 0, 0, 0, 2651, 2652, 5, 80, 0, 0, 2652, 2653, 5, 69, 0, 0, 2653, 2654, 5, 82, 0, 0, 2654, 2655, 5, 73, 0, 0, 2655, 2656, 5, 79, 0, 0, 2656, 2657, 5, 68, 0, 0, 2657, 518, 1, 0, 0, 0, 2658, 2659, 5, 83, 0, 0, 2659, 2660, 5, 89, 0, 0, 2660, 2661, 5, 83, 0, 0, 2661, 2662, 5, 84, 0, 0, 2662, 2663, 5, 69, 0, 0, 2663, 2664, 5, 77, 0, 0, 2664, 2665, 5, 95, 0, 0, 2665, 2666, 5, 84, 0, 0, 2666, 2667, 5, 73, 0, 0, 2667, 2668, 5, 77, 0, 0, 2668, 2669, 5, 69, 0, 0, 2669, 520, 1, 0, 0, 0, 2670, 2671, 5, 69, 0, 0, 2671, 2672, 5, 78, 0, 0, 2672, 2673, 5, 70, 0, 0, 2673, 2674, 5, 79, 0, 0, 2674, 2675, 5, 82, 0, 0, 2675, 2676, 5, 67, 0, 0, 2676, 2677, 5, 69, 0, 0, 2677, 2678, 5, 68, 0, 0, 2678, 522, 1, 0, 0, 0, 2679, 2680, 5, 77, 0, 0, 2680, 2681, 5, 69, 0, 0, 2681, 2682, 5, 84, 0, 0, 2682, 2683, 5, 65, 0, 0, 2683, 2684, 5, 68, 0, 0, 2684, 2685, 5, 65, 0, 0, 2685, 2686, 5, 84, 0, 0, 2686, 2687, 5, 65, 0, 0, 2687, 524, 1, 0, 0, 0, 2688, 2689, 5, 86, 0, 0, 2689, 2690, 5, 73, 0, 0, 2690, 2691, 5, 82, 0, 0, 2691, 2692, 5, 84, 0, 0, 2692, 2693, 5, 85, 0, 0, 2693, 2694, 5, 65, 0, 0, 2694, 2695, 5, 76, 0, 0, 2695, 526, 1, 0, 0, 0, 2696, 2697, 5, 90, 0, 0, 2697, 2698, 5, 79, 0, 0, 2698, 2699, 5, 78, 0, 0, 2699, 2700, 5, 69, 0, 0, 2700, 528, 1, 0, 0, 0, 2701, 2702, 5, 83, 0, 0, 2702, 2703, 5, 84, 0, 0, 2703, 2704, 5, 82, 0, 0, 2704, 2705, 5, 73, 0, 0, 2705, 2706, 5, 78, 0, 0, 2706, 2707, 5, 71, 0, 0, 2707, 530, 1, 0, 0, 0, 2708, 2709, 5, 65, 0, 0, 2709, 2710, 5, 82, 0, 0, 2710, 2711, 5, 82, 0, 0, 2711, 2712, 5, 65, 0, 0, 2712, 2713, 5, 89, 0, 0, 2713, 532, 1, 0, 0, 0, 2714, 2715, 5, 77, 0, 0, 2715, 2716, 5, 65, 0, 0, 2716, 2717, 5, 80, 0, 0, 2717, 534, 1, 0, 0, 0, 2718, 2719, 5, 67, 0, 0, 2719, 2720, 5, 72, 0, 0, 2720, 2721, 5, 65, 0, 0, 2721, 2722, 5, 82, 0, 0, 2722, 536, 1, 0, 0, 0, 2723, 2724, 5, 86, 0, 0, 2724, 2725, 5, 65, 0, 0, 2725, 2726, 5, 82, 0, 0, 2726, 2727, 5, 67, 0, 0, 2727, 2728, 5, 72, 0, 0, 2728, 2729, 5, 65, 0, 0, 2729, 2730, 5, 82, 0, 0, 2730, 538, 1, 0, 0, 0, 2731, 2732, 5, 66, 0, 0, 2732, 2733, 5, 73, 0, 0, 2733, 2734, 5, 78, 0, 0, 2734, 2735, 5, 65, 0, 0, 2735, 2736, 5, 82, 0, 0, 2736, 2737, 5, 89, 0, 0, 2737, 540, 1, 0, 0, 0, 2738, 2739, 5, 86, 0, 0, 2739, 2740, 5, 65, 0, 0, 2740, 2741, 5, 82, 0, 0, 2741, 2742, 5, 66, 0, 0, 2742, 2743, 5, 73, 0, 0, 2743, 2744, 5, 78, 0, 0, 2744, 2745, 5, 65, 0, 0, 2745, 2746, 5, 82, 0, 0, 2746, 2747, 5, 89, 0, 0, 2747, 542, 1, 0, 0, 0, 2748, 2749, 5, 66, 0, 0, 2749, 2750, 5, 89, 0, 0, 2750, 2751, 5, 84, 0, 0, 2751, 2752, 5, 69, 0, 0, 2752, 2753, 5, 83, 0, 0, 2753, 544, 1, 0, 0, 0, 2754, 2755, 5, 68, 0, 0, 2755, 2756, 5, 69, 0, 0, 2756, 2757, 5, 67, 0, 0, 2757, 2758, 5, 73, 0, 0, 2758, 2759, 5, 77, 0, 0, 2759, 2760, 5, 65, 0, 0, 2760, 2761, 5, 76, 0, 0, 2761, 546, 1, 0, 0, 0, 2762, 2763, 5, 68, 0, 0, 2763, 2764, 5, 69, 0, 0, 2764, 2765, 5, 67, 0, 0, 2765, 548, 1, 0, 0, 0, 2766, 2767, 5, 78, 0, 0, 2767, 2768, 5, 85, 0, 0, 2768, 2769, 5, 77, 0, 0, 2769, 2770, 5, 69, 0, 0, 2770, 2771, 5, 82, 0, 0, 2771, 2772, 5, 73, 0, 0, 2772, 2773, 5, 67, 0, 0, 2773, 550, 1, 0, 0, 0, 2774, 2775, 5, 84, 0, 0, 2775, 2776, 5, 73, 0, 0, 2776, 2777, 5, 78, 0, 0, 2777, 2778, 5, 89, 0, 0, 2778, 2779, 5, 73, 0, 0, 2779, 2780, 5, 78, 0, 0, 2780, 2781, 5, 84, 0, 0, 2781, 552, 1, 0, 0, 0, 2782, 2783, 5, 83, 0, 0, 2783, 2784, 5, 77, 0, 0, 2784, 2785, 5, 65, 0, 0, 2785, 2786, 5, 76, 0, 0, 2786, 2787, 5, 76, 0, 0, 2787, 2788, 5, 73, 0, 0, 2788, 2789, 5, 78, 0, 0, 2789, 2790, 5, 84, 0, 0, 2790, 554, 1, 0, 0, 0, 2791, 2792, 5, 73, 0, 0, 2792, 2793, 5, 78, 0, 0, 2793, 2794, 5, 84, 0, 0, 2794, 556, 1, 0, 0, 0, 2795, 2796, 5, 73, 0, 0, 2796, 2797, 5, 78, 0, 0, 2797, 2798, 5, 84, 0, 0, 2798, 2799, 5, 69, 0, 0, 2799, 2800, 5, 71, 0, 0, 2800, 2801, 5, 69, 0, 0, 2801, 2802, 5, 82, 0, 0, 2802, 558, 1, 0, 0, 0, 2803, 2804, 5, 66, 0, 0, 2804, 2805, 5, 73, 0, 0, 2805, 2806, 5, 71, 0, 0, 2806, 2807, 5, 73, 0, 0, 2807, 2808, 5, 78, 0, 0, 2808, 2809, 5, 84, 0, 0, 2809, 560, 1, 0, 0, 0, 2810, 2811, 5, 70, 0, 0, 2811, 2812, 5, 76, 0, 0, 2812, 2813, 5, 79, 0, 0, 2813, 2814, 5, 65, 0, 0, 2814, 2815, 5, 84, 0, 0, 2815, 562, 1, 0, 0, 0, 2816, 2817, 5, 68, 0, 0, 2817, 2818, 5, 79, 0, 0, 2818, 2819, 5, 85, 0, 0, 2819, 2820, 5, 66, 0, 0, 2820, 2821, 5, 76, 0, 0, 2821, 2822, 5, 69, 0, 0, 2822, 564, 1, 0, 0, 0, 2823, 2824, 5, 68, 0, 0, 2824, 2825, 5, 65, 0, 0, 2825, 2826, 5, 84, 0, 0, 2826, 2827, 5, 69, 0, 0, 2827, 566, 1, 0, 0, 0, 2828, 2829, 5, 84, 0, 0, 2829, 2830, 5, 73, 0, 0, 2830, 2831, 5, 77, 0, 0, 2831, 2832, 5, 69, 0, 0, 2832, 568, 1, 0, 0, 0, 2833, 2834, 5, 84, 0, 0, 2834, 2835, 5, 73, 0, 0, 2835, 2836, 5, 77, 0, 0, 2836, 2837, 5, 69, 0, 0, 2837, 2838, 5, 83, 0, 0, 2838, 2839, 5, 84, 0, 0, 2839, 2840, 5, 65, 0, 0, 2840, 2841, 5, 77, 0, 0, 2841, 2842, 5, 80, 0, 0, 2842, 570, 1, 0, 0, 0, 2843, 2844, 5, 84, 0, 0, 2844, 2845, 5, 73, 0, 0, 2845, 2846, 5, 77, 0, 0, 2846, 2847, 5, 69, 0, 0, 2847, 2848, 5, 83, 0, 0, 2848, 2849, 5, 84, 0, 0, 2849, 2850, 5, 65, 0, 0, 2850, 2851, 5, 77, 0, 0, 2851, 2852, 5, 80, 0, 0, 2852, 2853, 5, 95, 0, 0, 2853, 2854, 5, 76, 0, 0, 2854, 2855, 5, 84, 0, 0, 2855, 2856, 5, 90, 0, 0, 2856, 572, 1, 0, 0, 0, 2857, 2858, 5, 77, 0, 0, 2858, 2859, 5, 85, 0, 0, 2859, 2860, 5, 76, 0, 0, 2860, 2861, 5, 84, 0, 0, 2861, 2862, 5, 73, 0, 0, 2862, 2863, 5, 83, 0, 0, 2863, 2864, 5, 69, 0, 0, 2864, 2865, 5, 84, 0, 0, 2865, 574, 1, 0, 0, 0, 2866, 2867, 5, 66, 0, 0, 2867, 2868, 5, 79, 0, 0, 2868, 2869, 5, 79, 0, 0, 2869, 2870, 5, 76, 0, 0, 2870, 2871, 5, 69, 0, 0, 2871, 2872, 5, 65, 0, 0, 2872, 2873, 5, 78, 0, 0, 2873, 576, 1, 0, 0, 0, 2874, 2875, 5, 82, 0, 0, 2875, 2876, 5, 65, 0, 0, 2876, 2877, 5, 87, 0, 0, 2877, 578, 1, 0, 0, 0, 2878, 2879, 5, 82, 0, 0, 2879, 2880, 5, 79, 0, 0, 2880, 2881, 5, 87, 0, 0, 2881, 580, 1, 0, 0, 0, 2882, 2883, 5, 78, 0, 0, 2883, 2884, 5, 85, 0, 0, 2884, 2885, 5, 76, 0, 0, 2885, 2886, 5, 76, 0, 0, 2886, 582, 1, 0, 0, 0, 2887, 2888, 5, 68, 0, 0, 2888, 2889, 5, 65, 0, 0, 2889, 2890, 5, 84, 0, 0, 2890, 2891, 5, 69, 0, 0, 2891, 2892, 5, 84, 0, 0, 2892, 2893, 5, 73, 0, 0, 2893, 2894, 5, 77, 0, 0, 2894, 2895, 5, 69, 0, 0, 2895, 584, 1, 0, 0, 0, 2896, 2897, 5, 61, 0, 0, 2897, 586, 1, 0, 0, 0, 2898, 2899, 5, 62, 0, 0, 2899, 588, 1, 0, 0, 0, 2900, 2901, 5, 60, 0, 0, 2901, 590, 1, 0, 0, 0, 2902, 2903, 5, 33, 0, 0, 2903, 592, 1, 0, 0, 0, 2904, 2905, 5, 126, 0, 0, 2905, 594, 1, 0, 0, 0, 2906, 2907, 5, 124, 0, 0, 2907, 596, 1, 0, 0, 0, 2908, 2909, 5, 38, 0, 0, 2909, 598, 1, 0, 0, 0, 2910, 2911, 5, 94, 0, 0, 2911, 600, 1, 0, 0, 0, 2912, 2913, 5, 46, 0, 0, 2913, 602, 1, 0, 0, 0, 2914, 2915, 5, 91, 0, 0, 2915, 604, 1, 0, 0, 0, 2916, 2917, 5, 93, 0, 0, 2917, 606, 1, 0, 0, 0, 2918, 2919, 5, 40, 0, 0, 2919, 608, 1, 0, 0, 0, 2920, 2921, 5, 41, 0, 0, 2921, 610, 1, 0, 0, 0, 2922, 2923, 5, 44, 0, 0, 2923, 612, 1, 0, 0, 0, 2924, 2925, 5, 59, 0, 0, 2925, 614, 1, 0, 0, 0, 2926, 2927, 5, 64, 0, 0, 2927, 616, 1, 0, 0, 0, 2928, 2929, 5, 39, 0, 0, 2929, 618, 1, 0, 0, 0, 2930, 2931, 5, 34, 0, 0, 2931, 620, 1, 0, 0, 0, 2932, 2933, 5, 96, 0, 0, 2933, 622, 1, 0, 0, 0, 2934, 2935, 5, 58, 0, 0, 2935, 624, 1, 0, 0, 0, 2936, 2937, 5, 42, 0, 0, 2937, 626, 1, 0, 0, 0, 2938, 2939, 5, 95, 0, 0, 2939, 628, 1, 0, 0, 0, 2940, 2941, 5, 45, 0, 0, 2941, 630, 1, 0, 0, 0, 2942, 2943, 5, 43, 0, 0, 2943, 632, 1, 0, 0, 0, 2944, 2945, 5, 37, 0, 0, 2945, 634, 1, 0, 0, 0, 2946, 2947, 5, 124, 0, 0, 2947, 2948, 5, 124, 0, 0, 2948, 636, 1, 0, 0, 0, 2949, 2950, 5, 45, 0, 0, 2950, 2951, 5, 45, 0, 0, 2951, 638, 1, 0, 0, 0, 2952, 2953, 5, 47, 0, 0, 2953, 640, 1, 0, 0, 0, 2954, 2955, 5, 46, 0, 0, 2955, 2956, 3, 665, 332, 0, 2956, 642, 1, 0, 0, 0, 2957, 2958, 7, 2, 0, 0, 2958, 2959, 3, 655, 327, 0, 2959, 644, 1, 0, 0, 0, 2960, 2964, 3, 673, 336, 0, 2961, 2964, 3, 675, 337, 0, 2962, 2964, 3, 679, 339, 0, 2963, 2960, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2962, 1, 0, 0, 0, 2964, 646, 1, 0, 0, 0, 2965, 2967, 3, 669, 334, 0, 2966, 2965, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 648, 1, 0, 0, 0, 2970, 2972, 3, 669, 334, 0, 2971, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2971, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2976, 1, 0, 0, 0, 2975, 2971, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 5, 46, 0, 0, 2978, 2980, 3, 669, 334, 0, 2979, 2978, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 3014, 1, 0, 0, 0, 2983, 2985, 3, 669, 334, 0, 2984, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2984, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 5, 46, 0, 0, 2989, 2990, 3, 663, 331, 0, 2990, 3014, 1, 0, 0, 0, 2991, 2993, 3, 669, 334, 0, 2992, 2991, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2992, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3000, 5, 46, 0, 0, 2999, 3001, 3, 669, 334, 0, 3000, 2999, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3005, 3, 663, 331, 0, 3005, 3014, 1, 0, 0, 0, 3006, 3008, 3, 669, 334, 0, 3007, 3006, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 3, 663, 331, 0, 3012, 3014, 1, 0, 0, 0, 3013, 2975, 1, 0, 0, 0, 3013, 2984, 1, 0, 0, 0, 3013, 2996, 1, 0, 0, 0, 3013, 3007, 1, 0, 0, 0, 3014, 650, 1, 0, 0, 0, 3015, 3016, 3, 677, 338, 0, 3016, 652, 1, 0, 0, 0, 3017, 3018, 3, 665, 332, 0, 3018, 654, 1, 0, 0, 0, 3019, 3020, 3, 667, 333, 0, 3020, 656, 1, 0, 0, 0, 3021, 3022, 3, 659, 329, 0, 3022, 658, 1, 0, 0, 0, 3023, 3027, 7, 3, 0, 0, 3024, 3026, 8, 4, 0, 0, 3025, 3024, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3031, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3023, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 660, 1, 0, 0, 0, 3034, 3042, 5, 96, 0, 0, 3035, 3036, 5, 92, 0, 0, 3036, 3041, 9, 0, 0, 0, 3037, 3038, 5, 96, 0, 0, 3038, 3041, 5, 96, 0, 0, 3039, 3041, 8, 5, 0, 0, 3040, 3035, 1, 0, 0, 0, 3040, 3037, 1, 0, 0, 0, 3040, 3039, 1, 0, 0, 0, 3041, 3044, 1, 0, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3045, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3045, 3046, 5, 96, 0, 0, 3046, 662, 1, 0, 0, 0, 3047, 3049, 5, 69, 0, 0, 3048, 3050, 7, 6, 0, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3052, 1, 0, 0, 0, 3051, 3053, 3, 669, 334, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3052, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 664, 1, 0, 0, 0, 3056, 3058, 7, 7, 0, 0, 3057, 3056, 1, 0, 0, 0, 3058, 3061, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3059, 3057, 1, 0, 0, 0, 3060, 3063, 1, 0, 0, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3064, 7, 8, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3065, 3063, 1, 0, 0, 0, 3066, 3070, 1, 0, 0, 0, 3067, 3069, 7, 7, 0, 0, 3068, 3067, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 666, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3075, 7, 9, 0, 0, 3074, 3073, 1, 0, 0, 0, 3075, 3078, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3076, 3074, 1, 0, 0, 0, 3077, 3080, 1, 0, 0, 0, 3078, 3076, 1, 0, 0, 0, 3079, 3081, 7, 10, 0, 0, 3080, 3079, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3082, 3080, 1, 0, 0, 0, 3083, 3087, 1, 0, 0, 0, 3084, 3086, 7, 9, 0, 0, 3085, 3084, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 668, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3091, 7, 11, 0, 0, 3091, 670, 1, 0, 0, 0, 3092, 3093, 7, 12, 0, 0, 3093, 672, 1, 0, 0, 0, 3094, 3102, 5, 34, 0, 0, 3095, 3096, 5, 92, 0, 0, 3096, 3101, 9, 0, 0, 0, 3097, 3098, 5, 34, 0, 0, 3098, 3101, 5, 34, 0, 0, 3099, 3101, 8, 13, 0, 0, 3100, 3095, 1, 0, 0, 0, 3100, 3097, 1, 0, 0, 0, 3100, 3099, 1, 0, 0, 0, 3101, 3104, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3105, 3106, 5, 34, 0, 0, 3106, 674, 1, 0, 0, 0, 3107, 3115, 5, 39, 0, 0, 3108, 3109, 5, 92, 0, 0, 3109, 3114, 9, 0, 0, 0, 3110, 3111, 5, 39, 0, 0, 3111, 3114, 5, 39, 0, 0, 3112, 3114, 8, 14, 0, 0, 3113, 3108, 1, 0, 0, 0, 3113, 3110, 1, 0, 0, 0, 3113, 3112, 1, 0, 0, 0, 3114, 3117, 1, 0, 0, 0, 3115, 3113, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3118, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3118, 3119, 5, 39, 0, 0, 3119, 676, 1, 0, 0, 0, 3120, 3121, 5, 66, 0, 0, 3121, 3123, 5, 39, 0, 0, 3122, 3124, 7, 15, 0, 0, 3123, 3122, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3123, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 5, 39, 0, 0, 3128, 678, 1, 0, 0, 0, 3129, 3137, 5, 96, 0, 0, 3130, 3131, 5, 92, 0, 0, 3131, 3136, 9, 0, 0, 0, 3132, 3133, 5, 96, 0, 0, 3133, 3136, 5, 96, 0, 0, 3134, 3136, 8, 5, 0, 0, 3135, 3130, 1, 0, 0, 0, 3135, 3132, 1, 0, 0, 0, 3135, 3134, 1, 0, 0, 0, 3136, 3139, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3140, 1, 0, 0, 0, 3139, 3137, 1, 0, 0, 0, 3140, 3141, 5, 96, 0, 0, 3141, 680, 1, 0, 0, 0, 40, 0, 684, 694, 705, 710, 714, 718, 724, 728, 730, 2963, 2968, 2973, 2975, 2981, 2986, 2994, 2996, 3002, 3009, 3013, 3027, 3032, 3040, 3042, 3049, 3054, 3059, 3065, 3070, 3076, 3082, 3087, 3100, 3102, 3113, 3115, 3125, 3135, 3137, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens index eafa92c..2398474 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -254,78 +254,79 @@ CATALOGS=253 VIEWS=254 JARS=255 PRIMARY=256 -KEY=257 -PERIOD=258 -SYSTEM_TIME=259 -ENFORCED=260 -METADATA=261 -VIRTUAL=262 -ZONE=263 -STRING=264 -ARRAY=265 -MAP=266 -CHAR=267 -VARCHAR=268 -BINARY=269 -VARBINARY=270 -BYTES=271 -DECIMAL=272 -DEC=273 -NUMERIC=274 -TINYINT=275 -SMALLINT=276 -INT=277 -INTEGER=278 -BIGINT=279 -FLOAT=280 -DOUBLE=281 -DATE=282 -TIME=283 -TIMESTAMP=284 -TIMESTAMP_LTZ=285 -MULTISET=286 -BOOLEAN=287 -RAW=288 -ROW=289 -NULL=290 -DATETIME=291 -EQUAL_SYMBOL=292 -GREATER_SYMBOL=293 -LESS_SYMBOL=294 -EXCLAMATION_SYMBOL=295 -BIT_NOT_OP=296 -BIT_OR_OP=297 -BIT_AND_OP=298 -BIT_XOR_OP=299 -DOT=300 -LS_BRACKET=301 -RS_BRACKET=302 -LR_BRACKET=303 -RR_BRACKET=304 -COMMA=305 -SEMICOLON=306 -AT_SIGN=307 -SINGLE_QUOTE_SYMB=308 -DOUBLE_QUOTE_SYMB=309 -REVERSE_QUOTE_SYMB=310 -COLON_SYMB=311 -ASTERISK_SIGN=312 -UNDERLINE_SIGN=313 -HYPNEN_SIGN=314 -ADD_SIGN=315 -PENCENT_SIGN=316 -DOUBLE_VERTICAL_SIGN=317 -DOUBLE_HYPNEN_SIGN=318 -SLASH_SIGN=319 -DOT_ID=320 -PLUS_DOT_ID=321 -STRING_LITERAL=322 -DIG_LITERAL=323 -REAL_LITERAL=324 -BIT_STRING=325 -ID_LITERAL=326 -PLUS_ID_LITERAL=327 -FILE_PATH=328 +UNIQUE=257 +KEY=258 +PERIOD=259 +SYSTEM_TIME=260 +ENFORCED=261 +METADATA=262 +VIRTUAL=263 +ZONE=264 +STRING=265 +ARRAY=266 +MAP=267 +CHAR=268 +VARCHAR=269 +BINARY=270 +VARBINARY=271 +BYTES=272 +DECIMAL=273 +DEC=274 +NUMERIC=275 +TINYINT=276 +SMALLINT=277 +INT=278 +INTEGER=279 +BIGINT=280 +FLOAT=281 +DOUBLE=282 +DATE=283 +TIME=284 +TIMESTAMP=285 +TIMESTAMP_LTZ=286 +MULTISET=287 +BOOLEAN=288 +RAW=289 +ROW=290 +NULL=291 +DATETIME=292 +EQUAL_SYMBOL=293 +GREATER_SYMBOL=294 +LESS_SYMBOL=295 +EXCLAMATION_SYMBOL=296 +BIT_NOT_OP=297 +BIT_OR_OP=298 +BIT_AND_OP=299 +BIT_XOR_OP=300 +DOT=301 +LS_BRACKET=302 +RS_BRACKET=303 +LR_BRACKET=304 +RR_BRACKET=305 +COMMA=306 +SEMICOLON=307 +AT_SIGN=308 +SINGLE_QUOTE_SYMB=309 +DOUBLE_QUOTE_SYMB=310 +REVERSE_QUOTE_SYMB=311 +COLON_SYMB=312 +ASTERISK_SIGN=313 +UNDERLINE_SIGN=314 +HYPNEN_SIGN=315 +ADD_SIGN=316 +PENCENT_SIGN=317 +DOUBLE_VERTICAL_SIGN=318 +DOUBLE_HYPNEN_SIGN=319 +SLASH_SIGN=320 +DOT_ID=321 +PLUS_DOT_ID=322 +STRING_LITERAL=323 +DIG_LITERAL=324 +REAL_LITERAL=325 +BIT_STRING=326 +ID_LITERAL=327 +PLUS_ID_LITERAL=328 +FILE_PATH=329 'SELECT'=4 'FROM'=5 'ADD'=6 @@ -579,66 +580,67 @@ FILE_PATH=328 'VIEWS'=254 'JARS'=255 'PRIMARY'=256 -'KEY'=257 -'PERIOD'=258 -'SYSTEM_TIME'=259 -'ENFORCED'=260 -'METADATA'=261 -'VIRTUAL'=262 -'ZONE'=263 -'STRING'=264 -'ARRAY'=265 -'MAP'=266 -'CHAR'=267 -'VARCHAR'=268 -'BINARY'=269 -'VARBINARY'=270 -'BYTES'=271 -'DECIMAL'=272 -'DEC'=273 -'NUMERIC'=274 -'TINYINT'=275 -'SMALLINT'=276 -'INT'=277 -'INTEGER'=278 -'BIGINT'=279 -'FLOAT'=280 -'DOUBLE'=281 -'DATE'=282 -'TIME'=283 -'TIMESTAMP'=284 -'TIMESTAMP_LTZ'=285 -'MULTISET'=286 -'BOOLEAN'=287 -'RAW'=288 -'ROW'=289 -'NULL'=290 -'DATETIME'=291 -'='=292 -'>'=293 -'<'=294 -'!'=295 -'~'=296 -'|'=297 -'&'=298 -'^'=299 -'.'=300 -'['=301 -']'=302 -'('=303 -')'=304 -','=305 -';'=306 -'@'=307 -'\''=308 -'"'=309 -'`'=310 -':'=311 -'*'=312 -'_'=313 -'-'=314 -'+'=315 -'%'=316 -'||'=317 -'--'=318 -'/'=319 +'UNIQUE'=257 +'KEY'=258 +'PERIOD'=259 +'SYSTEM_TIME'=260 +'ENFORCED'=261 +'METADATA'=262 +'VIRTUAL'=263 +'ZONE'=264 +'STRING'=265 +'ARRAY'=266 +'MAP'=267 +'CHAR'=268 +'VARCHAR'=269 +'BINARY'=270 +'VARBINARY'=271 +'BYTES'=272 +'DECIMAL'=273 +'DEC'=274 +'NUMERIC'=275 +'TINYINT'=276 +'SMALLINT'=277 +'INT'=278 +'INTEGER'=279 +'BIGINT'=280 +'FLOAT'=281 +'DOUBLE'=282 +'DATE'=283 +'TIME'=284 +'TIMESTAMP'=285 +'TIMESTAMP_LTZ'=286 +'MULTISET'=287 +'BOOLEAN'=288 +'RAW'=289 +'ROW'=290 +'NULL'=291 +'DATETIME'=292 +'='=293 +'>'=294 +'<'=295 +'!'=296 +'~'=297 +'|'=298 +'&'=299 +'^'=300 +'.'=301 +'['=302 +']'=303 +'('=304 +')'=305 +','=306 +';'=307 +'@'=308 +'\''=309 +'"'=310 +'`'=311 +':'=312 +'*'=313 +'_'=314 +'-'=315 +'+'=316 +'%'=317 +'||'=318 +'--'=319 +'/'=320 diff --git a/src/lib/flinksql/FlinkSqlLexer.ts b/src/lib/flinksql/FlinkSqlLexer.ts index 17bbcee..664eb7b 100644 --- a/src/lib/flinksql/FlinkSqlLexer.ts +++ b/src/lib/flinksql/FlinkSqlLexer.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlLexer.g4 by ANTLR 4.12.0 +// Generated from /Users/ziv/github.com/dt-sql-parser/src/grammar/flinksql/FlinkSqlLexer.g4 by ANTLR 4.12.0 // noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols import { ATN, @@ -268,78 +268,79 @@ export default class FlinkSqlLexer extends Lexer { public static readonly VIEWS = 254; public static readonly JARS = 255; public static readonly PRIMARY = 256; - public static readonly KEY = 257; - public static readonly PERIOD = 258; - public static readonly SYSTEM_TIME = 259; - public static readonly ENFORCED = 260; - public static readonly METADATA = 261; - public static readonly VIRTUAL = 262; - public static readonly ZONE = 263; - public static readonly STRING = 264; - public static readonly ARRAY = 265; - public static readonly MAP = 266; - public static readonly CHAR = 267; - public static readonly VARCHAR = 268; - public static readonly BINARY = 269; - public static readonly VARBINARY = 270; - public static readonly BYTES = 271; - public static readonly DECIMAL = 272; - public static readonly DEC = 273; - public static readonly NUMERIC = 274; - public static readonly TINYINT = 275; - public static readonly SMALLINT = 276; - public static readonly INT = 277; - public static readonly INTEGER = 278; - public static readonly BIGINT = 279; - public static readonly FLOAT = 280; - public static readonly DOUBLE = 281; - public static readonly DATE = 282; - public static readonly TIME = 283; - public static readonly TIMESTAMP = 284; - public static readonly TIMESTAMP_LTZ = 285; - public static readonly MULTISET = 286; - public static readonly BOOLEAN = 287; - public static readonly RAW = 288; - public static readonly ROW = 289; - public static readonly NULL = 290; - public static readonly DATETIME = 291; - public static readonly EQUAL_SYMBOL = 292; - public static readonly GREATER_SYMBOL = 293; - public static readonly LESS_SYMBOL = 294; - public static readonly EXCLAMATION_SYMBOL = 295; - public static readonly BIT_NOT_OP = 296; - public static readonly BIT_OR_OP = 297; - public static readonly BIT_AND_OP = 298; - public static readonly BIT_XOR_OP = 299; - public static readonly DOT = 300; - public static readonly LS_BRACKET = 301; - public static readonly RS_BRACKET = 302; - public static readonly LR_BRACKET = 303; - public static readonly RR_BRACKET = 304; - public static readonly COMMA = 305; - public static readonly SEMICOLON = 306; - public static readonly AT_SIGN = 307; - public static readonly SINGLE_QUOTE_SYMB = 308; - public static readonly DOUBLE_QUOTE_SYMB = 309; - public static readonly REVERSE_QUOTE_SYMB = 310; - public static readonly COLON_SYMB = 311; - public static readonly ASTERISK_SIGN = 312; - public static readonly UNDERLINE_SIGN = 313; - public static readonly HYPNEN_SIGN = 314; - public static readonly ADD_SIGN = 315; - public static readonly PENCENT_SIGN = 316; - public static readonly DOUBLE_VERTICAL_SIGN = 317; - public static readonly DOUBLE_HYPNEN_SIGN = 318; - public static readonly SLASH_SIGN = 319; - public static readonly DOT_ID = 320; - public static readonly PLUS_DOT_ID = 321; - public static readonly STRING_LITERAL = 322; - public static readonly DIG_LITERAL = 323; - public static readonly REAL_LITERAL = 324; - public static readonly BIT_STRING = 325; - public static readonly ID_LITERAL = 326; - public static readonly PLUS_ID_LITERAL = 327; - public static readonly FILE_PATH = 328; + public static readonly UNIQUE = 257; + public static readonly KEY = 258; + public static readonly PERIOD = 259; + public static readonly SYSTEM_TIME = 260; + public static readonly ENFORCED = 261; + public static readonly METADATA = 262; + public static readonly VIRTUAL = 263; + public static readonly ZONE = 264; + public static readonly STRING = 265; + public static readonly ARRAY = 266; + public static readonly MAP = 267; + public static readonly CHAR = 268; + public static readonly VARCHAR = 269; + public static readonly BINARY = 270; + public static readonly VARBINARY = 271; + public static readonly BYTES = 272; + public static readonly DECIMAL = 273; + public static readonly DEC = 274; + public static readonly NUMERIC = 275; + public static readonly TINYINT = 276; + public static readonly SMALLINT = 277; + public static readonly INT = 278; + public static readonly INTEGER = 279; + public static readonly BIGINT = 280; + public static readonly FLOAT = 281; + public static readonly DOUBLE = 282; + public static readonly DATE = 283; + public static readonly TIME = 284; + public static readonly TIMESTAMP = 285; + public static readonly TIMESTAMP_LTZ = 286; + public static readonly MULTISET = 287; + public static readonly BOOLEAN = 288; + public static readonly RAW = 289; + public static readonly ROW = 290; + public static readonly NULL = 291; + public static readonly DATETIME = 292; + public static readonly EQUAL_SYMBOL = 293; + public static readonly GREATER_SYMBOL = 294; + public static readonly LESS_SYMBOL = 295; + public static readonly EXCLAMATION_SYMBOL = 296; + public static readonly BIT_NOT_OP = 297; + public static readonly BIT_OR_OP = 298; + public static readonly BIT_AND_OP = 299; + public static readonly BIT_XOR_OP = 300; + public static readonly DOT = 301; + public static readonly LS_BRACKET = 302; + public static readonly RS_BRACKET = 303; + public static readonly LR_BRACKET = 304; + public static readonly RR_BRACKET = 305; + public static readonly COMMA = 306; + public static readonly SEMICOLON = 307; + public static readonly AT_SIGN = 308; + public static readonly SINGLE_QUOTE_SYMB = 309; + public static readonly DOUBLE_QUOTE_SYMB = 310; + public static readonly REVERSE_QUOTE_SYMB = 311; + public static readonly COLON_SYMB = 312; + public static readonly ASTERISK_SIGN = 313; + public static readonly UNDERLINE_SIGN = 314; + public static readonly HYPNEN_SIGN = 315; + public static readonly ADD_SIGN = 316; + public static readonly PENCENT_SIGN = 317; + public static readonly DOUBLE_VERTICAL_SIGN = 318; + public static readonly DOUBLE_HYPNEN_SIGN = 319; + public static readonly SLASH_SIGN = 320; + public static readonly DOT_ID = 321; + public static readonly PLUS_DOT_ID = 322; + public static readonly STRING_LITERAL = 323; + public static readonly DIG_LITERAL = 324; + public static readonly REAL_LITERAL = 325; + public static readonly BIT_STRING = 326; + public static readonly ID_LITERAL = 327; + public static readonly PLUS_ID_LITERAL = 328; + public static readonly FILE_PATH = 329; public static readonly EOF = Token.EOF; public static readonly channelNames: string[] = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; @@ -464,20 +465,20 @@ export default class FlinkSqlLexer extends Lexer { "'PYTHON_PARAMETER'", "'ENGINE'", "'CATALOGS'", "'VIEWS'", "'JARS'", - "'PRIMARY'", "'KEY'", - "'PERIOD'", "'SYSTEM_TIME'", - "'ENFORCED'", "'METADATA'", - "'VIRTUAL'", "'ZONE'", - "'STRING'", "'ARRAY'", - "'MAP'", "'CHAR'", "'VARCHAR'", - "'BINARY'", "'VARBINARY'", - "'BYTES'", "'DECIMAL'", - "'DEC'", "'NUMERIC'", - "'TINYINT'", "'SMALLINT'", - "'INT'", "'INTEGER'", - "'BIGINT'", "'FLOAT'", - "'DOUBLE'", "'DATE'", - "'TIME'", "'TIMESTAMP'", + "'PRIMARY'", "'UNIQUE'", + "'KEY'", "'PERIOD'", + "'SYSTEM_TIME'", "'ENFORCED'", + "'METADATA'", "'VIRTUAL'", + "'ZONE'", "'STRING'", + "'ARRAY'", "'MAP'", "'CHAR'", + "'VARCHAR'", "'BINARY'", + "'VARBINARY'", "'BYTES'", + "'DECIMAL'", "'DEC'", + "'NUMERIC'", "'TINYINT'", + "'SMALLINT'", "'INT'", + "'INTEGER'", "'BIGINT'", + "'FLOAT'", "'DOUBLE'", + "'DATE'", "'TIME'", "'TIMESTAMP'", "'TIMESTAMP_LTZ'", "'MULTISET'", "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'DATETIME'", @@ -597,17 +598,17 @@ export default class FlinkSqlLexer extends Lexer { "PYTHON_PARAMETER", "ENGINE", "CATALOGS", "VIEWS", "JARS", "PRIMARY", - "KEY", "PERIOD", "SYSTEM_TIME", - "ENFORCED", "METADATA", - "VIRTUAL", "ZONE", "STRING", - "ARRAY", "MAP", "CHAR", - "VARCHAR", "BINARY", - "VARBINARY", "BYTES", - "DECIMAL", "DEC", "NUMERIC", - "TINYINT", "SMALLINT", - "INT", "INTEGER", "BIGINT", - "FLOAT", "DOUBLE", "DATE", - "TIME", "TIMESTAMP", + "UNIQUE", "KEY", "PERIOD", + "SYSTEM_TIME", "ENFORCED", + "METADATA", "VIRTUAL", + "ZONE", "STRING", "ARRAY", + "MAP", "CHAR", "VARCHAR", + "BINARY", "VARBINARY", + "BYTES", "DECIMAL", + "DEC", "NUMERIC", "TINYINT", + "SMALLINT", "INT", "INTEGER", + "BIGINT", "FLOAT", "DOUBLE", + "DATE", "TIME", "TIMESTAMP", "TIMESTAMP_LTZ", "MULTISET", "BOOLEAN", "RAW", "ROW", "NULL", "DATETIME", @@ -671,9 +672,9 @@ export default class FlinkSqlLexer extends Lexer { "CATALOG", "LANGUAGE", "JAVA", "SCALA", "PYTHON", "JAR", "FILE", "PYTHON_FILES", "PYTHON_REQUIREMENTS", "PYTHON_DEPENDENCIES", "PYTHON_JAR", "PYTHON_ARCHIVES", "PYTHON_PARAMETER", "ENGINE", "CATALOGS", "VIEWS", "JARS", "PRIMARY", - "KEY", "PERIOD", "SYSTEM_TIME", "ENFORCED", "METADATA", "VIRTUAL", "ZONE", - "STRING", "ARRAY", "MAP", "CHAR", "VARCHAR", "BINARY", "VARBINARY", "BYTES", - "DECIMAL", "DEC", "NUMERIC", "TINYINT", "SMALLINT", "INT", "INTEGER", + "UNIQUE", "KEY", "PERIOD", "SYSTEM_TIME", "ENFORCED", "METADATA", "VIRTUAL", + "ZONE", "STRING", "ARRAY", "MAP", "CHAR", "VARCHAR", "BINARY", "VARBINARY", + "BYTES", "DECIMAL", "DEC", "NUMERIC", "TINYINT", "SMALLINT", "INT", "INTEGER", "BIGINT", "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "TIMESTAMP_LTZ", "MULTISET", "BOOLEAN", "RAW", "ROW", "NULL", "DATETIME", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", @@ -706,7 +707,7 @@ export default class FlinkSqlLexer extends Lexer { public get modeNames(): string[] { return FlinkSqlLexer.modeNames; } - public static readonly _serializedATN: number[] = [4,0,328,3133,6,-1,2, + public static readonly _serializedATN: number[] = [4,0,329,3142,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, @@ -760,1027 +761,1030 @@ export default class FlinkSqlLexer extends Lexer { 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,1,0,4,0,681,8,0,11,0,12,0,682,1,0,1,0,1,1,1,1,1, - 1,1,1,5,1,691,8,1,10,1,12,1,694,9,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2, - 704,8,2,1,2,5,2,707,8,2,10,2,12,2,710,9,2,1,2,3,2,713,8,2,1,2,1,2,3,2,717, - 8,2,1,2,1,2,1,2,1,2,3,2,723,8,2,1,2,1,2,3,2,727,8,2,3,2,729,8,2,1,2,1,2, - 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,6,1,6, - 1,6,1,7,1,7,1,7,1,7,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,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,12,1,12,1, - 12,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,15,1,15,1,15,1,15,1,15,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,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,1,19, - 1,19,1,19,1,20,1,20,1,20,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,23,1,23,1, - 23,1,24,1,24,1,24,1,24,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,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,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,37,1,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,40,1, - 40,1,40,1,40,1,40,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,44,1,44,1,44,1,44,1,44,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,47,1,47,1,47,1,47,1,47,1,47,1,48,1,48, - 1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,50,1, - 51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53, - 1,53,1,53,1,53,1,54,1,54,1,54,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,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,59,1,59,1,59,1,59,1,60,1, - 60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62, - 1,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,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,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1, - 67,1,67,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70, - 1,70,1,70,1,70,1,70,1,70,1,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,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,74,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,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,78,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,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,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,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,86,1,86, - 1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,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,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,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,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,92,1, - 92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,95, - 1,95,1,95,1,95,1,95,1,95,1,95,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,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,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,102,1,103,1,103,1,103,1,103,1, - 103,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1, - 105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,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, - 109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1, - 110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1, - 111,1,111,1,111,1,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,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,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,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,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,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,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1, - 126,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,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1, - 130,1,130,1,130,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,132,1,133,1,133,1,133,1,133,1,133,1,133,1, - 133,1,134,1,134,1,134,1,134,1,135,1,135,1,135,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,138,1,138,1,138,1, - 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1, - 139,1,139,1,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,140,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1, - 142,1,142,1,142,1,142,1,142,1,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,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,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,147,1,147,1, - 147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,149,1,149,1, - 149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1, - 150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151,1, - 151,1,151,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1, - 153,1,153,1,153,1,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,155,1,155,1,156,1,156,1,156,1,156,1,156,1, - 156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1, - 157,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,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1, - 161,1,161,1,161,1,161,1,161,1,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,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1, - 165,1,166,1,166,1,166,1,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, - 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,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1, - 170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172,1, - 172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1, - 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,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,176,1,176,1, - 176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,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, - 178,1,178,1,178,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,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,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1,185,1,185,1, - 185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1, - 186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1, - 188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1, - 189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1, - 190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1, - 191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,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, - 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,197,1,197,1,197,1,197,1,197,1,198,1,198,1,198,1, - 198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1, - 199,1,199,1,199,1,199,1,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,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,202,1,203,1,203,1,203,1,203,1, - 203,1,203,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,207,1,207,1,207,1,207,1,207,1, - 207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,209,1,209,1, - 209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,1,210,1,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,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,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,217,1,217,1,217,1,217,1,217,1,218,1, - 218,1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219,1, - 219,1,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,222,1,222,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,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,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228,1,228,1,228,1,228,1, - 229,1,229,1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,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,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,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,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,239,1,239,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1,241,1,241,1, - 241,1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,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,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1, + 2,337,7,337,2,338,7,338,2,339,7,339,1,0,4,0,683,8,0,11,0,12,0,684,1,0,1, + 0,1,1,1,1,1,1,1,1,5,1,693,8,1,10,1,12,1,696,9,1,1,1,1,1,1,1,1,1,1,1,1,2, + 1,2,1,2,3,2,706,8,2,1,2,5,2,709,8,2,10,2,12,2,712,9,2,1,2,3,2,715,8,2,1, + 2,1,2,3,2,719,8,2,1,2,1,2,1,2,1,2,3,2,725,8,2,1,2,1,2,3,2,729,8,2,3,2,731, + 8,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5, + 1,5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,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,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,12,1,12,1,12,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,15,1,15,1,15,1,15,1,15,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,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1, + 19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,21,1,21,1,21,1,22,1,22,1,22,1,22, + 1,23,1,23,1,23,1,24,1,24,1,24,1,24,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,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,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,37,1,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, + 1,39,1,40,1,40,1,40,1,40,1,40,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,44,1,44,1,44,1,44,1,44,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,47,1,47,1,47,1,47,1,47,1, + 47,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50, + 1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,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,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,59,1,59,1,59, + 1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1, + 62,1,62,1,62,1,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,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,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67, + 1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1, + 70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,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,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,74,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,77,1,77,1,77,1,77,1,77,1,77,1,77,1, + 77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,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,81,1,81,1,81,1,81,1, + 81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 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,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,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,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,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, + 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,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1, + 94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,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,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,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,102,1,103,1,103,1, + 103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1, + 105,1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1, + 106,1,107,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,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1, + 109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1, + 111,1,111,1,111,1,111,1,111,1,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,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,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,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,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,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,126,1,126,1,126,1,126,1,126,1,126,1, + 126,1,126,1,126,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,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1, + 130,1,130,1,130,1,130,1,130,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,132,1,133,1,133,1,133,1,133,1, + 133,1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,1,135,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,138,1, + 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1, + 139,1,139,1,139,1,139,1,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,140,1,141,1,141,1,141,1,141,1,141,1,141,1, + 141,1,142,1,142,1,142,1,142,1,142,1,142,1,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,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,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, + 147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1, + 149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150,1, + 150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1, + 151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1, + 153,1,153,1,153,1,153,1,153,1,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,155,1,155,1,156,1,156,1,156,1, + 156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,157,1, + 157,1,157,1,157,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,160,1,160,1,160,1,160,1,160,1,160,1,161,1, + 161,1,161,1,161,1,161,1,161,1,161,1,161,1,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,165,1,165,1,165,1,165,1,165,1,165,1,165,1, + 165,1,165,1,165,1,166,1,166,1,166,1,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,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,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1, + 170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1, + 172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,173,1, + 173,1,173,1,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,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1, + 176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,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,178,1,178,1,178,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,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,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185,1, + 185,1,185,1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1, + 186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1, + 188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1, + 189,1,189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1, + 190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,1, + 191,1,191,1,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1, + 192,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,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,197,1,197,1,197,1,197,1,197,1,198,1, + 198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,199,1,199,1, + 199,1,199,1,199,1,199,1,199,1,199,1,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,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,202,1,203,1,203,1, + 203,1,203,1,203,1,203,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,207,1,207,1,207,1, + 207,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1, + 209,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,1, + 210,1,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,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,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,217,1,217,1,217,1,217,1, + 217,1,218,1,218,1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1, + 219,1,219,1,219,1,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,222,1,222,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,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,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228,1,228,1, + 228,1,228,1,229,1,229,1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1, + 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,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,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,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,239,1,239,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1, + 241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,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,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,246,1,246,1,246,1,246,1,246,1, - 246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1, - 247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1, - 248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,249,1,249,1, + 246,1,246,1,246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1, + 247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1, + 247,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1, 249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1, - 249,1,249,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1, - 250,1,250,1,250,1,250,1,250,1,250,1,250,1,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,253,1, - 253,1,253,1,253,1,253,1,253,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,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,258,1,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,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,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,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, + 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,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,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,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,264,1,264,1,264,1,264,1,264,1, - 264,1,265,1,265,1,265,1,265,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,268,1,268,1,268,1,268,1,268,1,268,1, - 268,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1, - 270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1, - 271,1,272,1,272,1,272,1,272,1,273,1,273,1,273,1,273,1,273,1,273,1,273,1, - 273,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,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,277,1,277,1, - 277,1,277,1,277,1,277,1,277,1,277,1,278,1,278,1,278,1,278,1,278,1,278,1, - 278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,280,1, - 280,1,280,1,281,1,281,1,281,1,281,1,281,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,283,1,284,1,284,1, - 284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1, + 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,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,265,1,265,1,265,1,265,1,265,1,265,1,266,1,266,1, + 266,1,266,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,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270,1, + 270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,271,1,271,1,271,1,271,1, + 271,1,271,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,273,1,273,1, + 273,1,273,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,275,1,275,1, + 275,1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276,1,276,1, + 276,1,276,1,276,1,277,1,277,1,277,1,277,1,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,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,283,1,283,1,283,1,283,1,283,1,284,1,284,1,284,1, + 284,1,284,1,284,1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1,285,1, 285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1, - 286,1,286,1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,288,1,288,1,288,1, - 288,1,289,1,289,1,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290,1,290,1, - 290,1,290,1,290,1,291,1,291,1,292,1,292,1,293,1,293,1,294,1,294,1,295,1, - 295,1,296,1,296,1,297,1,297,1,298,1,298,1,299,1,299,1,300,1,300,1,301,1, - 301,1,302,1,302,1,303,1,303,1,304,1,304,1,305,1,305,1,306,1,306,1,307,1, - 307,1,308,1,308,1,309,1,309,1,310,1,310,1,311,1,311,1,312,1,312,1,313,1, - 313,1,314,1,314,1,315,1,315,1,316,1,316,1,316,1,317,1,317,1,317,1,318,1, - 318,1,319,1,319,1,319,1,320,1,320,1,320,1,321,1,321,1,321,3,321,2955,8, - 321,1,322,4,322,2958,8,322,11,322,12,322,2959,1,323,4,323,2963,8,323,11, - 323,12,323,2964,3,323,2967,8,323,1,323,1,323,4,323,2971,8,323,11,323,12, - 323,2972,1,323,4,323,2976,8,323,11,323,12,323,2977,1,323,1,323,1,323,1, - 323,4,323,2984,8,323,11,323,12,323,2985,3,323,2988,8,323,1,323,1,323,4, - 323,2992,8,323,11,323,12,323,2993,1,323,1,323,1,323,4,323,2999,8,323,11, - 323,12,323,3000,1,323,1,323,3,323,3005,8,323,1,324,1,324,1,325,1,325,1, - 326,1,326,1,327,1,327,1,328,1,328,5,328,3017,8,328,10,328,12,328,3020,9, - 328,4,328,3022,8,328,11,328,12,328,3023,1,329,1,329,1,329,1,329,1,329,1, - 329,5,329,3032,8,329,10,329,12,329,3035,9,329,1,329,1,329,1,330,1,330,3, - 330,3041,8,330,1,330,4,330,3044,8,330,11,330,12,330,3045,1,331,5,331,3049, - 8,331,10,331,12,331,3052,9,331,1,331,4,331,3055,8,331,11,331,12,331,3056, - 1,331,5,331,3060,8,331,10,331,12,331,3063,9,331,1,332,5,332,3066,8,332, - 10,332,12,332,3069,9,332,1,332,4,332,3072,8,332,11,332,12,332,3073,1,332, - 5,332,3077,8,332,10,332,12,332,3080,9,332,1,333,1,333,1,334,1,334,1,335, - 1,335,1,335,1,335,1,335,1,335,5,335,3092,8,335,10,335,12,335,3095,9,335, - 1,335,1,335,1,336,1,336,1,336,1,336,1,336,1,336,5,336,3105,8,336,10,336, - 12,336,3108,9,336,1,336,1,336,1,337,1,337,1,337,4,337,3115,8,337,11,337, - 12,337,3116,1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,5,338,3127, - 8,338,10,338,12,338,3130,9,338,1,338,1,338,5,692,3050,3056,3067,3073,0, - 339,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,0,659,0,661,0,663,0,665,0,667,0,669,0,671,0,673,0,675,0, - 677,0,1,0,16,3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,46,46,58,58,2,0,47, - 47,92,92,3,0,32,32,47,47,92,92,2,0,92,92,96,96,2,0,43,43,45,45,4,0,48,57, - 65,90,95,95,97,122,3,0,65,90,95,95,97,122,7,0,35,38,42,42,48,57,64,90,94, - 95,97,123,125,125,6,0,35,38,42,42,64,90,94,95,97,123,125,125,1,0,48,57, - 2,0,65,90,97,122,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,49,3167,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,1,680,1,0,0,0,3,686, - 1,0,0,0,5,728,1,0,0,0,7,732,1,0,0,0,9,739,1,0,0,0,11,744,1,0,0,0,13,748, - 1,0,0,0,15,751,1,0,0,0,17,755,1,0,0,0,19,759,1,0,0,0,21,768,1,0,0,0,23, - 774,1,0,0,0,25,780,1,0,0,0,27,783,1,0,0,0,29,792,1,0,0,0,31,797,1,0,0,0, - 33,802,1,0,0,0,35,809,1,0,0,0,37,815,1,0,0,0,39,822,1,0,0,0,41,828,1,0, - 0,0,43,831,1,0,0,0,45,834,1,0,0,0,47,838,1,0,0,0,49,841,1,0,0,0,51,845, - 1,0,0,0,53,848,1,0,0,0,55,855,1,0,0,0,57,863,1,0,0,0,59,868,1,0,0,0,61, - 874,1,0,0,0,63,877,1,0,0,0,65,882,1,0,0,0,67,888,1,0,0,0,69,894,1,0,0,0, - 71,898,1,0,0,0,73,903,1,0,0,0,75,907,1,0,0,0,77,916,1,0,0,0,79,921,1,0, - 0,0,81,926,1,0,0,0,83,931,1,0,0,0,85,936,1,0,0,0,87,942,1,0,0,0,89,946, - 1,0,0,0,91,951,1,0,0,0,93,957,1,0,0,0,95,963,1,0,0,0,97,969,1,0,0,0,99, - 974,1,0,0,0,101,979,1,0,0,0,103,985,1,0,0,0,105,990,1,0,0,0,107,995,1,0, - 0,0,109,1003,1,0,0,0,111,1006,1,0,0,0,113,1012,1,0,0,0,115,1020,1,0,0,0, - 117,1027,1,0,0,0,119,1032,1,0,0,0,121,1042,1,0,0,0,123,1048,1,0,0,0,125, - 1053,1,0,0,0,127,1063,1,0,0,0,129,1073,1,0,0,0,131,1083,1,0,0,0,133,1091, - 1,0,0,0,135,1097,1,0,0,0,137,1103,1,0,0,0,139,1108,1,0,0,0,141,1113,1,0, - 0,0,143,1121,1,0,0,0,145,1128,1,0,0,0,147,1135,1,0,0,0,149,1141,1,0,0,0, - 151,1151,1,0,0,0,153,1156,1,0,0,0,155,1164,1,0,0,0,157,1172,1,0,0,0,159, - 1182,1,0,0,0,161,1189,1,0,0,0,163,1196,1,0,0,0,165,1203,1,0,0,0,167,1208, - 1,0,0,0,169,1217,1,0,0,0,171,1225,1,0,0,0,173,1230,1,0,0,0,175,1245,1,0, - 0,0,177,1265,1,0,0,0,179,1280,1,0,0,0,181,1287,1,0,0,0,183,1295,1,0,0,0, - 185,1303,1,0,0,0,187,1308,1,0,0,0,189,1313,1,0,0,0,191,1318,1,0,0,0,193, - 1325,1,0,0,0,195,1333,1,0,0,0,197,1340,1,0,0,0,199,1344,1,0,0,0,201,1351, - 1,0,0,0,203,1359,1,0,0,0,205,1370,1,0,0,0,207,1380,1,0,0,0,209,1385,1,0, - 0,0,211,1391,1,0,0,0,213,1398,1,0,0,0,215,1407,1,0,0,0,217,1417,1,0,0,0, - 219,1420,1,0,0,0,221,1432,1,0,0,0,223,1441,1,0,0,0,225,1447,1,0,0,0,227, - 1454,1,0,0,0,229,1461,1,0,0,0,231,1469,1,0,0,0,233,1473,1,0,0,0,235,1479, - 1,0,0,0,237,1484,1,0,0,0,239,1490,1,0,0,0,241,1502,1,0,0,0,243,1509,1,0, - 0,0,245,1518,1,0,0,0,247,1524,1,0,0,0,249,1531,1,0,0,0,251,1536,1,0,0,0, - 253,1544,1,0,0,0,255,1553,1,0,0,0,257,1556,1,0,0,0,259,1565,1,0,0,0,261, - 1573,1,0,0,0,263,1579,1,0,0,0,265,1583,1,0,0,0,267,1594,1,0,0,0,269,1601, - 1,0,0,0,271,1605,1,0,0,0,273,1608,1,0,0,0,275,1613,1,0,0,0,277,1621,1,0, - 0,0,279,1632,1,0,0,0,281,1642,1,0,0,0,283,1652,1,0,0,0,285,1659,1,0,0,0, - 287,1665,1,0,0,0,289,1671,1,0,0,0,291,1687,1,0,0,0,293,1700,1,0,0,0,295, - 1713,1,0,0,0,297,1723,1,0,0,0,299,1730,1,0,0,0,301,1741,1,0,0,0,303,1752, - 1,0,0,0,305,1758,1,0,0,0,307,1763,1,0,0,0,309,1771,1,0,0,0,311,1777,1,0, - 0,0,313,1787,1,0,0,0,315,1796,1,0,0,0,317,1805,1,0,0,0,319,1813,1,0,0,0, - 321,1819,1,0,0,0,323,1825,1,0,0,0,325,1833,1,0,0,0,327,1838,1,0,0,0,329, - 1848,1,0,0,0,331,1855,1,0,0,0,333,1865,1,0,0,0,335,1873,1,0,0,0,337,1879, - 1,0,0,0,339,1893,1,0,0,0,341,1906,1,0,0,0,343,1914,1,0,0,0,345,1921,1,0, - 0,0,347,1928,1,0,0,0,349,1940,1,0,0,0,351,1949,1,0,0,0,353,1958,1,0,0,0, - 355,1966,1,0,0,0,357,1976,1,0,0,0,359,1987,1,0,0,0,361,1993,1,0,0,0,363, - 2001,1,0,0,0,365,2013,1,0,0,0,367,2020,1,0,0,0,369,2028,1,0,0,0,371,2039, - 1,0,0,0,373,2048,1,0,0,0,375,2058,1,0,0,0,377,2065,1,0,0,0,379,2071,1,0, - 0,0,381,2083,1,0,0,0,383,2096,1,0,0,0,385,2105,1,0,0,0,387,2115,1,0,0,0, - 389,2119,1,0,0,0,391,2128,1,0,0,0,393,2136,1,0,0,0,395,2144,1,0,0,0,397, - 2149,1,0,0,0,399,2160,1,0,0,0,401,2172,1,0,0,0,403,2181,1,0,0,0,405,2189, - 1,0,0,0,407,2196,1,0,0,0,409,2202,1,0,0,0,411,2207,1,0,0,0,413,2214,1,0, - 0,0,415,2219,1,0,0,0,417,2226,1,0,0,0,419,2234,1,0,0,0,421,2241,1,0,0,0, - 423,2248,1,0,0,0,425,2253,1,0,0,0,427,2260,1,0,0,0,429,2265,1,0,0,0,431, - 2271,1,0,0,0,433,2283,1,0,0,0,435,2294,1,0,0,0,437,2307,1,0,0,0,439,2313, - 1,0,0,0,441,2321,1,0,0,0,443,2327,1,0,0,0,445,2334,1,0,0,0,447,2339,1,0, - 0,0,449,2345,1,0,0,0,451,2352,1,0,0,0,453,2362,1,0,0,0,455,2369,1,0,0,0, - 457,2375,1,0,0,0,459,2380,1,0,0,0,461,2387,1,0,0,0,463,2390,1,0,0,0,465, - 2397,1,0,0,0,467,2407,1,0,0,0,469,2417,1,0,0,0,471,2429,1,0,0,0,473,2441, - 1,0,0,0,475,2451,1,0,0,0,477,2462,1,0,0,0,479,2470,1,0,0,0,481,2479,1,0, - 0,0,483,2484,1,0,0,0,485,2490,1,0,0,0,487,2497,1,0,0,0,489,2501,1,0,0,0, - 491,2506,1,0,0,0,493,2519,1,0,0,0,495,2539,1,0,0,0,497,2559,1,0,0,0,499, - 2570,1,0,0,0,501,2586,1,0,0,0,503,2603,1,0,0,0,505,2610,1,0,0,0,507,2619, - 1,0,0,0,509,2625,1,0,0,0,511,2630,1,0,0,0,513,2638,1,0,0,0,515,2642,1,0, - 0,0,517,2649,1,0,0,0,519,2661,1,0,0,0,521,2670,1,0,0,0,523,2679,1,0,0,0, - 525,2687,1,0,0,0,527,2692,1,0,0,0,529,2699,1,0,0,0,531,2705,1,0,0,0,533, - 2709,1,0,0,0,535,2714,1,0,0,0,537,2722,1,0,0,0,539,2729,1,0,0,0,541,2739, - 1,0,0,0,543,2745,1,0,0,0,545,2753,1,0,0,0,547,2757,1,0,0,0,549,2765,1,0, - 0,0,551,2773,1,0,0,0,553,2782,1,0,0,0,555,2786,1,0,0,0,557,2794,1,0,0,0, - 559,2801,1,0,0,0,561,2807,1,0,0,0,563,2814,1,0,0,0,565,2819,1,0,0,0,567, - 2824,1,0,0,0,569,2834,1,0,0,0,571,2848,1,0,0,0,573,2857,1,0,0,0,575,2865, - 1,0,0,0,577,2869,1,0,0,0,579,2873,1,0,0,0,581,2878,1,0,0,0,583,2887,1,0, - 0,0,585,2889,1,0,0,0,587,2891,1,0,0,0,589,2893,1,0,0,0,591,2895,1,0,0,0, - 593,2897,1,0,0,0,595,2899,1,0,0,0,597,2901,1,0,0,0,599,2903,1,0,0,0,601, - 2905,1,0,0,0,603,2907,1,0,0,0,605,2909,1,0,0,0,607,2911,1,0,0,0,609,2913, - 1,0,0,0,611,2915,1,0,0,0,613,2917,1,0,0,0,615,2919,1,0,0,0,617,2921,1,0, - 0,0,619,2923,1,0,0,0,621,2925,1,0,0,0,623,2927,1,0,0,0,625,2929,1,0,0,0, - 627,2931,1,0,0,0,629,2933,1,0,0,0,631,2935,1,0,0,0,633,2937,1,0,0,0,635, - 2940,1,0,0,0,637,2943,1,0,0,0,639,2945,1,0,0,0,641,2948,1,0,0,0,643,2954, - 1,0,0,0,645,2957,1,0,0,0,647,3004,1,0,0,0,649,3006,1,0,0,0,651,3008,1,0, - 0,0,653,3010,1,0,0,0,655,3012,1,0,0,0,657,3021,1,0,0,0,659,3025,1,0,0,0, - 661,3038,1,0,0,0,663,3050,1,0,0,0,665,3067,1,0,0,0,667,3081,1,0,0,0,669, - 3083,1,0,0,0,671,3085,1,0,0,0,673,3098,1,0,0,0,675,3111,1,0,0,0,677,3120, - 1,0,0,0,679,681,7,0,0,0,680,679,1,0,0,0,681,682,1,0,0,0,682,680,1,0,0,0, - 682,683,1,0,0,0,683,684,1,0,0,0,684,685,6,0,0,0,685,2,1,0,0,0,686,687,5, - 47,0,0,687,688,5,42,0,0,688,692,1,0,0,0,689,691,9,0,0,0,690,689,1,0,0,0, - 691,694,1,0,0,0,692,693,1,0,0,0,692,690,1,0,0,0,693,695,1,0,0,0,694,692, - 1,0,0,0,695,696,5,42,0,0,696,697,5,47,0,0,697,698,1,0,0,0,698,699,6,1,0, - 0,699,4,1,0,0,0,700,701,5,45,0,0,701,704,5,45,0,0,702,704,5,35,0,0,703, - 700,1,0,0,0,703,702,1,0,0,0,704,708,1,0,0,0,705,707,8,1,0,0,706,705,1,0, - 0,0,707,710,1,0,0,0,708,706,1,0,0,0,708,709,1,0,0,0,709,716,1,0,0,0,710, - 708,1,0,0,0,711,713,5,13,0,0,712,711,1,0,0,0,712,713,1,0,0,0,713,714,1, - 0,0,0,714,717,5,10,0,0,715,717,5,0,0,1,716,712,1,0,0,0,716,715,1,0,0,0, - 717,729,1,0,0,0,718,719,5,45,0,0,719,720,5,45,0,0,720,726,1,0,0,0,721,723, - 5,13,0,0,722,721,1,0,0,0,722,723,1,0,0,0,723,724,1,0,0,0,724,727,5,10,0, - 0,725,727,5,0,0,1,726,722,1,0,0,0,726,725,1,0,0,0,727,729,1,0,0,0,728,703, - 1,0,0,0,728,718,1,0,0,0,729,730,1,0,0,0,730,731,6,2,0,0,731,6,1,0,0,0,732, - 733,5,83,0,0,733,734,5,69,0,0,734,735,5,76,0,0,735,736,5,69,0,0,736,737, - 5,67,0,0,737,738,5,84,0,0,738,8,1,0,0,0,739,740,5,70,0,0,740,741,5,82,0, - 0,741,742,5,79,0,0,742,743,5,77,0,0,743,10,1,0,0,0,744,745,5,65,0,0,745, - 746,5,68,0,0,746,747,5,68,0,0,747,12,1,0,0,0,748,749,5,65,0,0,749,750,5, - 83,0,0,750,14,1,0,0,0,751,752,5,65,0,0,752,753,5,76,0,0,753,754,5,76,0, - 0,754,16,1,0,0,0,755,756,5,65,0,0,756,757,5,78,0,0,757,758,5,89,0,0,758, - 18,1,0,0,0,759,760,5,68,0,0,760,761,5,73,0,0,761,762,5,83,0,0,762,763,5, - 84,0,0,763,764,5,73,0,0,764,765,5,78,0,0,765,766,5,67,0,0,766,767,5,84, - 0,0,767,20,1,0,0,0,768,769,5,87,0,0,769,770,5,72,0,0,770,771,5,69,0,0,771, - 772,5,82,0,0,772,773,5,69,0,0,773,22,1,0,0,0,774,775,5,71,0,0,775,776,5, - 82,0,0,776,777,5,79,0,0,777,778,5,85,0,0,778,779,5,80,0,0,779,24,1,0,0, - 0,780,781,5,66,0,0,781,782,5,89,0,0,782,26,1,0,0,0,783,784,5,71,0,0,784, - 785,5,82,0,0,785,786,5,79,0,0,786,787,5,85,0,0,787,788,5,80,0,0,788,789, - 5,73,0,0,789,790,5,78,0,0,790,791,5,71,0,0,791,28,1,0,0,0,792,793,5,83, - 0,0,793,794,5,69,0,0,794,795,5,84,0,0,795,796,5,83,0,0,796,30,1,0,0,0,797, - 798,5,67,0,0,798,799,5,85,0,0,799,800,5,66,0,0,800,801,5,69,0,0,801,32, - 1,0,0,0,802,803,5,82,0,0,803,804,5,79,0,0,804,805,5,76,0,0,805,806,5,76, - 0,0,806,807,5,85,0,0,807,808,5,80,0,0,808,34,1,0,0,0,809,810,5,79,0,0,810, - 811,5,82,0,0,811,812,5,68,0,0,812,813,5,69,0,0,813,814,5,82,0,0,814,36, - 1,0,0,0,815,816,5,72,0,0,816,817,5,65,0,0,817,818,5,86,0,0,818,819,5,73, - 0,0,819,820,5,78,0,0,820,821,5,71,0,0,821,38,1,0,0,0,822,823,5,76,0,0,823, - 824,5,73,0,0,824,825,5,77,0,0,825,826,5,73,0,0,826,827,5,84,0,0,827,40, - 1,0,0,0,828,829,5,65,0,0,829,830,5,84,0,0,830,42,1,0,0,0,831,832,5,79,0, - 0,832,833,5,82,0,0,833,44,1,0,0,0,834,835,5,65,0,0,835,836,5,78,0,0,836, - 837,5,68,0,0,837,46,1,0,0,0,838,839,5,73,0,0,839,840,5,78,0,0,840,48,1, - 0,0,0,841,842,5,78,0,0,842,843,5,79,0,0,843,844,5,84,0,0,844,50,1,0,0,0, - 845,846,5,78,0,0,846,847,5,79,0,0,847,52,1,0,0,0,848,849,5,69,0,0,849,850, - 5,88,0,0,850,851,5,73,0,0,851,852,5,83,0,0,852,853,5,84,0,0,853,854,5,83, - 0,0,854,54,1,0,0,0,855,856,5,66,0,0,856,857,5,69,0,0,857,858,5,84,0,0,858, - 859,5,87,0,0,859,860,5,69,0,0,860,861,5,69,0,0,861,862,5,78,0,0,862,56, - 1,0,0,0,863,864,5,76,0,0,864,865,5,73,0,0,865,866,5,75,0,0,866,867,5,69, - 0,0,867,58,1,0,0,0,868,869,5,82,0,0,869,870,5,76,0,0,870,871,5,73,0,0,871, - 872,5,75,0,0,872,873,5,69,0,0,873,60,1,0,0,0,874,875,5,73,0,0,875,876,5, - 83,0,0,876,62,1,0,0,0,877,878,5,84,0,0,878,879,5,82,0,0,879,880,5,85,0, - 0,880,881,5,69,0,0,881,64,1,0,0,0,882,883,5,70,0,0,883,884,5,65,0,0,884, - 885,5,76,0,0,885,886,5,83,0,0,886,887,5,69,0,0,887,66,1,0,0,0,888,889,5, - 78,0,0,889,890,5,85,0,0,890,891,5,76,0,0,891,892,5,76,0,0,892,893,5,83, - 0,0,893,68,1,0,0,0,894,895,5,65,0,0,895,896,5,83,0,0,896,897,5,67,0,0,897, - 70,1,0,0,0,898,899,5,68,0,0,899,900,5,69,0,0,900,901,5,83,0,0,901,902,5, - 67,0,0,902,72,1,0,0,0,903,904,5,70,0,0,904,905,5,79,0,0,905,906,5,82,0, - 0,906,74,1,0,0,0,907,908,5,73,0,0,908,909,5,78,0,0,909,910,5,84,0,0,910, - 911,5,69,0,0,911,912,5,82,0,0,912,913,5,86,0,0,913,914,5,65,0,0,914,915, - 5,76,0,0,915,76,1,0,0,0,916,917,5,67,0,0,917,918,5,65,0,0,918,919,5,83, - 0,0,919,920,5,69,0,0,920,78,1,0,0,0,921,922,5,87,0,0,922,923,5,72,0,0,923, - 924,5,69,0,0,924,925,5,78,0,0,925,80,1,0,0,0,926,927,5,84,0,0,927,928,5, - 72,0,0,928,929,5,69,0,0,929,930,5,78,0,0,930,82,1,0,0,0,931,932,5,69,0, - 0,932,933,5,76,0,0,933,934,5,83,0,0,934,935,5,69,0,0,935,84,1,0,0,0,936, - 937,5,66,0,0,937,938,5,69,0,0,938,939,5,71,0,0,939,940,5,73,0,0,940,941, - 5,78,0,0,941,86,1,0,0,0,942,943,5,69,0,0,943,944,5,78,0,0,944,945,5,68, - 0,0,945,88,1,0,0,0,946,947,5,74,0,0,947,948,5,79,0,0,948,949,5,73,0,0,949, - 950,5,78,0,0,950,90,1,0,0,0,951,952,5,67,0,0,952,953,5,82,0,0,953,954,5, - 79,0,0,954,955,5,83,0,0,955,956,5,83,0,0,956,92,1,0,0,0,957,958,5,79,0, - 0,958,959,5,85,0,0,959,960,5,84,0,0,960,961,5,69,0,0,961,962,5,82,0,0,962, - 94,1,0,0,0,963,964,5,73,0,0,964,965,5,78,0,0,965,966,5,78,0,0,966,967,5, - 69,0,0,967,968,5,82,0,0,968,96,1,0,0,0,969,970,5,76,0,0,970,971,5,69,0, - 0,971,972,5,70,0,0,972,973,5,84,0,0,973,98,1,0,0,0,974,975,5,83,0,0,975, - 976,5,69,0,0,976,977,5,77,0,0,977,978,5,73,0,0,978,100,1,0,0,0,979,980, - 5,82,0,0,980,981,5,73,0,0,981,982,5,71,0,0,982,983,5,72,0,0,983,984,5,84, - 0,0,984,102,1,0,0,0,985,986,5,70,0,0,986,987,5,85,0,0,987,988,5,76,0,0, - 988,989,5,76,0,0,989,104,1,0,0,0,990,991,5,85,0,0,991,992,5,83,0,0,992, - 993,5,69,0,0,993,994,5,82,0,0,994,106,1,0,0,0,995,996,5,78,0,0,996,997, - 5,65,0,0,997,998,5,84,0,0,998,999,5,85,0,0,999,1000,5,82,0,0,1000,1001, - 5,65,0,0,1001,1002,5,76,0,0,1002,108,1,0,0,0,1003,1004,5,79,0,0,1004,1005, - 5,78,0,0,1005,110,1,0,0,0,1006,1007,5,80,0,0,1007,1008,5,73,0,0,1008,1009, - 5,86,0,0,1009,1010,5,79,0,0,1010,1011,5,84,0,0,1011,112,1,0,0,0,1012,1013, - 5,76,0,0,1013,1014,5,65,0,0,1014,1015,5,84,0,0,1015,1016,5,69,0,0,1016, - 1017,5,82,0,0,1017,1018,5,65,0,0,1018,1019,5,76,0,0,1019,114,1,0,0,0,1020, - 1021,5,87,0,0,1021,1022,5,73,0,0,1022,1023,5,78,0,0,1023,1024,5,68,0,0, - 1024,1025,5,79,0,0,1025,1026,5,87,0,0,1026,116,1,0,0,0,1027,1028,5,79,0, - 0,1028,1029,5,86,0,0,1029,1030,5,69,0,0,1030,1031,5,82,0,0,1031,118,1,0, - 0,0,1032,1033,5,80,0,0,1033,1034,5,65,0,0,1034,1035,5,82,0,0,1035,1036, - 5,84,0,0,1036,1037,5,73,0,0,1037,1038,5,84,0,0,1038,1039,5,73,0,0,1039, - 1040,5,79,0,0,1040,1041,5,78,0,0,1041,120,1,0,0,0,1042,1043,5,82,0,0,1043, - 1044,5,65,0,0,1044,1045,5,78,0,0,1045,1046,5,71,0,0,1046,1047,5,69,0,0, - 1047,122,1,0,0,0,1048,1049,5,82,0,0,1049,1050,5,79,0,0,1050,1051,5,87,0, - 0,1051,1052,5,83,0,0,1052,124,1,0,0,0,1053,1054,5,85,0,0,1054,1055,5,78, - 0,0,1055,1056,5,66,0,0,1056,1057,5,79,0,0,1057,1058,5,85,0,0,1058,1059, - 5,78,0,0,1059,1060,5,68,0,0,1060,1061,5,69,0,0,1061,1062,5,68,0,0,1062, - 126,1,0,0,0,1063,1064,5,80,0,0,1064,1065,5,82,0,0,1065,1066,5,69,0,0,1066, - 1067,5,67,0,0,1067,1068,5,69,0,0,1068,1069,5,68,0,0,1069,1070,5,73,0,0, - 1070,1071,5,78,0,0,1071,1072,5,71,0,0,1072,128,1,0,0,0,1073,1074,5,70,0, - 0,1074,1075,5,79,0,0,1075,1076,5,76,0,0,1076,1077,5,76,0,0,1077,1078,5, - 79,0,0,1078,1079,5,87,0,0,1079,1080,5,73,0,0,1080,1081,5,78,0,0,1081,1082, - 5,71,0,0,1082,130,1,0,0,0,1083,1084,5,67,0,0,1084,1085,5,85,0,0,1085,1086, - 5,82,0,0,1086,1087,5,82,0,0,1087,1088,5,69,0,0,1088,1089,5,78,0,0,1089, - 1090,5,84,0,0,1090,132,1,0,0,0,1091,1092,5,70,0,0,1092,1093,5,73,0,0,1093, - 1094,5,82,0,0,1094,1095,5,83,0,0,1095,1096,5,84,0,0,1096,134,1,0,0,0,1097, - 1098,5,65,0,0,1098,1099,5,70,0,0,1099,1100,5,84,0,0,1100,1101,5,69,0,0, - 1101,1102,5,82,0,0,1102,136,1,0,0,0,1103,1104,5,76,0,0,1104,1105,5,65,0, - 0,1105,1106,5,83,0,0,1106,1107,5,84,0,0,1107,138,1,0,0,0,1108,1109,5,87, - 0,0,1109,1110,5,73,0,0,1110,1111,5,84,0,0,1111,1112,5,72,0,0,1112,140,1, - 0,0,0,1113,1114,5,87,0,0,1114,1115,5,73,0,0,1115,1116,5,84,0,0,1116,1117, - 5,72,0,0,1117,1118,5,79,0,0,1118,1119,5,85,0,0,1119,1120,5,84,0,0,1120, - 142,1,0,0,0,1121,1122,5,86,0,0,1122,1123,5,65,0,0,1123,1124,5,76,0,0,1124, - 1125,5,85,0,0,1125,1126,5,69,0,0,1126,1127,5,83,0,0,1127,144,1,0,0,0,1128, - 1129,5,67,0,0,1129,1130,5,82,0,0,1130,1131,5,69,0,0,1131,1132,5,65,0,0, - 1132,1133,5,84,0,0,1133,1134,5,69,0,0,1134,146,1,0,0,0,1135,1136,5,84,0, - 0,1136,1137,5,65,0,0,1137,1138,5,66,0,0,1138,1139,5,76,0,0,1139,1140,5, - 69,0,0,1140,148,1,0,0,0,1141,1142,5,68,0,0,1142,1143,5,73,0,0,1143,1144, - 5,82,0,0,1144,1145,5,69,0,0,1145,1146,5,67,0,0,1146,1147,5,84,0,0,1147, - 1148,5,79,0,0,1148,1149,5,82,0,0,1149,1150,5,89,0,0,1150,150,1,0,0,0,1151, - 1152,5,86,0,0,1152,1153,5,73,0,0,1153,1154,5,69,0,0,1154,1155,5,87,0,0, - 1155,152,1,0,0,0,1156,1157,5,82,0,0,1157,1158,5,69,0,0,1158,1159,5,80,0, - 0,1159,1160,5,76,0,0,1160,1161,5,65,0,0,1161,1162,5,67,0,0,1162,1163,5, - 69,0,0,1163,154,1,0,0,0,1164,1165,5,69,0,0,1165,1166,5,88,0,0,1166,1167, - 5,69,0,0,1167,1168,5,67,0,0,1168,1169,5,85,0,0,1169,1170,5,84,0,0,1170, - 1171,5,69,0,0,1171,156,1,0,0,0,1172,1173,5,83,0,0,1173,1174,5,84,0,0,1174, - 1175,5,65,0,0,1175,1176,5,84,0,0,1176,1177,5,69,0,0,1177,1178,5,77,0,0, - 1178,1179,5,69,0,0,1179,1180,5,78,0,0,1180,1181,5,84,0,0,1181,158,1,0,0, - 0,1182,1183,5,73,0,0,1183,1184,5,78,0,0,1184,1185,5,83,0,0,1185,1186,5, - 69,0,0,1186,1187,5,82,0,0,1187,1188,5,84,0,0,1188,160,1,0,0,0,1189,1190, - 5,68,0,0,1190,1191,5,69,0,0,1191,1192,5,76,0,0,1192,1193,5,69,0,0,1193, - 1194,5,84,0,0,1194,1195,5,69,0,0,1195,162,1,0,0,0,1196,1197,5,82,0,0,1197, - 1198,5,69,0,0,1198,1199,5,77,0,0,1199,1200,5,79,0,0,1200,1201,5,86,0,0, - 1201,1202,5,69,0,0,1202,164,1,0,0,0,1203,1204,5,73,0,0,1204,1205,5,78,0, - 0,1205,1206,5,84,0,0,1206,1207,5,79,0,0,1207,166,1,0,0,0,1208,1209,5,68, - 0,0,1209,1210,5,69,0,0,1210,1211,5,83,0,0,1211,1212,5,67,0,0,1212,1213, - 5,82,0,0,1213,1214,5,73,0,0,1214,1215,5,66,0,0,1215,1216,5,69,0,0,1216, - 168,1,0,0,0,1217,1218,5,69,0,0,1218,1219,5,88,0,0,1219,1220,5,80,0,0,1220, - 1221,5,76,0,0,1221,1222,5,65,0,0,1222,1223,5,73,0,0,1223,1224,5,78,0,0, - 1224,170,1,0,0,0,1225,1226,5,80,0,0,1226,1227,5,76,0,0,1227,1228,5,65,0, - 0,1228,1229,5,78,0,0,1229,172,1,0,0,0,1230,1231,5,67,0,0,1231,1232,5,72, - 0,0,1232,1233,5,65,0,0,1233,1234,5,78,0,0,1234,1235,5,71,0,0,1235,1236, - 5,69,0,0,1236,1237,5,76,0,0,1237,1238,5,79,0,0,1238,1239,5,71,0,0,1239, - 1240,5,95,0,0,1240,1241,5,77,0,0,1241,1242,5,79,0,0,1242,1243,5,68,0,0, - 1243,1244,5,69,0,0,1244,174,1,0,0,0,1245,1246,5,74,0,0,1246,1247,5,83,0, - 0,1247,1248,5,79,0,0,1248,1249,5,78,0,0,1249,1250,5,95,0,0,1250,1251,5, - 69,0,0,1251,1252,5,88,0,0,1252,1253,5,69,0,0,1253,1254,5,67,0,0,1254,1255, - 5,85,0,0,1255,1256,5,84,0,0,1256,1257,5,73,0,0,1257,1258,5,79,0,0,1258, - 1259,5,78,0,0,1259,1260,5,95,0,0,1260,1261,5,80,0,0,1261,1262,5,76,0,0, - 1262,1263,5,65,0,0,1263,1264,5,78,0,0,1264,176,1,0,0,0,1265,1266,5,69,0, - 0,1266,1267,5,83,0,0,1267,1268,5,84,0,0,1268,1269,5,73,0,0,1269,1270,5, - 77,0,0,1270,1271,5,65,0,0,1271,1272,5,84,0,0,1272,1273,5,69,0,0,1273,1274, - 5,68,0,0,1274,1275,5,95,0,0,1275,1276,5,67,0,0,1276,1277,5,79,0,0,1277, - 1278,5,83,0,0,1278,1279,5,84,0,0,1279,178,1,0,0,0,1280,1281,5,70,0,0,1281, - 1282,5,79,0,0,1282,1283,5,82,0,0,1283,1284,5,77,0,0,1284,1285,5,65,0,0, - 1285,1286,5,84,0,0,1286,180,1,0,0,0,1287,1288,5,76,0,0,1288,1289,5,79,0, - 0,1289,1290,5,71,0,0,1290,1291,5,73,0,0,1291,1292,5,67,0,0,1292,1293,5, - 65,0,0,1293,1294,5,76,0,0,1294,182,1,0,0,0,1295,1296,5,67,0,0,1296,1297, - 5,79,0,0,1297,1298,5,68,0,0,1298,1299,5,69,0,0,1299,1300,5,71,0,0,1300, - 1301,5,69,0,0,1301,1302,5,78,0,0,1302,184,1,0,0,0,1303,1304,5,67,0,0,1304, - 1305,5,79,0,0,1305,1306,5,83,0,0,1306,1307,5,84,0,0,1307,186,1,0,0,0,1308, - 1309,5,67,0,0,1309,1310,5,65,0,0,1310,1311,5,83,0,0,1311,1312,5,84,0,0, - 1312,188,1,0,0,0,1313,1314,5,83,0,0,1314,1315,5,72,0,0,1315,1316,5,79,0, - 0,1316,1317,5,87,0,0,1317,190,1,0,0,0,1318,1319,5,84,0,0,1319,1320,5,65, - 0,0,1320,1321,5,66,0,0,1321,1322,5,76,0,0,1322,1323,5,69,0,0,1323,1324, - 5,83,0,0,1324,192,1,0,0,0,1325,1326,5,67,0,0,1326,1327,5,79,0,0,1327,1328, - 5,76,0,0,1328,1329,5,85,0,0,1329,1330,5,77,0,0,1330,1331,5,78,0,0,1331, - 1332,5,83,0,0,1332,194,1,0,0,0,1333,1334,5,67,0,0,1334,1335,5,79,0,0,1335, - 1336,5,76,0,0,1336,1337,5,85,0,0,1337,1338,5,77,0,0,1338,1339,5,78,0,0, - 1339,196,1,0,0,0,1340,1341,5,85,0,0,1341,1342,5,83,0,0,1342,1343,5,69,0, - 0,1343,198,1,0,0,0,1344,1345,5,77,0,0,1345,1346,5,79,0,0,1346,1347,5,68, - 0,0,1347,1348,5,85,0,0,1348,1349,5,76,0,0,1349,1350,5,69,0,0,1350,200,1, - 0,0,0,1351,1352,5,77,0,0,1352,1353,5,79,0,0,1353,1354,5,68,0,0,1354,1355, - 5,85,0,0,1355,1356,5,76,0,0,1356,1357,5,69,0,0,1357,1358,5,83,0,0,1358, - 202,1,0,0,0,1359,1360,5,80,0,0,1360,1361,5,65,0,0,1361,1362,5,82,0,0,1362, - 1363,5,84,0,0,1363,1364,5,73,0,0,1364,1365,5,84,0,0,1365,1366,5,73,0,0, - 1366,1367,5,79,0,0,1367,1368,5,78,0,0,1368,1369,5,83,0,0,1369,204,1,0,0, - 0,1370,1371,5,70,0,0,1371,1372,5,85,0,0,1372,1373,5,78,0,0,1373,1374,5, - 67,0,0,1374,1375,5,84,0,0,1375,1376,5,73,0,0,1376,1377,5,79,0,0,1377,1378, - 5,78,0,0,1378,1379,5,83,0,0,1379,206,1,0,0,0,1380,1381,5,68,0,0,1381,1382, - 5,82,0,0,1382,1383,5,79,0,0,1383,1384,5,80,0,0,1384,208,1,0,0,0,1385,1386, - 5,85,0,0,1386,1387,5,78,0,0,1387,1388,5,73,0,0,1388,1389,5,79,0,0,1389, - 1390,5,78,0,0,1390,210,1,0,0,0,1391,1392,5,69,0,0,1392,1393,5,88,0,0,1393, - 1394,5,67,0,0,1394,1395,5,69,0,0,1395,1396,5,80,0,0,1396,1397,5,84,0,0, - 1397,212,1,0,0,0,1398,1399,5,83,0,0,1399,1400,5,69,0,0,1400,1401,5,84,0, - 0,1401,1402,5,77,0,0,1402,1403,5,73,0,0,1403,1404,5,78,0,0,1404,1405,5, - 85,0,0,1405,1406,5,83,0,0,1406,214,1,0,0,0,1407,1408,5,73,0,0,1408,1409, - 5,78,0,0,1409,1410,5,84,0,0,1410,1411,5,69,0,0,1411,1412,5,82,0,0,1412, - 1413,5,83,0,0,1413,1414,5,69,0,0,1414,1415,5,67,0,0,1415,1416,5,84,0,0, - 1416,216,1,0,0,0,1417,1418,5,84,0,0,1418,1419,5,79,0,0,1419,218,1,0,0,0, - 1420,1421,5,84,0,0,1421,1422,5,65,0,0,1422,1423,5,66,0,0,1423,1424,5,76, - 0,0,1424,1425,5,69,0,0,1425,1426,5,83,0,0,1426,1427,5,65,0,0,1427,1428, - 5,77,0,0,1428,1429,5,80,0,0,1429,1430,5,76,0,0,1430,1431,5,69,0,0,1431, - 220,1,0,0,0,1432,1433,5,83,0,0,1433,1434,5,84,0,0,1434,1435,5,82,0,0,1435, - 1436,5,65,0,0,1436,1437,5,84,0,0,1437,1438,5,73,0,0,1438,1439,5,70,0,0, - 1439,1440,5,89,0,0,1440,222,1,0,0,0,1441,1442,5,65,0,0,1442,1443,5,76,0, - 0,1443,1444,5,84,0,0,1444,1445,5,69,0,0,1445,1446,5,82,0,0,1446,224,1,0, - 0,0,1447,1448,5,82,0,0,1448,1449,5,69,0,0,1449,1450,5,78,0,0,1450,1451, - 5,65,0,0,1451,1452,5,77,0,0,1452,1453,5,69,0,0,1453,226,1,0,0,0,1454,1455, - 5,83,0,0,1455,1456,5,84,0,0,1456,1457,5,82,0,0,1457,1458,5,85,0,0,1458, - 1459,5,67,0,0,1459,1460,5,84,0,0,1460,228,1,0,0,0,1461,1462,5,67,0,0,1462, - 1463,5,79,0,0,1463,1464,5,77,0,0,1464,1465,5,77,0,0,1465,1466,5,69,0,0, - 1466,1467,5,78,0,0,1467,1468,5,84,0,0,1468,230,1,0,0,0,1469,1470,5,83,0, - 0,1470,1471,5,69,0,0,1471,1472,5,84,0,0,1472,232,1,0,0,0,1473,1474,5,82, - 0,0,1474,1475,5,69,0,0,1475,1476,5,83,0,0,1476,1477,5,69,0,0,1477,1478, - 5,84,0,0,1478,234,1,0,0,0,1479,1480,5,68,0,0,1480,1481,5,65,0,0,1481,1482, - 5,84,0,0,1482,1483,5,65,0,0,1483,236,1,0,0,0,1484,1485,5,83,0,0,1485,1486, - 5,84,0,0,1486,1487,5,65,0,0,1487,1488,5,82,0,0,1488,1489,5,84,0,0,1489, - 238,1,0,0,0,1490,1491,5,84,0,0,1491,1492,5,82,0,0,1492,1493,5,65,0,0,1493, - 1494,5,78,0,0,1494,1495,5,83,0,0,1495,1496,5,65,0,0,1496,1497,5,67,0,0, - 1497,1498,5,84,0,0,1498,1499,5,73,0,0,1499,1500,5,79,0,0,1500,1501,5,78, - 0,0,1501,240,1,0,0,0,1502,1503,5,67,0,0,1503,1504,5,79,0,0,1504,1505,5, - 77,0,0,1505,1506,5,77,0,0,1506,1507,5,73,0,0,1507,1508,5,84,0,0,1508,242, - 1,0,0,0,1509,1510,5,82,0,0,1510,1511,5,79,0,0,1511,1512,5,76,0,0,1512,1513, - 5,76,0,0,1513,1514,5,66,0,0,1514,1515,5,65,0,0,1515,1516,5,67,0,0,1516, - 1517,5,75,0,0,1517,244,1,0,0,0,1518,1519,5,77,0,0,1519,1520,5,65,0,0,1520, - 1521,5,67,0,0,1521,1522,5,82,0,0,1522,1523,5,79,0,0,1523,246,1,0,0,0,1524, - 1525,5,73,0,0,1525,1526,5,71,0,0,1526,1527,5,78,0,0,1527,1528,5,79,0,0, - 1528,1529,5,82,0,0,1529,1530,5,69,0,0,1530,248,1,0,0,0,1531,1532,5,66,0, - 0,1532,1533,5,79,0,0,1533,1534,5,84,0,0,1534,1535,5,72,0,0,1535,250,1,0, - 0,0,1536,1537,5,76,0,0,1537,1538,5,69,0,0,1538,1539,5,65,0,0,1539,1540, - 5,68,0,0,1540,1541,5,73,0,0,1541,1542,5,78,0,0,1542,1543,5,71,0,0,1543, - 252,1,0,0,0,1544,1545,5,84,0,0,1545,1546,5,82,0,0,1546,1547,5,65,0,0,1547, - 1548,5,73,0,0,1548,1549,5,76,0,0,1549,1550,5,73,0,0,1550,1551,5,78,0,0, - 1551,1552,5,71,0,0,1552,254,1,0,0,0,1553,1554,5,73,0,0,1554,1555,5,70,0, - 0,1555,256,1,0,0,0,1556,1557,5,80,0,0,1557,1558,5,79,0,0,1558,1559,5,83, - 0,0,1559,1560,5,73,0,0,1560,1561,5,84,0,0,1561,1562,5,73,0,0,1562,1563, - 5,79,0,0,1563,1564,5,78,0,0,1564,258,1,0,0,0,1565,1566,5,69,0,0,1566,1567, - 5,88,0,0,1567,1568,5,84,0,0,1568,1569,5,82,0,0,1569,1570,5,65,0,0,1570, - 1571,5,67,0,0,1571,1572,5,84,0,0,1572,260,1,0,0,0,1573,1574,5,77,0,0,1574, - 1575,5,73,0,0,1575,1576,5,78,0,0,1576,1577,5,85,0,0,1577,1578,5,83,0,0, - 1578,262,1,0,0,0,1579,1580,5,68,0,0,1580,1581,5,73,0,0,1581,1582,5,86,0, - 0,1582,264,1,0,0,0,1583,1584,5,80,0,0,1584,1585,5,69,0,0,1585,1586,5,82, - 0,0,1586,1587,5,67,0,0,1587,1588,5,69,0,0,1588,1589,5,78,0,0,1589,1590, - 5,84,0,0,1590,1591,5,76,0,0,1591,1592,5,73,0,0,1592,1593,5,84,0,0,1593, - 266,1,0,0,0,1594,1595,5,66,0,0,1595,1596,5,85,0,0,1596,1597,5,67,0,0,1597, - 1598,5,75,0,0,1598,1599,5,69,0,0,1599,1600,5,84,0,0,1600,268,1,0,0,0,1601, - 1602,5,79,0,0,1602,1603,5,85,0,0,1603,1604,5,84,0,0,1604,270,1,0,0,0,1605, - 1606,5,79,0,0,1606,1607,5,70,0,0,1607,272,1,0,0,0,1608,1609,5,83,0,0,1609, - 1610,5,79,0,0,1610,1611,5,82,0,0,1611,1612,5,84,0,0,1612,274,1,0,0,0,1613, - 1614,5,67,0,0,1614,1615,5,76,0,0,1615,1616,5,85,0,0,1616,1617,5,83,0,0, - 1617,1618,5,84,0,0,1618,1619,5,69,0,0,1619,1620,5,82,0,0,1620,276,1,0,0, - 0,1621,1622,5,68,0,0,1622,1623,5,73,0,0,1623,1624,5,83,0,0,1624,1625,5, - 84,0,0,1625,1626,5,82,0,0,1626,1627,5,73,0,0,1627,1628,5,66,0,0,1628,1629, - 5,85,0,0,1629,1630,5,84,0,0,1630,1631,5,69,0,0,1631,278,1,0,0,0,1632,1633, - 5,79,0,0,1633,1634,5,86,0,0,1634,1635,5,69,0,0,1635,1636,5,82,0,0,1636, - 1637,5,87,0,0,1637,1638,5,82,0,0,1638,1639,5,73,0,0,1639,1640,5,84,0,0, - 1640,1641,5,69,0,0,1641,280,1,0,0,0,1642,1643,5,84,0,0,1643,1644,5,82,0, - 0,1644,1645,5,65,0,0,1645,1646,5,78,0,0,1646,1647,5,83,0,0,1647,1648,5, - 70,0,0,1648,1649,5,79,0,0,1649,1650,5,82,0,0,1650,1651,5,77,0,0,1651,282, - 1,0,0,0,1652,1653,5,82,0,0,1653,1654,5,69,0,0,1654,1655,5,68,0,0,1655,1656, - 5,85,0,0,1656,1657,5,67,0,0,1657,1658,5,69,0,0,1658,284,1,0,0,0,1659,1660, - 5,85,0,0,1660,1661,5,83,0,0,1661,1662,5,73,0,0,1662,1663,5,78,0,0,1663, - 1664,5,71,0,0,1664,286,1,0,0,0,1665,1666,5,83,0,0,1666,1667,5,69,0,0,1667, - 1668,5,82,0,0,1668,1669,5,68,0,0,1669,1670,5,69,0,0,1670,288,1,0,0,0,1671, - 1672,5,83,0,0,1672,1673,5,69,0,0,1673,1674,5,82,0,0,1674,1675,5,68,0,0, - 1675,1676,5,69,0,0,1676,1677,5,80,0,0,1677,1678,5,82,0,0,1678,1679,5,79, - 0,0,1679,1680,5,80,0,0,1680,1681,5,69,0,0,1681,1682,5,82,0,0,1682,1683, - 5,84,0,0,1683,1684,5,73,0,0,1684,1685,5,69,0,0,1685,1686,5,83,0,0,1686, - 290,1,0,0,0,1687,1688,5,82,0,0,1688,1689,5,69,0,0,1689,1690,5,67,0,0,1690, - 1691,5,79,0,0,1691,1692,5,82,0,0,1692,1693,5,68,0,0,1693,1694,5,82,0,0, - 1694,1695,5,69,0,0,1695,1696,5,65,0,0,1696,1697,5,68,0,0,1697,1698,5,69, - 0,0,1698,1699,5,82,0,0,1699,292,1,0,0,0,1700,1701,5,82,0,0,1701,1702,5, - 69,0,0,1702,1703,5,67,0,0,1703,1704,5,79,0,0,1704,1705,5,82,0,0,1705,1706, - 5,68,0,0,1706,1707,5,87,0,0,1707,1708,5,82,0,0,1708,1709,5,73,0,0,1709, - 1710,5,84,0,0,1710,1711,5,69,0,0,1711,1712,5,82,0,0,1712,294,1,0,0,0,1713, - 1714,5,68,0,0,1714,1715,5,69,0,0,1715,1716,5,76,0,0,1716,1717,5,73,0,0, - 1717,1718,5,77,0,0,1718,1719,5,73,0,0,1719,1720,5,84,0,0,1720,1721,5,69, - 0,0,1721,1722,5,68,0,0,1722,296,1,0,0,0,1723,1724,5,70,0,0,1724,1725,5, - 73,0,0,1725,1726,5,69,0,0,1726,1727,5,76,0,0,1727,1728,5,68,0,0,1728,1729, - 5,83,0,0,1729,298,1,0,0,0,1730,1731,5,84,0,0,1731,1732,5,69,0,0,1732,1733, - 5,82,0,0,1733,1734,5,77,0,0,1734,1735,5,73,0,0,1735,1736,5,78,0,0,1736, - 1737,5,65,0,0,1737,1738,5,84,0,0,1738,1739,5,69,0,0,1739,1740,5,68,0,0, - 1740,300,1,0,0,0,1741,1742,5,67,0,0,1742,1743,5,79,0,0,1743,1744,5,76,0, - 0,1744,1745,5,76,0,0,1745,1746,5,69,0,0,1746,1747,5,67,0,0,1747,1748,5, - 84,0,0,1748,1749,5,73,0,0,1749,1750,5,79,0,0,1750,1751,5,78,0,0,1751,302, - 1,0,0,0,1752,1753,5,73,0,0,1753,1754,5,84,0,0,1754,1755,5,69,0,0,1755,1756, - 5,77,0,0,1756,1757,5,83,0,0,1757,304,1,0,0,0,1758,1759,5,75,0,0,1759,1760, - 5,69,0,0,1760,1761,5,89,0,0,1761,1762,5,83,0,0,1762,306,1,0,0,0,1763,1764, - 5,69,0,0,1764,1765,5,83,0,0,1765,1766,5,67,0,0,1766,1767,5,65,0,0,1767, - 1768,5,80,0,0,1768,1769,5,69,0,0,1769,1770,5,68,0,0,1770,308,1,0,0,0,1771, - 1772,5,76,0,0,1772,1773,5,73,0,0,1773,1774,5,78,0,0,1774,1775,5,69,0,0, - 1775,1776,5,83,0,0,1776,310,1,0,0,0,1777,1778,5,83,0,0,1778,1779,5,69,0, - 0,1779,1780,5,80,0,0,1780,1781,5,65,0,0,1781,1782,5,82,0,0,1782,1783,5, - 65,0,0,1783,1784,5,84,0,0,1784,1785,5,69,0,0,1785,1786,5,68,0,0,1786,312, - 1,0,0,0,1787,1788,5,70,0,0,1788,1789,5,85,0,0,1789,1790,5,78,0,0,1790,1791, - 5,67,0,0,1791,1792,5,84,0,0,1792,1793,5,73,0,0,1793,1794,5,79,0,0,1794, - 1795,5,78,0,0,1795,314,1,0,0,0,1796,1797,5,69,0,0,1797,1798,5,88,0,0,1798, - 1799,5,84,0,0,1799,1800,5,69,0,0,1800,1801,5,78,0,0,1801,1802,5,68,0,0, - 1802,1803,5,69,0,0,1803,1804,5,68,0,0,1804,316,1,0,0,0,1805,1806,5,82,0, - 0,1806,1807,5,69,0,0,1807,1808,5,70,0,0,1808,1809,5,82,0,0,1809,1810,5, - 69,0,0,1810,1811,5,83,0,0,1811,1812,5,72,0,0,1812,318,1,0,0,0,1813,1814, - 5,67,0,0,1814,1815,5,76,0,0,1815,1816,5,69,0,0,1816,1817,5,65,0,0,1817, - 1818,5,82,0,0,1818,320,1,0,0,0,1819,1820,5,67,0,0,1820,1821,5,65,0,0,1821, - 1822,5,67,0,0,1822,1823,5,72,0,0,1823,1824,5,69,0,0,1824,322,1,0,0,0,1825, - 1826,5,85,0,0,1826,1827,5,78,0,0,1827,1828,5,67,0,0,1828,1829,5,65,0,0, - 1829,1830,5,67,0,0,1830,1831,5,72,0,0,1831,1832,5,69,0,0,1832,324,1,0,0, - 0,1833,1834,5,76,0,0,1834,1835,5,65,0,0,1835,1836,5,90,0,0,1836,1837,5, - 89,0,0,1837,326,1,0,0,0,1838,1839,5,70,0,0,1839,1840,5,79,0,0,1840,1841, - 5,82,0,0,1841,1842,5,77,0,0,1842,1843,5,65,0,0,1843,1844,5,84,0,0,1844, - 1845,5,84,0,0,1845,1846,5,69,0,0,1846,1847,5,68,0,0,1847,328,1,0,0,0,1848, - 1849,5,71,0,0,1849,1850,5,76,0,0,1850,1851,5,79,0,0,1851,1852,5,66,0,0, - 1852,1853,5,65,0,0,1853,1854,5,76,0,0,1854,330,1,0,0,0,1855,1856,5,84,0, - 0,1856,1857,5,69,0,0,1857,1858,5,77,0,0,1858,1859,5,80,0,0,1859,1860,5, - 79,0,0,1860,1861,5,82,0,0,1861,1862,5,65,0,0,1862,1863,5,82,0,0,1863,1864, - 5,89,0,0,1864,332,1,0,0,0,1865,1866,5,79,0,0,1866,1867,5,80,0,0,1867,1868, - 5,84,0,0,1868,1869,5,73,0,0,1869,1870,5,79,0,0,1870,1871,5,78,0,0,1871, - 1872,5,83,0,0,1872,334,1,0,0,0,1873,1874,5,85,0,0,1874,1875,5,78,0,0,1875, - 1876,5,83,0,0,1876,1877,5,69,0,0,1877,1878,5,84,0,0,1878,336,1,0,0,0,1879, - 1880,5,84,0,0,1880,1881,5,66,0,0,1881,1882,5,76,0,0,1882,1883,5,80,0,0, - 1883,1884,5,82,0,0,1884,1885,5,79,0,0,1885,1886,5,80,0,0,1886,1887,5,69, - 0,0,1887,1888,5,82,0,0,1888,1889,5,84,0,0,1889,1890,5,73,0,0,1890,1891, - 5,69,0,0,1891,1892,5,83,0,0,1892,338,1,0,0,0,1893,1894,5,68,0,0,1894,1895, - 5,66,0,0,1895,1896,5,80,0,0,1896,1897,5,82,0,0,1897,1898,5,79,0,0,1898, - 1899,5,80,0,0,1899,1900,5,69,0,0,1900,1901,5,82,0,0,1901,1902,5,84,0,0, - 1902,1903,5,73,0,0,1903,1904,5,69,0,0,1904,1905,5,83,0,0,1905,340,1,0,0, - 0,1906,1907,5,66,0,0,1907,1908,5,85,0,0,1908,1909,5,67,0,0,1909,1910,5, - 75,0,0,1910,1911,5,69,0,0,1911,1912,5,84,0,0,1912,1913,5,83,0,0,1913,342, - 1,0,0,0,1914,1915,5,83,0,0,1915,1916,5,75,0,0,1916,1917,5,69,0,0,1917,1918, - 5,87,0,0,1918,1919,5,69,0,0,1919,1920,5,68,0,0,1920,344,1,0,0,0,1921,1922, - 5,83,0,0,1922,1923,5,84,0,0,1923,1924,5,79,0,0,1924,1925,5,82,0,0,1925, - 1926,5,69,0,0,1926,1927,5,68,0,0,1927,346,1,0,0,0,1928,1929,5,68,0,0,1929, - 1930,5,73,0,0,1930,1931,5,82,0,0,1931,1932,5,69,0,0,1932,1933,5,67,0,0, - 1933,1934,5,84,0,0,1934,1935,5,79,0,0,1935,1936,5,82,0,0,1936,1937,5,73, - 0,0,1937,1938,5,69,0,0,1938,1939,5,83,0,0,1939,348,1,0,0,0,1940,1941,5, - 76,0,0,1941,1942,5,79,0,0,1942,1943,5,67,0,0,1943,1944,5,65,0,0,1944,1945, - 5,84,0,0,1945,1946,5,73,0,0,1946,1947,5,79,0,0,1947,1948,5,78,0,0,1948, - 350,1,0,0,0,1949,1950,5,69,0,0,1950,1951,5,88,0,0,1951,1952,5,67,0,0,1952, - 1953,5,72,0,0,1953,1954,5,65,0,0,1954,1955,5,78,0,0,1955,1956,5,71,0,0, - 1956,1957,5,69,0,0,1957,352,1,0,0,0,1958,1959,5,65,0,0,1959,1960,5,82,0, - 0,1960,1961,5,67,0,0,1961,1962,5,72,0,0,1962,1963,5,73,0,0,1963,1964,5, - 86,0,0,1964,1965,5,69,0,0,1965,354,1,0,0,0,1966,1967,5,85,0,0,1967,1968, - 5,78,0,0,1968,1969,5,65,0,0,1969,1970,5,82,0,0,1970,1971,5,67,0,0,1971, - 1972,5,72,0,0,1972,1973,5,73,0,0,1973,1974,5,86,0,0,1974,1975,5,69,0,0, - 1975,356,1,0,0,0,1976,1977,5,70,0,0,1977,1978,5,73,0,0,1978,1979,5,76,0, - 0,1979,1980,5,69,0,0,1980,1981,5,70,0,0,1981,1982,5,79,0,0,1982,1983,5, - 82,0,0,1983,1984,5,77,0,0,1984,1985,5,65,0,0,1985,1986,5,84,0,0,1986,358, - 1,0,0,0,1987,1988,5,84,0,0,1988,1989,5,79,0,0,1989,1990,5,85,0,0,1990,1991, - 5,67,0,0,1991,1992,5,72,0,0,1992,360,1,0,0,0,1993,1994,5,67,0,0,1994,1995, - 5,79,0,0,1995,1996,5,77,0,0,1996,1997,5,80,0,0,1997,1998,5,65,0,0,1998, - 1999,5,67,0,0,1999,2000,5,84,0,0,2000,362,1,0,0,0,2001,2002,5,67,0,0,2002, - 2003,5,79,0,0,2003,2004,5,78,0,0,2004,2005,5,67,0,0,2005,2006,5,65,0,0, - 2006,2007,5,84,0,0,2007,2008,5,69,0,0,2008,2009,5,78,0,0,2009,2010,5,65, - 0,0,2010,2011,5,84,0,0,2011,2012,5,69,0,0,2012,364,1,0,0,0,2013,2014,5, - 67,0,0,2014,2015,5,72,0,0,2015,2016,5,65,0,0,2016,2017,5,78,0,0,2017,2018, - 5,71,0,0,2018,2019,5,69,0,0,2019,366,1,0,0,0,2020,2021,5,67,0,0,2021,2022, - 5,65,0,0,2022,2023,5,83,0,0,2023,2024,5,67,0,0,2024,2025,5,65,0,0,2025, - 2026,5,68,0,0,2026,2027,5,69,0,0,2027,368,1,0,0,0,2028,2029,5,67,0,0,2029, - 2030,5,79,0,0,2030,2031,5,78,0,0,2031,2032,5,83,0,0,2032,2033,5,84,0,0, - 2033,2034,5,82,0,0,2034,2035,5,65,0,0,2035,2036,5,73,0,0,2036,2037,5,78, - 0,0,2037,2038,5,84,0,0,2038,370,1,0,0,0,2039,2040,5,82,0,0,2040,2041,5, - 69,0,0,2041,2042,5,83,0,0,2042,2043,5,84,0,0,2043,2044,5,82,0,0,2044,2045, - 5,73,0,0,2045,2046,5,67,0,0,2046,2047,5,84,0,0,2047,372,1,0,0,0,2048,2049, - 5,67,0,0,2049,2050,5,76,0,0,2050,2051,5,85,0,0,2051,2052,5,83,0,0,2052, - 2053,5,84,0,0,2053,2054,5,69,0,0,2054,2055,5,82,0,0,2055,2056,5,69,0,0, - 2056,2057,5,68,0,0,2057,374,1,0,0,0,2058,2059,5,83,0,0,2059,2060,5,79,0, - 0,2060,2061,5,82,0,0,2061,2062,5,84,0,0,2062,2063,5,69,0,0,2063,2064,5, - 68,0,0,2064,376,1,0,0,0,2065,2066,5,80,0,0,2066,2067,5,85,0,0,2067,2068, - 5,82,0,0,2068,2069,5,71,0,0,2069,2070,5,69,0,0,2070,378,1,0,0,0,2071,2072, - 5,73,0,0,2072,2073,5,78,0,0,2073,2074,5,80,0,0,2074,2075,5,85,0,0,2075, - 2076,5,84,0,0,2076,2077,5,70,0,0,2077,2078,5,79,0,0,2078,2079,5,82,0,0, - 2079,2080,5,77,0,0,2080,2081,5,65,0,0,2081,2082,5,84,0,0,2082,380,1,0,0, - 0,2083,2084,5,79,0,0,2084,2085,5,85,0,0,2085,2086,5,84,0,0,2086,2087,5, - 80,0,0,2087,2088,5,85,0,0,2088,2089,5,84,0,0,2089,2090,5,70,0,0,2090,2091, - 5,79,0,0,2091,2092,5,82,0,0,2092,2093,5,77,0,0,2093,2094,5,65,0,0,2094, - 2095,5,84,0,0,2095,382,1,0,0,0,2096,2097,5,68,0,0,2097,2098,5,65,0,0,2098, - 2099,5,84,0,0,2099,2100,5,65,0,0,2100,2101,5,66,0,0,2101,2102,5,65,0,0, - 2102,2103,5,83,0,0,2103,2104,5,69,0,0,2104,384,1,0,0,0,2105,2106,5,68,0, - 0,2106,2107,5,65,0,0,2107,2108,5,84,0,0,2108,2109,5,65,0,0,2109,2110,5, - 66,0,0,2110,2111,5,65,0,0,2111,2112,5,83,0,0,2112,2113,5,69,0,0,2113,2114, - 5,83,0,0,2114,386,1,0,0,0,2115,2116,5,68,0,0,2116,2117,5,70,0,0,2117,2118, - 5,83,0,0,2118,388,1,0,0,0,2119,2120,5,84,0,0,2120,2121,5,82,0,0,2121,2122, - 5,85,0,0,2122,2123,5,78,0,0,2123,2124,5,67,0,0,2124,2125,5,65,0,0,2125, - 2126,5,84,0,0,2126,2127,5,69,0,0,2127,390,1,0,0,0,2128,2129,5,65,0,0,2129, - 2130,5,78,0,0,2130,2131,5,65,0,0,2131,2132,5,76,0,0,2132,2133,5,89,0,0, - 2133,2134,5,90,0,0,2134,2135,5,69,0,0,2135,392,1,0,0,0,2136,2137,5,67,0, - 0,2137,2138,5,79,0,0,2138,2139,5,77,0,0,2139,2140,5,80,0,0,2140,2141,5, - 85,0,0,2141,2142,5,84,0,0,2142,2143,5,69,0,0,2143,394,1,0,0,0,2144,2145, - 5,76,0,0,2145,2146,5,73,0,0,2146,2147,5,83,0,0,2147,2148,5,84,0,0,2148, - 396,1,0,0,0,2149,2150,5,83,0,0,2150,2151,5,84,0,0,2151,2152,5,65,0,0,2152, - 2153,5,84,0,0,2153,2154,5,73,0,0,2154,2155,5,83,0,0,2155,2156,5,84,0,0, - 2156,2157,5,73,0,0,2157,2158,5,67,0,0,2158,2159,5,83,0,0,2159,398,1,0,0, - 0,2160,2161,5,80,0,0,2161,2162,5,65,0,0,2162,2163,5,82,0,0,2163,2164,5, - 84,0,0,2164,2165,5,73,0,0,2165,2166,5,84,0,0,2166,2167,5,73,0,0,2167,2168, - 5,79,0,0,2168,2169,5,78,0,0,2169,2170,5,69,0,0,2170,2171,5,68,0,0,2171, - 400,1,0,0,0,2172,2173,5,69,0,0,2173,2174,5,88,0,0,2174,2175,5,84,0,0,2175, - 2176,5,69,0,0,2176,2177,5,82,0,0,2177,2178,5,78,0,0,2178,2179,5,65,0,0, - 2179,2180,5,76,0,0,2180,402,1,0,0,0,2181,2182,5,68,0,0,2182,2183,5,69,0, - 0,2183,2184,5,70,0,0,2184,2185,5,73,0,0,2185,2186,5,78,0,0,2186,2187,5, - 69,0,0,2187,2188,5,68,0,0,2188,404,1,0,0,0,2189,2190,5,82,0,0,2190,2191, - 5,69,0,0,2191,2192,5,86,0,0,2192,2193,5,79,0,0,2193,2194,5,75,0,0,2194, - 2195,5,69,0,0,2195,406,1,0,0,0,2196,2197,5,71,0,0,2197,2198,5,82,0,0,2198, - 2199,5,65,0,0,2199,2200,5,78,0,0,2200,2201,5,84,0,0,2201,408,1,0,0,0,2202, - 2203,5,76,0,0,2203,2204,5,79,0,0,2204,2205,5,67,0,0,2205,2206,5,75,0,0, - 2206,410,1,0,0,0,2207,2208,5,85,0,0,2208,2209,5,78,0,0,2209,2210,5,76,0, - 0,2210,2211,5,79,0,0,2211,2212,5,67,0,0,2212,2213,5,75,0,0,2213,412,1,0, - 0,0,2214,2215,5,77,0,0,2215,2216,5,83,0,0,2216,2217,5,67,0,0,2217,2218, - 5,75,0,0,2218,414,1,0,0,0,2219,2220,5,82,0,0,2220,2221,5,69,0,0,2221,2222, - 5,80,0,0,2222,2223,5,65,0,0,2223,2224,5,73,0,0,2224,2225,5,82,0,0,2225, - 416,1,0,0,0,2226,2227,5,82,0,0,2227,2228,5,69,0,0,2228,2229,5,67,0,0,2229, - 2230,5,79,0,0,2230,2231,5,86,0,0,2231,2232,5,69,0,0,2232,2233,5,82,0,0, - 2233,418,1,0,0,0,2234,2235,5,69,0,0,2235,2236,5,88,0,0,2236,2237,5,80,0, - 0,2237,2238,5,79,0,0,2238,2239,5,82,0,0,2239,2240,5,84,0,0,2240,420,1,0, - 0,0,2241,2242,5,73,0,0,2242,2243,5,77,0,0,2243,2244,5,80,0,0,2244,2245, - 5,79,0,0,2245,2246,5,82,0,0,2246,2247,5,84,0,0,2247,422,1,0,0,0,2248,2249, - 5,76,0,0,2249,2250,5,79,0,0,2250,2251,5,65,0,0,2251,2252,5,68,0,0,2252, - 424,1,0,0,0,2253,2254,5,85,0,0,2254,2255,5,78,0,0,2255,2256,5,76,0,0,2256, - 2257,5,79,0,0,2257,2258,5,65,0,0,2258,2259,5,68,0,0,2259,426,1,0,0,0,2260, - 2261,5,82,0,0,2261,2262,5,79,0,0,2262,2263,5,76,0,0,2263,2264,5,69,0,0, - 2264,428,1,0,0,0,2265,2266,5,82,0,0,2266,2267,5,79,0,0,2267,2268,5,76,0, - 0,2268,2269,5,69,0,0,2269,2270,5,83,0,0,2270,430,1,0,0,0,2271,2272,5,67, - 0,0,2272,2273,5,79,0,0,2273,2274,5,77,0,0,2274,2275,5,80,0,0,2275,2276, - 5,65,0,0,2276,2277,5,67,0,0,2277,2278,5,84,0,0,2278,2279,5,73,0,0,2279, - 2280,5,79,0,0,2280,2281,5,78,0,0,2281,2282,5,83,0,0,2282,432,1,0,0,0,2283, - 2284,5,80,0,0,2284,2285,5,82,0,0,2285,2286,5,73,0,0,2286,2287,5,78,0,0, - 2287,2288,5,67,0,0,2288,2289,5,73,0,0,2289,2290,5,80,0,0,2290,2291,5,65, - 0,0,2291,2292,5,76,0,0,2292,2293,5,83,0,0,2293,434,1,0,0,0,2294,2295,5, - 84,0,0,2295,2296,5,82,0,0,2296,2297,5,65,0,0,2297,2298,5,78,0,0,2298,2299, - 5,83,0,0,2299,2300,5,65,0,0,2300,2301,5,67,0,0,2301,2302,5,84,0,0,2302, - 2303,5,73,0,0,2303,2304,5,79,0,0,2304,2305,5,78,0,0,2305,2306,5,83,0,0, - 2306,436,1,0,0,0,2307,2308,5,73,0,0,2308,2309,5,78,0,0,2309,2310,5,68,0, - 0,2310,2311,5,69,0,0,2311,2312,5,88,0,0,2312,438,1,0,0,0,2313,2314,5,73, - 0,0,2314,2315,5,78,0,0,2315,2316,5,68,0,0,2316,2317,5,69,0,0,2317,2318, - 5,88,0,0,2318,2319,5,69,0,0,2319,2320,5,83,0,0,2320,440,1,0,0,0,2321,2322, - 5,76,0,0,2322,2323,5,79,0,0,2323,2324,5,67,0,0,2324,2325,5,75,0,0,2325, - 2326,5,83,0,0,2326,442,1,0,0,0,2327,2328,5,79,0,0,2328,2329,5,80,0,0,2329, - 2330,5,84,0,0,2330,2331,5,73,0,0,2331,2332,5,79,0,0,2332,2333,5,78,0,0, - 2333,444,1,0,0,0,2334,2335,5,65,0,0,2335,2336,5,78,0,0,2336,2337,5,84,0, - 0,2337,2338,5,73,0,0,2338,446,1,0,0,0,2339,2340,5,76,0,0,2340,2341,5,79, - 0,0,2341,2342,5,67,0,0,2342,2343,5,65,0,0,2343,2344,5,76,0,0,2344,448,1, - 0,0,0,2345,2346,5,73,0,0,2346,2347,5,78,0,0,2347,2348,5,80,0,0,2348,2349, - 5,65,0,0,2349,2350,5,84,0,0,2350,2351,5,72,0,0,2351,450,1,0,0,0,2352,2353, - 5,87,0,0,2353,2354,5,65,0,0,2354,2355,5,84,0,0,2355,2356,5,69,0,0,2356, - 2357,5,82,0,0,2357,2358,5,77,0,0,2358,2359,5,65,0,0,2359,2360,5,82,0,0, - 2360,2361,5,75,0,0,2361,452,1,0,0,0,2362,2363,5,85,0,0,2363,2364,5,78,0, - 0,2364,2365,5,78,0,0,2365,2366,5,69,0,0,2366,2367,5,83,0,0,2367,2368,5, - 84,0,0,2368,454,1,0,0,0,2369,2370,5,77,0,0,2370,2371,5,65,0,0,2371,2372, - 5,84,0,0,2372,2373,5,67,0,0,2373,2374,5,72,0,0,2374,456,1,0,0,0,2375,2376, - 5,78,0,0,2376,2377,5,69,0,0,2377,2378,5,88,0,0,2378,2379,5,84,0,0,2379, - 458,1,0,0,0,2380,2381,5,87,0,0,2381,2382,5,73,0,0,2382,2383,5,84,0,0,2383, - 2384,5,72,0,0,2384,2385,5,73,0,0,2385,2386,5,78,0,0,2386,460,1,0,0,0,2387, - 2388,5,87,0,0,2388,2389,5,83,0,0,2389,462,1,0,0,0,2390,2391,5,83,0,0,2391, - 2392,5,89,0,0,2392,2393,5,83,0,0,2393,2394,5,84,0,0,2394,2395,5,69,0,0, - 2395,2396,5,77,0,0,2396,464,1,0,0,0,2397,2398,5,73,0,0,2398,2399,5,78,0, - 0,2399,2400,5,67,0,0,2400,2401,5,76,0,0,2401,2402,5,85,0,0,2402,2403,5, - 68,0,0,2403,2404,5,73,0,0,2404,2405,5,78,0,0,2405,2406,5,71,0,0,2406,466, - 1,0,0,0,2407,2408,5,69,0,0,2408,2409,5,88,0,0,2409,2410,5,67,0,0,2410,2411, - 5,76,0,0,2411,2412,5,85,0,0,2412,2413,5,68,0,0,2413,2414,5,73,0,0,2414, - 2415,5,78,0,0,2415,2416,5,71,0,0,2416,468,1,0,0,0,2417,2418,5,79,0,0,2418, - 2419,5,86,0,0,2419,2420,5,69,0,0,2420,2421,5,82,0,0,2421,2422,5,87,0,0, - 2422,2423,5,82,0,0,2423,2424,5,73,0,0,2424,2425,5,84,0,0,2425,2426,5,73, - 0,0,2426,2427,5,78,0,0,2427,2428,5,71,0,0,2428,470,1,0,0,0,2429,2430,5, - 67,0,0,2430,2431,5,79,0,0,2431,2432,5,78,0,0,2432,2433,5,83,0,0,2433,2434, - 5,84,0,0,2434,2435,5,82,0,0,2435,2436,5,65,0,0,2436,2437,5,73,0,0,2437, - 2438,5,78,0,0,2438,2439,5,84,0,0,2439,2440,5,83,0,0,2440,472,1,0,0,0,2441, - 2442,5,71,0,0,2442,2443,5,69,0,0,2443,2444,5,78,0,0,2444,2445,5,69,0,0, - 2445,2446,5,82,0,0,2446,2447,5,65,0,0,2447,2448,5,84,0,0,2448,2449,5,69, - 0,0,2449,2450,5,68,0,0,2450,474,1,0,0,0,2451,2452,5,87,0,0,2452,2453,5, - 65,0,0,2453,2454,5,84,0,0,2454,2455,5,69,0,0,2455,2456,5,82,0,0,2456,2457, - 5,77,0,0,2457,2458,5,65,0,0,2458,2459,5,82,0,0,2459,2460,5,75,0,0,2460, - 2461,5,83,0,0,2461,476,1,0,0,0,2462,2463,5,67,0,0,2463,2464,5,65,0,0,2464, - 2465,5,84,0,0,2465,2466,5,65,0,0,2466,2467,5,76,0,0,2467,2468,5,79,0,0, - 2468,2469,5,71,0,0,2469,478,1,0,0,0,2470,2471,5,76,0,0,2471,2472,5,65,0, - 0,2472,2473,5,78,0,0,2473,2474,5,71,0,0,2474,2475,5,85,0,0,2475,2476,5, - 65,0,0,2476,2477,5,71,0,0,2477,2478,5,69,0,0,2478,480,1,0,0,0,2479,2480, - 5,74,0,0,2480,2481,5,65,0,0,2481,2482,5,86,0,0,2482,2483,5,65,0,0,2483, - 482,1,0,0,0,2484,2485,5,83,0,0,2485,2486,5,67,0,0,2486,2487,5,65,0,0,2487, - 2488,5,76,0,0,2488,2489,5,65,0,0,2489,484,1,0,0,0,2490,2491,5,80,0,0,2491, - 2492,5,89,0,0,2492,2493,5,84,0,0,2493,2494,5,72,0,0,2494,2495,5,79,0,0, - 2495,2496,5,78,0,0,2496,486,1,0,0,0,2497,2498,5,74,0,0,2498,2499,5,65,0, - 0,2499,2500,5,82,0,0,2500,488,1,0,0,0,2501,2502,5,70,0,0,2502,2503,5,73, - 0,0,2503,2504,5,76,0,0,2504,2505,5,69,0,0,2505,490,1,0,0,0,2506,2507,5, - 80,0,0,2507,2508,5,89,0,0,2508,2509,5,84,0,0,2509,2510,5,72,0,0,2510,2511, - 5,79,0,0,2511,2512,5,78,0,0,2512,2513,5,95,0,0,2513,2514,5,70,0,0,2514, - 2515,5,73,0,0,2515,2516,5,76,0,0,2516,2517,5,69,0,0,2517,2518,5,83,0,0, - 2518,492,1,0,0,0,2519,2520,5,80,0,0,2520,2521,5,89,0,0,2521,2522,5,84,0, - 0,2522,2523,5,72,0,0,2523,2524,5,79,0,0,2524,2525,5,78,0,0,2525,2526,5, - 95,0,0,2526,2527,5,82,0,0,2527,2528,5,69,0,0,2528,2529,5,81,0,0,2529,2530, - 5,85,0,0,2530,2531,5,73,0,0,2531,2532,5,82,0,0,2532,2533,5,69,0,0,2533, - 2534,5,77,0,0,2534,2535,5,69,0,0,2535,2536,5,78,0,0,2536,2537,5,84,0,0, - 2537,2538,5,83,0,0,2538,494,1,0,0,0,2539,2540,5,80,0,0,2540,2541,5,89,0, - 0,2541,2542,5,84,0,0,2542,2543,5,72,0,0,2543,2544,5,79,0,0,2544,2545,5, - 78,0,0,2545,2546,5,95,0,0,2546,2547,5,68,0,0,2547,2548,5,69,0,0,2548,2549, - 5,80,0,0,2549,2550,5,69,0,0,2550,2551,5,78,0,0,2551,2552,5,68,0,0,2552, - 2553,5,69,0,0,2553,2554,5,78,0,0,2554,2555,5,67,0,0,2555,2556,5,73,0,0, - 2556,2557,5,69,0,0,2557,2558,5,83,0,0,2558,496,1,0,0,0,2559,2560,5,80,0, - 0,2560,2561,5,89,0,0,2561,2562,5,84,0,0,2562,2563,5,72,0,0,2563,2564,5, - 79,0,0,2564,2565,5,78,0,0,2565,2566,5,95,0,0,2566,2567,5,74,0,0,2567,2568, - 5,65,0,0,2568,2569,5,82,0,0,2569,498,1,0,0,0,2570,2571,5,80,0,0,2571,2572, - 5,89,0,0,2572,2573,5,84,0,0,2573,2574,5,72,0,0,2574,2575,5,79,0,0,2575, - 2576,5,78,0,0,2576,2577,5,95,0,0,2577,2578,5,65,0,0,2578,2579,5,82,0,0, - 2579,2580,5,67,0,0,2580,2581,5,72,0,0,2581,2582,5,73,0,0,2582,2583,5,86, - 0,0,2583,2584,5,69,0,0,2584,2585,5,83,0,0,2585,500,1,0,0,0,2586,2587,5, - 80,0,0,2587,2588,5,89,0,0,2588,2589,5,84,0,0,2589,2590,5,72,0,0,2590,2591, - 5,79,0,0,2591,2592,5,78,0,0,2592,2593,5,95,0,0,2593,2594,5,80,0,0,2594, - 2595,5,65,0,0,2595,2596,5,82,0,0,2596,2597,5,65,0,0,2597,2598,5,77,0,0, - 2598,2599,5,69,0,0,2599,2600,5,84,0,0,2600,2601,5,69,0,0,2601,2602,5,82, - 0,0,2602,502,1,0,0,0,2603,2604,5,69,0,0,2604,2605,5,78,0,0,2605,2606,5, - 71,0,0,2606,2607,5,73,0,0,2607,2608,5,78,0,0,2608,2609,5,69,0,0,2609,504, - 1,0,0,0,2610,2611,5,67,0,0,2611,2612,5,65,0,0,2612,2613,5,84,0,0,2613,2614, - 5,65,0,0,2614,2615,5,76,0,0,2615,2616,5,79,0,0,2616,2617,5,71,0,0,2617, - 2618,5,83,0,0,2618,506,1,0,0,0,2619,2620,5,86,0,0,2620,2621,5,73,0,0,2621, - 2622,5,69,0,0,2622,2623,5,87,0,0,2623,2624,5,83,0,0,2624,508,1,0,0,0,2625, - 2626,5,74,0,0,2626,2627,5,65,0,0,2627,2628,5,82,0,0,2628,2629,5,83,0,0, - 2629,510,1,0,0,0,2630,2631,5,80,0,0,2631,2632,5,82,0,0,2632,2633,5,73,0, - 0,2633,2634,5,77,0,0,2634,2635,5,65,0,0,2635,2636,5,82,0,0,2636,2637,5, - 89,0,0,2637,512,1,0,0,0,2638,2639,5,75,0,0,2639,2640,5,69,0,0,2640,2641, - 5,89,0,0,2641,514,1,0,0,0,2642,2643,5,80,0,0,2643,2644,5,69,0,0,2644,2645, - 5,82,0,0,2645,2646,5,73,0,0,2646,2647,5,79,0,0,2647,2648,5,68,0,0,2648, - 516,1,0,0,0,2649,2650,5,83,0,0,2650,2651,5,89,0,0,2651,2652,5,83,0,0,2652, - 2653,5,84,0,0,2653,2654,5,69,0,0,2654,2655,5,77,0,0,2655,2656,5,95,0,0, - 2656,2657,5,84,0,0,2657,2658,5,73,0,0,2658,2659,5,77,0,0,2659,2660,5,69, - 0,0,2660,518,1,0,0,0,2661,2662,5,69,0,0,2662,2663,5,78,0,0,2663,2664,5, - 70,0,0,2664,2665,5,79,0,0,2665,2666,5,82,0,0,2666,2667,5,67,0,0,2667,2668, - 5,69,0,0,2668,2669,5,68,0,0,2669,520,1,0,0,0,2670,2671,5,77,0,0,2671,2672, - 5,69,0,0,2672,2673,5,84,0,0,2673,2674,5,65,0,0,2674,2675,5,68,0,0,2675, - 2676,5,65,0,0,2676,2677,5,84,0,0,2677,2678,5,65,0,0,2678,522,1,0,0,0,2679, - 2680,5,86,0,0,2680,2681,5,73,0,0,2681,2682,5,82,0,0,2682,2683,5,84,0,0, - 2683,2684,5,85,0,0,2684,2685,5,65,0,0,2685,2686,5,76,0,0,2686,524,1,0,0, - 0,2687,2688,5,90,0,0,2688,2689,5,79,0,0,2689,2690,5,78,0,0,2690,2691,5, - 69,0,0,2691,526,1,0,0,0,2692,2693,5,83,0,0,2693,2694,5,84,0,0,2694,2695, - 5,82,0,0,2695,2696,5,73,0,0,2696,2697,5,78,0,0,2697,2698,5,71,0,0,2698, - 528,1,0,0,0,2699,2700,5,65,0,0,2700,2701,5,82,0,0,2701,2702,5,82,0,0,2702, - 2703,5,65,0,0,2703,2704,5,89,0,0,2704,530,1,0,0,0,2705,2706,5,77,0,0,2706, - 2707,5,65,0,0,2707,2708,5,80,0,0,2708,532,1,0,0,0,2709,2710,5,67,0,0,2710, - 2711,5,72,0,0,2711,2712,5,65,0,0,2712,2713,5,82,0,0,2713,534,1,0,0,0,2714, - 2715,5,86,0,0,2715,2716,5,65,0,0,2716,2717,5,82,0,0,2717,2718,5,67,0,0, - 2718,2719,5,72,0,0,2719,2720,5,65,0,0,2720,2721,5,82,0,0,2721,536,1,0,0, - 0,2722,2723,5,66,0,0,2723,2724,5,73,0,0,2724,2725,5,78,0,0,2725,2726,5, - 65,0,0,2726,2727,5,82,0,0,2727,2728,5,89,0,0,2728,538,1,0,0,0,2729,2730, - 5,86,0,0,2730,2731,5,65,0,0,2731,2732,5,82,0,0,2732,2733,5,66,0,0,2733, - 2734,5,73,0,0,2734,2735,5,78,0,0,2735,2736,5,65,0,0,2736,2737,5,82,0,0, - 2737,2738,5,89,0,0,2738,540,1,0,0,0,2739,2740,5,66,0,0,2740,2741,5,89,0, - 0,2741,2742,5,84,0,0,2742,2743,5,69,0,0,2743,2744,5,83,0,0,2744,542,1,0, - 0,0,2745,2746,5,68,0,0,2746,2747,5,69,0,0,2747,2748,5,67,0,0,2748,2749, - 5,73,0,0,2749,2750,5,77,0,0,2750,2751,5,65,0,0,2751,2752,5,76,0,0,2752, - 544,1,0,0,0,2753,2754,5,68,0,0,2754,2755,5,69,0,0,2755,2756,5,67,0,0,2756, - 546,1,0,0,0,2757,2758,5,78,0,0,2758,2759,5,85,0,0,2759,2760,5,77,0,0,2760, - 2761,5,69,0,0,2761,2762,5,82,0,0,2762,2763,5,73,0,0,2763,2764,5,67,0,0, - 2764,548,1,0,0,0,2765,2766,5,84,0,0,2766,2767,5,73,0,0,2767,2768,5,78,0, - 0,2768,2769,5,89,0,0,2769,2770,5,73,0,0,2770,2771,5,78,0,0,2771,2772,5, - 84,0,0,2772,550,1,0,0,0,2773,2774,5,83,0,0,2774,2775,5,77,0,0,2775,2776, - 5,65,0,0,2776,2777,5,76,0,0,2777,2778,5,76,0,0,2778,2779,5,73,0,0,2779, - 2780,5,78,0,0,2780,2781,5,84,0,0,2781,552,1,0,0,0,2782,2783,5,73,0,0,2783, - 2784,5,78,0,0,2784,2785,5,84,0,0,2785,554,1,0,0,0,2786,2787,5,73,0,0,2787, - 2788,5,78,0,0,2788,2789,5,84,0,0,2789,2790,5,69,0,0,2790,2791,5,71,0,0, - 2791,2792,5,69,0,0,2792,2793,5,82,0,0,2793,556,1,0,0,0,2794,2795,5,66,0, - 0,2795,2796,5,73,0,0,2796,2797,5,71,0,0,2797,2798,5,73,0,0,2798,2799,5, - 78,0,0,2799,2800,5,84,0,0,2800,558,1,0,0,0,2801,2802,5,70,0,0,2802,2803, - 5,76,0,0,2803,2804,5,79,0,0,2804,2805,5,65,0,0,2805,2806,5,84,0,0,2806, - 560,1,0,0,0,2807,2808,5,68,0,0,2808,2809,5,79,0,0,2809,2810,5,85,0,0,2810, - 2811,5,66,0,0,2811,2812,5,76,0,0,2812,2813,5,69,0,0,2813,562,1,0,0,0,2814, - 2815,5,68,0,0,2815,2816,5,65,0,0,2816,2817,5,84,0,0,2817,2818,5,69,0,0, - 2818,564,1,0,0,0,2819,2820,5,84,0,0,2820,2821,5,73,0,0,2821,2822,5,77,0, - 0,2822,2823,5,69,0,0,2823,566,1,0,0,0,2824,2825,5,84,0,0,2825,2826,5,73, - 0,0,2826,2827,5,77,0,0,2827,2828,5,69,0,0,2828,2829,5,83,0,0,2829,2830, - 5,84,0,0,2830,2831,5,65,0,0,2831,2832,5,77,0,0,2832,2833,5,80,0,0,2833, - 568,1,0,0,0,2834,2835,5,84,0,0,2835,2836,5,73,0,0,2836,2837,5,77,0,0,2837, - 2838,5,69,0,0,2838,2839,5,83,0,0,2839,2840,5,84,0,0,2840,2841,5,65,0,0, - 2841,2842,5,77,0,0,2842,2843,5,80,0,0,2843,2844,5,95,0,0,2844,2845,5,76, - 0,0,2845,2846,5,84,0,0,2846,2847,5,90,0,0,2847,570,1,0,0,0,2848,2849,5, - 77,0,0,2849,2850,5,85,0,0,2850,2851,5,76,0,0,2851,2852,5,84,0,0,2852,2853, - 5,73,0,0,2853,2854,5,83,0,0,2854,2855,5,69,0,0,2855,2856,5,84,0,0,2856, - 572,1,0,0,0,2857,2858,5,66,0,0,2858,2859,5,79,0,0,2859,2860,5,79,0,0,2860, - 2861,5,76,0,0,2861,2862,5,69,0,0,2862,2863,5,65,0,0,2863,2864,5,78,0,0, - 2864,574,1,0,0,0,2865,2866,5,82,0,0,2866,2867,5,65,0,0,2867,2868,5,87,0, - 0,2868,576,1,0,0,0,2869,2870,5,82,0,0,2870,2871,5,79,0,0,2871,2872,5,87, - 0,0,2872,578,1,0,0,0,2873,2874,5,78,0,0,2874,2875,5,85,0,0,2875,2876,5, - 76,0,0,2876,2877,5,76,0,0,2877,580,1,0,0,0,2878,2879,5,68,0,0,2879,2880, - 5,65,0,0,2880,2881,5,84,0,0,2881,2882,5,69,0,0,2882,2883,5,84,0,0,2883, - 2884,5,73,0,0,2884,2885,5,77,0,0,2885,2886,5,69,0,0,2886,582,1,0,0,0,2887, - 2888,5,61,0,0,2888,584,1,0,0,0,2889,2890,5,62,0,0,2890,586,1,0,0,0,2891, - 2892,5,60,0,0,2892,588,1,0,0,0,2893,2894,5,33,0,0,2894,590,1,0,0,0,2895, - 2896,5,126,0,0,2896,592,1,0,0,0,2897,2898,5,124,0,0,2898,594,1,0,0,0,2899, - 2900,5,38,0,0,2900,596,1,0,0,0,2901,2902,5,94,0,0,2902,598,1,0,0,0,2903, - 2904,5,46,0,0,2904,600,1,0,0,0,2905,2906,5,91,0,0,2906,602,1,0,0,0,2907, - 2908,5,93,0,0,2908,604,1,0,0,0,2909,2910,5,40,0,0,2910,606,1,0,0,0,2911, - 2912,5,41,0,0,2912,608,1,0,0,0,2913,2914,5,44,0,0,2914,610,1,0,0,0,2915, - 2916,5,59,0,0,2916,612,1,0,0,0,2917,2918,5,64,0,0,2918,614,1,0,0,0,2919, - 2920,5,39,0,0,2920,616,1,0,0,0,2921,2922,5,34,0,0,2922,618,1,0,0,0,2923, - 2924,5,96,0,0,2924,620,1,0,0,0,2925,2926,5,58,0,0,2926,622,1,0,0,0,2927, - 2928,5,42,0,0,2928,624,1,0,0,0,2929,2930,5,95,0,0,2930,626,1,0,0,0,2931, - 2932,5,45,0,0,2932,628,1,0,0,0,2933,2934,5,43,0,0,2934,630,1,0,0,0,2935, - 2936,5,37,0,0,2936,632,1,0,0,0,2937,2938,5,124,0,0,2938,2939,5,124,0,0, - 2939,634,1,0,0,0,2940,2941,5,45,0,0,2941,2942,5,45,0,0,2942,636,1,0,0,0, - 2943,2944,5,47,0,0,2944,638,1,0,0,0,2945,2946,5,46,0,0,2946,2947,3,663, - 331,0,2947,640,1,0,0,0,2948,2949,7,2,0,0,2949,2950,3,653,326,0,2950,642, - 1,0,0,0,2951,2955,3,671,335,0,2952,2955,3,673,336,0,2953,2955,3,677,338, - 0,2954,2951,1,0,0,0,2954,2952,1,0,0,0,2954,2953,1,0,0,0,2955,644,1,0,0, - 0,2956,2958,3,667,333,0,2957,2956,1,0,0,0,2958,2959,1,0,0,0,2959,2957,1, - 0,0,0,2959,2960,1,0,0,0,2960,646,1,0,0,0,2961,2963,3,667,333,0,2962,2961, - 1,0,0,0,2963,2964,1,0,0,0,2964,2962,1,0,0,0,2964,2965,1,0,0,0,2965,2967, - 1,0,0,0,2966,2962,1,0,0,0,2966,2967,1,0,0,0,2967,2968,1,0,0,0,2968,2970, - 5,46,0,0,2969,2971,3,667,333,0,2970,2969,1,0,0,0,2971,2972,1,0,0,0,2972, - 2970,1,0,0,0,2972,2973,1,0,0,0,2973,3005,1,0,0,0,2974,2976,3,667,333,0, - 2975,2974,1,0,0,0,2976,2977,1,0,0,0,2977,2975,1,0,0,0,2977,2978,1,0,0,0, - 2978,2979,1,0,0,0,2979,2980,5,46,0,0,2980,2981,3,661,330,0,2981,3005,1, - 0,0,0,2982,2984,3,667,333,0,2983,2982,1,0,0,0,2984,2985,1,0,0,0,2985,2983, - 1,0,0,0,2985,2986,1,0,0,0,2986,2988,1,0,0,0,2987,2983,1,0,0,0,2987,2988, - 1,0,0,0,2988,2989,1,0,0,0,2989,2991,5,46,0,0,2990,2992,3,667,333,0,2991, - 2990,1,0,0,0,2992,2993,1,0,0,0,2993,2991,1,0,0,0,2993,2994,1,0,0,0,2994, - 2995,1,0,0,0,2995,2996,3,661,330,0,2996,3005,1,0,0,0,2997,2999,3,667,333, - 0,2998,2997,1,0,0,0,2999,3000,1,0,0,0,3000,2998,1,0,0,0,3000,3001,1,0,0, - 0,3001,3002,1,0,0,0,3002,3003,3,661,330,0,3003,3005,1,0,0,0,3004,2966,1, - 0,0,0,3004,2975,1,0,0,0,3004,2987,1,0,0,0,3004,2998,1,0,0,0,3005,648,1, - 0,0,0,3006,3007,3,675,337,0,3007,650,1,0,0,0,3008,3009,3,663,331,0,3009, - 652,1,0,0,0,3010,3011,3,665,332,0,3011,654,1,0,0,0,3012,3013,3,657,328, - 0,3013,656,1,0,0,0,3014,3018,7,3,0,0,3015,3017,8,4,0,0,3016,3015,1,0,0, - 0,3017,3020,1,0,0,0,3018,3016,1,0,0,0,3018,3019,1,0,0,0,3019,3022,1,0,0, - 0,3020,3018,1,0,0,0,3021,3014,1,0,0,0,3022,3023,1,0,0,0,3023,3021,1,0,0, - 0,3023,3024,1,0,0,0,3024,658,1,0,0,0,3025,3033,5,96,0,0,3026,3027,5,92, - 0,0,3027,3032,9,0,0,0,3028,3029,5,96,0,0,3029,3032,5,96,0,0,3030,3032,8, - 5,0,0,3031,3026,1,0,0,0,3031,3028,1,0,0,0,3031,3030,1,0,0,0,3032,3035,1, - 0,0,0,3033,3031,1,0,0,0,3033,3034,1,0,0,0,3034,3036,1,0,0,0,3035,3033,1, - 0,0,0,3036,3037,5,96,0,0,3037,660,1,0,0,0,3038,3040,5,69,0,0,3039,3041, - 7,6,0,0,3040,3039,1,0,0,0,3040,3041,1,0,0,0,3041,3043,1,0,0,0,3042,3044, - 3,667,333,0,3043,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3043,1,0,0,0,3045, - 3046,1,0,0,0,3046,662,1,0,0,0,3047,3049,7,7,0,0,3048,3047,1,0,0,0,3049, - 3052,1,0,0,0,3050,3051,1,0,0,0,3050,3048,1,0,0,0,3051,3054,1,0,0,0,3052, - 3050,1,0,0,0,3053,3055,7,8,0,0,3054,3053,1,0,0,0,3055,3056,1,0,0,0,3056, - 3057,1,0,0,0,3056,3054,1,0,0,0,3057,3061,1,0,0,0,3058,3060,7,7,0,0,3059, - 3058,1,0,0,0,3060,3063,1,0,0,0,3061,3059,1,0,0,0,3061,3062,1,0,0,0,3062, - 664,1,0,0,0,3063,3061,1,0,0,0,3064,3066,7,9,0,0,3065,3064,1,0,0,0,3066, - 3069,1,0,0,0,3067,3068,1,0,0,0,3067,3065,1,0,0,0,3068,3071,1,0,0,0,3069, - 3067,1,0,0,0,3070,3072,7,10,0,0,3071,3070,1,0,0,0,3072,3073,1,0,0,0,3073, - 3074,1,0,0,0,3073,3071,1,0,0,0,3074,3078,1,0,0,0,3075,3077,7,9,0,0,3076, - 3075,1,0,0,0,3077,3080,1,0,0,0,3078,3076,1,0,0,0,3078,3079,1,0,0,0,3079, - 666,1,0,0,0,3080,3078,1,0,0,0,3081,3082,7,11,0,0,3082,668,1,0,0,0,3083, - 3084,7,12,0,0,3084,670,1,0,0,0,3085,3093,5,34,0,0,3086,3087,5,92,0,0,3087, - 3092,9,0,0,0,3088,3089,5,34,0,0,3089,3092,5,34,0,0,3090,3092,8,13,0,0,3091, - 3086,1,0,0,0,3091,3088,1,0,0,0,3091,3090,1,0,0,0,3092,3095,1,0,0,0,3093, - 3091,1,0,0,0,3093,3094,1,0,0,0,3094,3096,1,0,0,0,3095,3093,1,0,0,0,3096, - 3097,5,34,0,0,3097,672,1,0,0,0,3098,3106,5,39,0,0,3099,3100,5,92,0,0,3100, - 3105,9,0,0,0,3101,3102,5,39,0,0,3102,3105,5,39,0,0,3103,3105,8,14,0,0,3104, - 3099,1,0,0,0,3104,3101,1,0,0,0,3104,3103,1,0,0,0,3105,3108,1,0,0,0,3106, - 3104,1,0,0,0,3106,3107,1,0,0,0,3107,3109,1,0,0,0,3108,3106,1,0,0,0,3109, - 3110,5,39,0,0,3110,674,1,0,0,0,3111,3112,5,66,0,0,3112,3114,5,39,0,0,3113, - 3115,7,15,0,0,3114,3113,1,0,0,0,3115,3116,1,0,0,0,3116,3114,1,0,0,0,3116, - 3117,1,0,0,0,3117,3118,1,0,0,0,3118,3119,5,39,0,0,3119,676,1,0,0,0,3120, - 3128,5,96,0,0,3121,3122,5,92,0,0,3122,3127,9,0,0,0,3123,3124,5,96,0,0,3124, - 3127,5,96,0,0,3125,3127,8,5,0,0,3126,3121,1,0,0,0,3126,3123,1,0,0,0,3126, - 3125,1,0,0,0,3127,3130,1,0,0,0,3128,3126,1,0,0,0,3128,3129,1,0,0,0,3129, - 3131,1,0,0,0,3130,3128,1,0,0,0,3131,3132,5,96,0,0,3132,678,1,0,0,0,40,0, - 682,692,703,708,712,716,722,726,728,2954,2959,2964,2966,2972,2977,2985, - 2987,2993,3000,3004,3018,3023,3031,3033,3040,3045,3050,3056,3061,3067,3073, - 3078,3091,3093,3104,3106,3116,3126,3128,1,0,1,0]; + 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,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, + 292,1,292,1,293,1,293,1,294,1,294,1,295,1,295,1,296,1,296,1,297,1,297,1, + 298,1,298,1,299,1,299,1,300,1,300,1,301,1,301,1,302,1,302,1,303,1,303,1, + 304,1,304,1,305,1,305,1,306,1,306,1,307,1,307,1,308,1,308,1,309,1,309,1, + 310,1,310,1,311,1,311,1,312,1,312,1,313,1,313,1,314,1,314,1,315,1,315,1, + 316,1,316,1,317,1,317,1,317,1,318,1,318,1,318,1,319,1,319,1,320,1,320,1, + 320,1,321,1,321,1,321,1,322,1,322,1,322,3,322,2964,8,322,1,323,4,323,2967, + 8,323,11,323,12,323,2968,1,324,4,324,2972,8,324,11,324,12,324,2973,3,324, + 2976,8,324,1,324,1,324,4,324,2980,8,324,11,324,12,324,2981,1,324,4,324, + 2985,8,324,11,324,12,324,2986,1,324,1,324,1,324,1,324,4,324,2993,8,324, + 11,324,12,324,2994,3,324,2997,8,324,1,324,1,324,4,324,3001,8,324,11,324, + 12,324,3002,1,324,1,324,1,324,4,324,3008,8,324,11,324,12,324,3009,1,324, + 1,324,3,324,3014,8,324,1,325,1,325,1,326,1,326,1,327,1,327,1,328,1,328, + 1,329,1,329,5,329,3026,8,329,10,329,12,329,3029,9,329,4,329,3031,8,329, + 11,329,12,329,3032,1,330,1,330,1,330,1,330,1,330,1,330,5,330,3041,8,330, + 10,330,12,330,3044,9,330,1,330,1,330,1,331,1,331,3,331,3050,8,331,1,331, + 4,331,3053,8,331,11,331,12,331,3054,1,332,5,332,3058,8,332,10,332,12,332, + 3061,9,332,1,332,4,332,3064,8,332,11,332,12,332,3065,1,332,5,332,3069,8, + 332,10,332,12,332,3072,9,332,1,333,5,333,3075,8,333,10,333,12,333,3078, + 9,333,1,333,4,333,3081,8,333,11,333,12,333,3082,1,333,5,333,3086,8,333, + 10,333,12,333,3089,9,333,1,334,1,334,1,335,1,335,1,336,1,336,1,336,1,336, + 1,336,1,336,5,336,3101,8,336,10,336,12,336,3104,9,336,1,336,1,336,1,337, + 1,337,1,337,1,337,1,337,1,337,5,337,3114,8,337,10,337,12,337,3117,9,337, + 1,337,1,337,1,338,1,338,1,338,4,338,3124,8,338,11,338,12,338,3125,1,338, + 1,338,1,339,1,339,1,339,1,339,1,339,1,339,5,339,3136,8,339,10,339,12,339, + 3139,9,339,1,339,1,339,5,694,3059,3065,3076,3082,0,340,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,0,661,0,663,0,665,0,667,0,669,0,671,0,673,0,675,0,677,0,679,0,1,0,16, + 3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,46,46,58,58,2,0,47,47,92,92,3, + 0,32,32,47,47,92,92,2,0,92,92,96,96,2,0,43,43,45,45,4,0,48,57,65,90,95, + 95,97,122,3,0,65,90,95,95,97,122,7,0,35,38,42,42,48,57,64,90,94,95,97,123, + 125,125,6,0,35,38,42,42,64,90,94,95,97,123,125,125,1,0,48,57,2,0,65,90, + 97,122,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,49,3176,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,1,682,1,0,0,0,3,688, + 1,0,0,0,5,730,1,0,0,0,7,734,1,0,0,0,9,741,1,0,0,0,11,746,1,0,0,0,13,750, + 1,0,0,0,15,753,1,0,0,0,17,757,1,0,0,0,19,761,1,0,0,0,21,770,1,0,0,0,23, + 776,1,0,0,0,25,782,1,0,0,0,27,785,1,0,0,0,29,794,1,0,0,0,31,799,1,0,0,0, + 33,804,1,0,0,0,35,811,1,0,0,0,37,817,1,0,0,0,39,824,1,0,0,0,41,830,1,0, + 0,0,43,833,1,0,0,0,45,836,1,0,0,0,47,840,1,0,0,0,49,843,1,0,0,0,51,847, + 1,0,0,0,53,850,1,0,0,0,55,857,1,0,0,0,57,865,1,0,0,0,59,870,1,0,0,0,61, + 876,1,0,0,0,63,879,1,0,0,0,65,884,1,0,0,0,67,890,1,0,0,0,69,896,1,0,0,0, + 71,900,1,0,0,0,73,905,1,0,0,0,75,909,1,0,0,0,77,918,1,0,0,0,79,923,1,0, + 0,0,81,928,1,0,0,0,83,933,1,0,0,0,85,938,1,0,0,0,87,944,1,0,0,0,89,948, + 1,0,0,0,91,953,1,0,0,0,93,959,1,0,0,0,95,965,1,0,0,0,97,971,1,0,0,0,99, + 976,1,0,0,0,101,981,1,0,0,0,103,987,1,0,0,0,105,992,1,0,0,0,107,997,1,0, + 0,0,109,1005,1,0,0,0,111,1008,1,0,0,0,113,1014,1,0,0,0,115,1022,1,0,0,0, + 117,1029,1,0,0,0,119,1034,1,0,0,0,121,1044,1,0,0,0,123,1050,1,0,0,0,125, + 1055,1,0,0,0,127,1065,1,0,0,0,129,1075,1,0,0,0,131,1085,1,0,0,0,133,1093, + 1,0,0,0,135,1099,1,0,0,0,137,1105,1,0,0,0,139,1110,1,0,0,0,141,1115,1,0, + 0,0,143,1123,1,0,0,0,145,1130,1,0,0,0,147,1137,1,0,0,0,149,1143,1,0,0,0, + 151,1153,1,0,0,0,153,1158,1,0,0,0,155,1166,1,0,0,0,157,1174,1,0,0,0,159, + 1184,1,0,0,0,161,1191,1,0,0,0,163,1198,1,0,0,0,165,1205,1,0,0,0,167,1210, + 1,0,0,0,169,1219,1,0,0,0,171,1227,1,0,0,0,173,1232,1,0,0,0,175,1247,1,0, + 0,0,177,1267,1,0,0,0,179,1282,1,0,0,0,181,1289,1,0,0,0,183,1297,1,0,0,0, + 185,1305,1,0,0,0,187,1310,1,0,0,0,189,1315,1,0,0,0,191,1320,1,0,0,0,193, + 1327,1,0,0,0,195,1335,1,0,0,0,197,1342,1,0,0,0,199,1346,1,0,0,0,201,1353, + 1,0,0,0,203,1361,1,0,0,0,205,1372,1,0,0,0,207,1382,1,0,0,0,209,1387,1,0, + 0,0,211,1393,1,0,0,0,213,1400,1,0,0,0,215,1409,1,0,0,0,217,1419,1,0,0,0, + 219,1422,1,0,0,0,221,1434,1,0,0,0,223,1443,1,0,0,0,225,1449,1,0,0,0,227, + 1456,1,0,0,0,229,1463,1,0,0,0,231,1471,1,0,0,0,233,1475,1,0,0,0,235,1481, + 1,0,0,0,237,1486,1,0,0,0,239,1492,1,0,0,0,241,1504,1,0,0,0,243,1511,1,0, + 0,0,245,1520,1,0,0,0,247,1526,1,0,0,0,249,1533,1,0,0,0,251,1538,1,0,0,0, + 253,1546,1,0,0,0,255,1555,1,0,0,0,257,1558,1,0,0,0,259,1567,1,0,0,0,261, + 1575,1,0,0,0,263,1581,1,0,0,0,265,1585,1,0,0,0,267,1596,1,0,0,0,269,1603, + 1,0,0,0,271,1607,1,0,0,0,273,1610,1,0,0,0,275,1615,1,0,0,0,277,1623,1,0, + 0,0,279,1634,1,0,0,0,281,1644,1,0,0,0,283,1654,1,0,0,0,285,1661,1,0,0,0, + 287,1667,1,0,0,0,289,1673,1,0,0,0,291,1689,1,0,0,0,293,1702,1,0,0,0,295, + 1715,1,0,0,0,297,1725,1,0,0,0,299,1732,1,0,0,0,301,1743,1,0,0,0,303,1754, + 1,0,0,0,305,1760,1,0,0,0,307,1765,1,0,0,0,309,1773,1,0,0,0,311,1779,1,0, + 0,0,313,1789,1,0,0,0,315,1798,1,0,0,0,317,1807,1,0,0,0,319,1815,1,0,0,0, + 321,1821,1,0,0,0,323,1827,1,0,0,0,325,1835,1,0,0,0,327,1840,1,0,0,0,329, + 1850,1,0,0,0,331,1857,1,0,0,0,333,1867,1,0,0,0,335,1875,1,0,0,0,337,1881, + 1,0,0,0,339,1895,1,0,0,0,341,1908,1,0,0,0,343,1916,1,0,0,0,345,1923,1,0, + 0,0,347,1930,1,0,0,0,349,1942,1,0,0,0,351,1951,1,0,0,0,353,1960,1,0,0,0, + 355,1968,1,0,0,0,357,1978,1,0,0,0,359,1989,1,0,0,0,361,1995,1,0,0,0,363, + 2003,1,0,0,0,365,2015,1,0,0,0,367,2022,1,0,0,0,369,2030,1,0,0,0,371,2041, + 1,0,0,0,373,2050,1,0,0,0,375,2060,1,0,0,0,377,2067,1,0,0,0,379,2073,1,0, + 0,0,381,2085,1,0,0,0,383,2098,1,0,0,0,385,2107,1,0,0,0,387,2117,1,0,0,0, + 389,2121,1,0,0,0,391,2130,1,0,0,0,393,2138,1,0,0,0,395,2146,1,0,0,0,397, + 2151,1,0,0,0,399,2162,1,0,0,0,401,2174,1,0,0,0,403,2183,1,0,0,0,405,2191, + 1,0,0,0,407,2198,1,0,0,0,409,2204,1,0,0,0,411,2209,1,0,0,0,413,2216,1,0, + 0,0,415,2221,1,0,0,0,417,2228,1,0,0,0,419,2236,1,0,0,0,421,2243,1,0,0,0, + 423,2250,1,0,0,0,425,2255,1,0,0,0,427,2262,1,0,0,0,429,2267,1,0,0,0,431, + 2273,1,0,0,0,433,2285,1,0,0,0,435,2296,1,0,0,0,437,2309,1,0,0,0,439,2315, + 1,0,0,0,441,2323,1,0,0,0,443,2329,1,0,0,0,445,2336,1,0,0,0,447,2341,1,0, + 0,0,449,2347,1,0,0,0,451,2354,1,0,0,0,453,2364,1,0,0,0,455,2371,1,0,0,0, + 457,2377,1,0,0,0,459,2382,1,0,0,0,461,2389,1,0,0,0,463,2392,1,0,0,0,465, + 2399,1,0,0,0,467,2409,1,0,0,0,469,2419,1,0,0,0,471,2431,1,0,0,0,473,2443, + 1,0,0,0,475,2453,1,0,0,0,477,2464,1,0,0,0,479,2472,1,0,0,0,481,2481,1,0, + 0,0,483,2486,1,0,0,0,485,2492,1,0,0,0,487,2499,1,0,0,0,489,2503,1,0,0,0, + 491,2508,1,0,0,0,493,2521,1,0,0,0,495,2541,1,0,0,0,497,2561,1,0,0,0,499, + 2572,1,0,0,0,501,2588,1,0,0,0,503,2605,1,0,0,0,505,2612,1,0,0,0,507,2621, + 1,0,0,0,509,2627,1,0,0,0,511,2632,1,0,0,0,513,2640,1,0,0,0,515,2647,1,0, + 0,0,517,2651,1,0,0,0,519,2658,1,0,0,0,521,2670,1,0,0,0,523,2679,1,0,0,0, + 525,2688,1,0,0,0,527,2696,1,0,0,0,529,2701,1,0,0,0,531,2708,1,0,0,0,533, + 2714,1,0,0,0,535,2718,1,0,0,0,537,2723,1,0,0,0,539,2731,1,0,0,0,541,2738, + 1,0,0,0,543,2748,1,0,0,0,545,2754,1,0,0,0,547,2762,1,0,0,0,549,2766,1,0, + 0,0,551,2774,1,0,0,0,553,2782,1,0,0,0,555,2791,1,0,0,0,557,2795,1,0,0,0, + 559,2803,1,0,0,0,561,2810,1,0,0,0,563,2816,1,0,0,0,565,2823,1,0,0,0,567, + 2828,1,0,0,0,569,2833,1,0,0,0,571,2843,1,0,0,0,573,2857,1,0,0,0,575,2866, + 1,0,0,0,577,2874,1,0,0,0,579,2878,1,0,0,0,581,2882,1,0,0,0,583,2887,1,0, + 0,0,585,2896,1,0,0,0,587,2898,1,0,0,0,589,2900,1,0,0,0,591,2902,1,0,0,0, + 593,2904,1,0,0,0,595,2906,1,0,0,0,597,2908,1,0,0,0,599,2910,1,0,0,0,601, + 2912,1,0,0,0,603,2914,1,0,0,0,605,2916,1,0,0,0,607,2918,1,0,0,0,609,2920, + 1,0,0,0,611,2922,1,0,0,0,613,2924,1,0,0,0,615,2926,1,0,0,0,617,2928,1,0, + 0,0,619,2930,1,0,0,0,621,2932,1,0,0,0,623,2934,1,0,0,0,625,2936,1,0,0,0, + 627,2938,1,0,0,0,629,2940,1,0,0,0,631,2942,1,0,0,0,633,2944,1,0,0,0,635, + 2946,1,0,0,0,637,2949,1,0,0,0,639,2952,1,0,0,0,641,2954,1,0,0,0,643,2957, + 1,0,0,0,645,2963,1,0,0,0,647,2966,1,0,0,0,649,3013,1,0,0,0,651,3015,1,0, + 0,0,653,3017,1,0,0,0,655,3019,1,0,0,0,657,3021,1,0,0,0,659,3030,1,0,0,0, + 661,3034,1,0,0,0,663,3047,1,0,0,0,665,3059,1,0,0,0,667,3076,1,0,0,0,669, + 3090,1,0,0,0,671,3092,1,0,0,0,673,3094,1,0,0,0,675,3107,1,0,0,0,677,3120, + 1,0,0,0,679,3129,1,0,0,0,681,683,7,0,0,0,682,681,1,0,0,0,683,684,1,0,0, + 0,684,682,1,0,0,0,684,685,1,0,0,0,685,686,1,0,0,0,686,687,6,0,0,0,687,2, + 1,0,0,0,688,689,5,47,0,0,689,690,5,42,0,0,690,694,1,0,0,0,691,693,9,0,0, + 0,692,691,1,0,0,0,693,696,1,0,0,0,694,695,1,0,0,0,694,692,1,0,0,0,695,697, + 1,0,0,0,696,694,1,0,0,0,697,698,5,42,0,0,698,699,5,47,0,0,699,700,1,0,0, + 0,700,701,6,1,0,0,701,4,1,0,0,0,702,703,5,45,0,0,703,706,5,45,0,0,704,706, + 5,35,0,0,705,702,1,0,0,0,705,704,1,0,0,0,706,710,1,0,0,0,707,709,8,1,0, + 0,708,707,1,0,0,0,709,712,1,0,0,0,710,708,1,0,0,0,710,711,1,0,0,0,711,718, + 1,0,0,0,712,710,1,0,0,0,713,715,5,13,0,0,714,713,1,0,0,0,714,715,1,0,0, + 0,715,716,1,0,0,0,716,719,5,10,0,0,717,719,5,0,0,1,718,714,1,0,0,0,718, + 717,1,0,0,0,719,731,1,0,0,0,720,721,5,45,0,0,721,722,5,45,0,0,722,728,1, + 0,0,0,723,725,5,13,0,0,724,723,1,0,0,0,724,725,1,0,0,0,725,726,1,0,0,0, + 726,729,5,10,0,0,727,729,5,0,0,1,728,724,1,0,0,0,728,727,1,0,0,0,729,731, + 1,0,0,0,730,705,1,0,0,0,730,720,1,0,0,0,731,732,1,0,0,0,732,733,6,2,0,0, + 733,6,1,0,0,0,734,735,5,83,0,0,735,736,5,69,0,0,736,737,5,76,0,0,737,738, + 5,69,0,0,738,739,5,67,0,0,739,740,5,84,0,0,740,8,1,0,0,0,741,742,5,70,0, + 0,742,743,5,82,0,0,743,744,5,79,0,0,744,745,5,77,0,0,745,10,1,0,0,0,746, + 747,5,65,0,0,747,748,5,68,0,0,748,749,5,68,0,0,749,12,1,0,0,0,750,751,5, + 65,0,0,751,752,5,83,0,0,752,14,1,0,0,0,753,754,5,65,0,0,754,755,5,76,0, + 0,755,756,5,76,0,0,756,16,1,0,0,0,757,758,5,65,0,0,758,759,5,78,0,0,759, + 760,5,89,0,0,760,18,1,0,0,0,761,762,5,68,0,0,762,763,5,73,0,0,763,764,5, + 83,0,0,764,765,5,84,0,0,765,766,5,73,0,0,766,767,5,78,0,0,767,768,5,67, + 0,0,768,769,5,84,0,0,769,20,1,0,0,0,770,771,5,87,0,0,771,772,5,72,0,0,772, + 773,5,69,0,0,773,774,5,82,0,0,774,775,5,69,0,0,775,22,1,0,0,0,776,777,5, + 71,0,0,777,778,5,82,0,0,778,779,5,79,0,0,779,780,5,85,0,0,780,781,5,80, + 0,0,781,24,1,0,0,0,782,783,5,66,0,0,783,784,5,89,0,0,784,26,1,0,0,0,785, + 786,5,71,0,0,786,787,5,82,0,0,787,788,5,79,0,0,788,789,5,85,0,0,789,790, + 5,80,0,0,790,791,5,73,0,0,791,792,5,78,0,0,792,793,5,71,0,0,793,28,1,0, + 0,0,794,795,5,83,0,0,795,796,5,69,0,0,796,797,5,84,0,0,797,798,5,83,0,0, + 798,30,1,0,0,0,799,800,5,67,0,0,800,801,5,85,0,0,801,802,5,66,0,0,802,803, + 5,69,0,0,803,32,1,0,0,0,804,805,5,82,0,0,805,806,5,79,0,0,806,807,5,76, + 0,0,807,808,5,76,0,0,808,809,5,85,0,0,809,810,5,80,0,0,810,34,1,0,0,0,811, + 812,5,79,0,0,812,813,5,82,0,0,813,814,5,68,0,0,814,815,5,69,0,0,815,816, + 5,82,0,0,816,36,1,0,0,0,817,818,5,72,0,0,818,819,5,65,0,0,819,820,5,86, + 0,0,820,821,5,73,0,0,821,822,5,78,0,0,822,823,5,71,0,0,823,38,1,0,0,0,824, + 825,5,76,0,0,825,826,5,73,0,0,826,827,5,77,0,0,827,828,5,73,0,0,828,829, + 5,84,0,0,829,40,1,0,0,0,830,831,5,65,0,0,831,832,5,84,0,0,832,42,1,0,0, + 0,833,834,5,79,0,0,834,835,5,82,0,0,835,44,1,0,0,0,836,837,5,65,0,0,837, + 838,5,78,0,0,838,839,5,68,0,0,839,46,1,0,0,0,840,841,5,73,0,0,841,842,5, + 78,0,0,842,48,1,0,0,0,843,844,5,78,0,0,844,845,5,79,0,0,845,846,5,84,0, + 0,846,50,1,0,0,0,847,848,5,78,0,0,848,849,5,79,0,0,849,52,1,0,0,0,850,851, + 5,69,0,0,851,852,5,88,0,0,852,853,5,73,0,0,853,854,5,83,0,0,854,855,5,84, + 0,0,855,856,5,83,0,0,856,54,1,0,0,0,857,858,5,66,0,0,858,859,5,69,0,0,859, + 860,5,84,0,0,860,861,5,87,0,0,861,862,5,69,0,0,862,863,5,69,0,0,863,864, + 5,78,0,0,864,56,1,0,0,0,865,866,5,76,0,0,866,867,5,73,0,0,867,868,5,75, + 0,0,868,869,5,69,0,0,869,58,1,0,0,0,870,871,5,82,0,0,871,872,5,76,0,0,872, + 873,5,73,0,0,873,874,5,75,0,0,874,875,5,69,0,0,875,60,1,0,0,0,876,877,5, + 73,0,0,877,878,5,83,0,0,878,62,1,0,0,0,879,880,5,84,0,0,880,881,5,82,0, + 0,881,882,5,85,0,0,882,883,5,69,0,0,883,64,1,0,0,0,884,885,5,70,0,0,885, + 886,5,65,0,0,886,887,5,76,0,0,887,888,5,83,0,0,888,889,5,69,0,0,889,66, + 1,0,0,0,890,891,5,78,0,0,891,892,5,85,0,0,892,893,5,76,0,0,893,894,5,76, + 0,0,894,895,5,83,0,0,895,68,1,0,0,0,896,897,5,65,0,0,897,898,5,83,0,0,898, + 899,5,67,0,0,899,70,1,0,0,0,900,901,5,68,0,0,901,902,5,69,0,0,902,903,5, + 83,0,0,903,904,5,67,0,0,904,72,1,0,0,0,905,906,5,70,0,0,906,907,5,79,0, + 0,907,908,5,82,0,0,908,74,1,0,0,0,909,910,5,73,0,0,910,911,5,78,0,0,911, + 912,5,84,0,0,912,913,5,69,0,0,913,914,5,82,0,0,914,915,5,86,0,0,915,916, + 5,65,0,0,916,917,5,76,0,0,917,76,1,0,0,0,918,919,5,67,0,0,919,920,5,65, + 0,0,920,921,5,83,0,0,921,922,5,69,0,0,922,78,1,0,0,0,923,924,5,87,0,0,924, + 925,5,72,0,0,925,926,5,69,0,0,926,927,5,78,0,0,927,80,1,0,0,0,928,929,5, + 84,0,0,929,930,5,72,0,0,930,931,5,69,0,0,931,932,5,78,0,0,932,82,1,0,0, + 0,933,934,5,69,0,0,934,935,5,76,0,0,935,936,5,83,0,0,936,937,5,69,0,0,937, + 84,1,0,0,0,938,939,5,66,0,0,939,940,5,69,0,0,940,941,5,71,0,0,941,942,5, + 73,0,0,942,943,5,78,0,0,943,86,1,0,0,0,944,945,5,69,0,0,945,946,5,78,0, + 0,946,947,5,68,0,0,947,88,1,0,0,0,948,949,5,74,0,0,949,950,5,79,0,0,950, + 951,5,73,0,0,951,952,5,78,0,0,952,90,1,0,0,0,953,954,5,67,0,0,954,955,5, + 82,0,0,955,956,5,79,0,0,956,957,5,83,0,0,957,958,5,83,0,0,958,92,1,0,0, + 0,959,960,5,79,0,0,960,961,5,85,0,0,961,962,5,84,0,0,962,963,5,69,0,0,963, + 964,5,82,0,0,964,94,1,0,0,0,965,966,5,73,0,0,966,967,5,78,0,0,967,968,5, + 78,0,0,968,969,5,69,0,0,969,970,5,82,0,0,970,96,1,0,0,0,971,972,5,76,0, + 0,972,973,5,69,0,0,973,974,5,70,0,0,974,975,5,84,0,0,975,98,1,0,0,0,976, + 977,5,83,0,0,977,978,5,69,0,0,978,979,5,77,0,0,979,980,5,73,0,0,980,100, + 1,0,0,0,981,982,5,82,0,0,982,983,5,73,0,0,983,984,5,71,0,0,984,985,5,72, + 0,0,985,986,5,84,0,0,986,102,1,0,0,0,987,988,5,70,0,0,988,989,5,85,0,0, + 989,990,5,76,0,0,990,991,5,76,0,0,991,104,1,0,0,0,992,993,5,85,0,0,993, + 994,5,83,0,0,994,995,5,69,0,0,995,996,5,82,0,0,996,106,1,0,0,0,997,998, + 5,78,0,0,998,999,5,65,0,0,999,1000,5,84,0,0,1000,1001,5,85,0,0,1001,1002, + 5,82,0,0,1002,1003,5,65,0,0,1003,1004,5,76,0,0,1004,108,1,0,0,0,1005,1006, + 5,79,0,0,1006,1007,5,78,0,0,1007,110,1,0,0,0,1008,1009,5,80,0,0,1009,1010, + 5,73,0,0,1010,1011,5,86,0,0,1011,1012,5,79,0,0,1012,1013,5,84,0,0,1013, + 112,1,0,0,0,1014,1015,5,76,0,0,1015,1016,5,65,0,0,1016,1017,5,84,0,0,1017, + 1018,5,69,0,0,1018,1019,5,82,0,0,1019,1020,5,65,0,0,1020,1021,5,76,0,0, + 1021,114,1,0,0,0,1022,1023,5,87,0,0,1023,1024,5,73,0,0,1024,1025,5,78,0, + 0,1025,1026,5,68,0,0,1026,1027,5,79,0,0,1027,1028,5,87,0,0,1028,116,1,0, + 0,0,1029,1030,5,79,0,0,1030,1031,5,86,0,0,1031,1032,5,69,0,0,1032,1033, + 5,82,0,0,1033,118,1,0,0,0,1034,1035,5,80,0,0,1035,1036,5,65,0,0,1036,1037, + 5,82,0,0,1037,1038,5,84,0,0,1038,1039,5,73,0,0,1039,1040,5,84,0,0,1040, + 1041,5,73,0,0,1041,1042,5,79,0,0,1042,1043,5,78,0,0,1043,120,1,0,0,0,1044, + 1045,5,82,0,0,1045,1046,5,65,0,0,1046,1047,5,78,0,0,1047,1048,5,71,0,0, + 1048,1049,5,69,0,0,1049,122,1,0,0,0,1050,1051,5,82,0,0,1051,1052,5,79,0, + 0,1052,1053,5,87,0,0,1053,1054,5,83,0,0,1054,124,1,0,0,0,1055,1056,5,85, + 0,0,1056,1057,5,78,0,0,1057,1058,5,66,0,0,1058,1059,5,79,0,0,1059,1060, + 5,85,0,0,1060,1061,5,78,0,0,1061,1062,5,68,0,0,1062,1063,5,69,0,0,1063, + 1064,5,68,0,0,1064,126,1,0,0,0,1065,1066,5,80,0,0,1066,1067,5,82,0,0,1067, + 1068,5,69,0,0,1068,1069,5,67,0,0,1069,1070,5,69,0,0,1070,1071,5,68,0,0, + 1071,1072,5,73,0,0,1072,1073,5,78,0,0,1073,1074,5,71,0,0,1074,128,1,0,0, + 0,1075,1076,5,70,0,0,1076,1077,5,79,0,0,1077,1078,5,76,0,0,1078,1079,5, + 76,0,0,1079,1080,5,79,0,0,1080,1081,5,87,0,0,1081,1082,5,73,0,0,1082,1083, + 5,78,0,0,1083,1084,5,71,0,0,1084,130,1,0,0,0,1085,1086,5,67,0,0,1086,1087, + 5,85,0,0,1087,1088,5,82,0,0,1088,1089,5,82,0,0,1089,1090,5,69,0,0,1090, + 1091,5,78,0,0,1091,1092,5,84,0,0,1092,132,1,0,0,0,1093,1094,5,70,0,0,1094, + 1095,5,73,0,0,1095,1096,5,82,0,0,1096,1097,5,83,0,0,1097,1098,5,84,0,0, + 1098,134,1,0,0,0,1099,1100,5,65,0,0,1100,1101,5,70,0,0,1101,1102,5,84,0, + 0,1102,1103,5,69,0,0,1103,1104,5,82,0,0,1104,136,1,0,0,0,1105,1106,5,76, + 0,0,1106,1107,5,65,0,0,1107,1108,5,83,0,0,1108,1109,5,84,0,0,1109,138,1, + 0,0,0,1110,1111,5,87,0,0,1111,1112,5,73,0,0,1112,1113,5,84,0,0,1113,1114, + 5,72,0,0,1114,140,1,0,0,0,1115,1116,5,87,0,0,1116,1117,5,73,0,0,1117,1118, + 5,84,0,0,1118,1119,5,72,0,0,1119,1120,5,79,0,0,1120,1121,5,85,0,0,1121, + 1122,5,84,0,0,1122,142,1,0,0,0,1123,1124,5,86,0,0,1124,1125,5,65,0,0,1125, + 1126,5,76,0,0,1126,1127,5,85,0,0,1127,1128,5,69,0,0,1128,1129,5,83,0,0, + 1129,144,1,0,0,0,1130,1131,5,67,0,0,1131,1132,5,82,0,0,1132,1133,5,69,0, + 0,1133,1134,5,65,0,0,1134,1135,5,84,0,0,1135,1136,5,69,0,0,1136,146,1,0, + 0,0,1137,1138,5,84,0,0,1138,1139,5,65,0,0,1139,1140,5,66,0,0,1140,1141, + 5,76,0,0,1141,1142,5,69,0,0,1142,148,1,0,0,0,1143,1144,5,68,0,0,1144,1145, + 5,73,0,0,1145,1146,5,82,0,0,1146,1147,5,69,0,0,1147,1148,5,67,0,0,1148, + 1149,5,84,0,0,1149,1150,5,79,0,0,1150,1151,5,82,0,0,1151,1152,5,89,0,0, + 1152,150,1,0,0,0,1153,1154,5,86,0,0,1154,1155,5,73,0,0,1155,1156,5,69,0, + 0,1156,1157,5,87,0,0,1157,152,1,0,0,0,1158,1159,5,82,0,0,1159,1160,5,69, + 0,0,1160,1161,5,80,0,0,1161,1162,5,76,0,0,1162,1163,5,65,0,0,1163,1164, + 5,67,0,0,1164,1165,5,69,0,0,1165,154,1,0,0,0,1166,1167,5,69,0,0,1167,1168, + 5,88,0,0,1168,1169,5,69,0,0,1169,1170,5,67,0,0,1170,1171,5,85,0,0,1171, + 1172,5,84,0,0,1172,1173,5,69,0,0,1173,156,1,0,0,0,1174,1175,5,83,0,0,1175, + 1176,5,84,0,0,1176,1177,5,65,0,0,1177,1178,5,84,0,0,1178,1179,5,69,0,0, + 1179,1180,5,77,0,0,1180,1181,5,69,0,0,1181,1182,5,78,0,0,1182,1183,5,84, + 0,0,1183,158,1,0,0,0,1184,1185,5,73,0,0,1185,1186,5,78,0,0,1186,1187,5, + 83,0,0,1187,1188,5,69,0,0,1188,1189,5,82,0,0,1189,1190,5,84,0,0,1190,160, + 1,0,0,0,1191,1192,5,68,0,0,1192,1193,5,69,0,0,1193,1194,5,76,0,0,1194,1195, + 5,69,0,0,1195,1196,5,84,0,0,1196,1197,5,69,0,0,1197,162,1,0,0,0,1198,1199, + 5,82,0,0,1199,1200,5,69,0,0,1200,1201,5,77,0,0,1201,1202,5,79,0,0,1202, + 1203,5,86,0,0,1203,1204,5,69,0,0,1204,164,1,0,0,0,1205,1206,5,73,0,0,1206, + 1207,5,78,0,0,1207,1208,5,84,0,0,1208,1209,5,79,0,0,1209,166,1,0,0,0,1210, + 1211,5,68,0,0,1211,1212,5,69,0,0,1212,1213,5,83,0,0,1213,1214,5,67,0,0, + 1214,1215,5,82,0,0,1215,1216,5,73,0,0,1216,1217,5,66,0,0,1217,1218,5,69, + 0,0,1218,168,1,0,0,0,1219,1220,5,69,0,0,1220,1221,5,88,0,0,1221,1222,5, + 80,0,0,1222,1223,5,76,0,0,1223,1224,5,65,0,0,1224,1225,5,73,0,0,1225,1226, + 5,78,0,0,1226,170,1,0,0,0,1227,1228,5,80,0,0,1228,1229,5,76,0,0,1229,1230, + 5,65,0,0,1230,1231,5,78,0,0,1231,172,1,0,0,0,1232,1233,5,67,0,0,1233,1234, + 5,72,0,0,1234,1235,5,65,0,0,1235,1236,5,78,0,0,1236,1237,5,71,0,0,1237, + 1238,5,69,0,0,1238,1239,5,76,0,0,1239,1240,5,79,0,0,1240,1241,5,71,0,0, + 1241,1242,5,95,0,0,1242,1243,5,77,0,0,1243,1244,5,79,0,0,1244,1245,5,68, + 0,0,1245,1246,5,69,0,0,1246,174,1,0,0,0,1247,1248,5,74,0,0,1248,1249,5, + 83,0,0,1249,1250,5,79,0,0,1250,1251,5,78,0,0,1251,1252,5,95,0,0,1252,1253, + 5,69,0,0,1253,1254,5,88,0,0,1254,1255,5,69,0,0,1255,1256,5,67,0,0,1256, + 1257,5,85,0,0,1257,1258,5,84,0,0,1258,1259,5,73,0,0,1259,1260,5,79,0,0, + 1260,1261,5,78,0,0,1261,1262,5,95,0,0,1262,1263,5,80,0,0,1263,1264,5,76, + 0,0,1264,1265,5,65,0,0,1265,1266,5,78,0,0,1266,176,1,0,0,0,1267,1268,5, + 69,0,0,1268,1269,5,83,0,0,1269,1270,5,84,0,0,1270,1271,5,73,0,0,1271,1272, + 5,77,0,0,1272,1273,5,65,0,0,1273,1274,5,84,0,0,1274,1275,5,69,0,0,1275, + 1276,5,68,0,0,1276,1277,5,95,0,0,1277,1278,5,67,0,0,1278,1279,5,79,0,0, + 1279,1280,5,83,0,0,1280,1281,5,84,0,0,1281,178,1,0,0,0,1282,1283,5,70,0, + 0,1283,1284,5,79,0,0,1284,1285,5,82,0,0,1285,1286,5,77,0,0,1286,1287,5, + 65,0,0,1287,1288,5,84,0,0,1288,180,1,0,0,0,1289,1290,5,76,0,0,1290,1291, + 5,79,0,0,1291,1292,5,71,0,0,1292,1293,5,73,0,0,1293,1294,5,67,0,0,1294, + 1295,5,65,0,0,1295,1296,5,76,0,0,1296,182,1,0,0,0,1297,1298,5,67,0,0,1298, + 1299,5,79,0,0,1299,1300,5,68,0,0,1300,1301,5,69,0,0,1301,1302,5,71,0,0, + 1302,1303,5,69,0,0,1303,1304,5,78,0,0,1304,184,1,0,0,0,1305,1306,5,67,0, + 0,1306,1307,5,79,0,0,1307,1308,5,83,0,0,1308,1309,5,84,0,0,1309,186,1,0, + 0,0,1310,1311,5,67,0,0,1311,1312,5,65,0,0,1312,1313,5,83,0,0,1313,1314, + 5,84,0,0,1314,188,1,0,0,0,1315,1316,5,83,0,0,1316,1317,5,72,0,0,1317,1318, + 5,79,0,0,1318,1319,5,87,0,0,1319,190,1,0,0,0,1320,1321,5,84,0,0,1321,1322, + 5,65,0,0,1322,1323,5,66,0,0,1323,1324,5,76,0,0,1324,1325,5,69,0,0,1325, + 1326,5,83,0,0,1326,192,1,0,0,0,1327,1328,5,67,0,0,1328,1329,5,79,0,0,1329, + 1330,5,76,0,0,1330,1331,5,85,0,0,1331,1332,5,77,0,0,1332,1333,5,78,0,0, + 1333,1334,5,83,0,0,1334,194,1,0,0,0,1335,1336,5,67,0,0,1336,1337,5,79,0, + 0,1337,1338,5,76,0,0,1338,1339,5,85,0,0,1339,1340,5,77,0,0,1340,1341,5, + 78,0,0,1341,196,1,0,0,0,1342,1343,5,85,0,0,1343,1344,5,83,0,0,1344,1345, + 5,69,0,0,1345,198,1,0,0,0,1346,1347,5,77,0,0,1347,1348,5,79,0,0,1348,1349, + 5,68,0,0,1349,1350,5,85,0,0,1350,1351,5,76,0,0,1351,1352,5,69,0,0,1352, + 200,1,0,0,0,1353,1354,5,77,0,0,1354,1355,5,79,0,0,1355,1356,5,68,0,0,1356, + 1357,5,85,0,0,1357,1358,5,76,0,0,1358,1359,5,69,0,0,1359,1360,5,83,0,0, + 1360,202,1,0,0,0,1361,1362,5,80,0,0,1362,1363,5,65,0,0,1363,1364,5,82,0, + 0,1364,1365,5,84,0,0,1365,1366,5,73,0,0,1366,1367,5,84,0,0,1367,1368,5, + 73,0,0,1368,1369,5,79,0,0,1369,1370,5,78,0,0,1370,1371,5,83,0,0,1371,204, + 1,0,0,0,1372,1373,5,70,0,0,1373,1374,5,85,0,0,1374,1375,5,78,0,0,1375,1376, + 5,67,0,0,1376,1377,5,84,0,0,1377,1378,5,73,0,0,1378,1379,5,79,0,0,1379, + 1380,5,78,0,0,1380,1381,5,83,0,0,1381,206,1,0,0,0,1382,1383,5,68,0,0,1383, + 1384,5,82,0,0,1384,1385,5,79,0,0,1385,1386,5,80,0,0,1386,208,1,0,0,0,1387, + 1388,5,85,0,0,1388,1389,5,78,0,0,1389,1390,5,73,0,0,1390,1391,5,79,0,0, + 1391,1392,5,78,0,0,1392,210,1,0,0,0,1393,1394,5,69,0,0,1394,1395,5,88,0, + 0,1395,1396,5,67,0,0,1396,1397,5,69,0,0,1397,1398,5,80,0,0,1398,1399,5, + 84,0,0,1399,212,1,0,0,0,1400,1401,5,83,0,0,1401,1402,5,69,0,0,1402,1403, + 5,84,0,0,1403,1404,5,77,0,0,1404,1405,5,73,0,0,1405,1406,5,78,0,0,1406, + 1407,5,85,0,0,1407,1408,5,83,0,0,1408,214,1,0,0,0,1409,1410,5,73,0,0,1410, + 1411,5,78,0,0,1411,1412,5,84,0,0,1412,1413,5,69,0,0,1413,1414,5,82,0,0, + 1414,1415,5,83,0,0,1415,1416,5,69,0,0,1416,1417,5,67,0,0,1417,1418,5,84, + 0,0,1418,216,1,0,0,0,1419,1420,5,84,0,0,1420,1421,5,79,0,0,1421,218,1,0, + 0,0,1422,1423,5,84,0,0,1423,1424,5,65,0,0,1424,1425,5,66,0,0,1425,1426, + 5,76,0,0,1426,1427,5,69,0,0,1427,1428,5,83,0,0,1428,1429,5,65,0,0,1429, + 1430,5,77,0,0,1430,1431,5,80,0,0,1431,1432,5,76,0,0,1432,1433,5,69,0,0, + 1433,220,1,0,0,0,1434,1435,5,83,0,0,1435,1436,5,84,0,0,1436,1437,5,82,0, + 0,1437,1438,5,65,0,0,1438,1439,5,84,0,0,1439,1440,5,73,0,0,1440,1441,5, + 70,0,0,1441,1442,5,89,0,0,1442,222,1,0,0,0,1443,1444,5,65,0,0,1444,1445, + 5,76,0,0,1445,1446,5,84,0,0,1446,1447,5,69,0,0,1447,1448,5,82,0,0,1448, + 224,1,0,0,0,1449,1450,5,82,0,0,1450,1451,5,69,0,0,1451,1452,5,78,0,0,1452, + 1453,5,65,0,0,1453,1454,5,77,0,0,1454,1455,5,69,0,0,1455,226,1,0,0,0,1456, + 1457,5,83,0,0,1457,1458,5,84,0,0,1458,1459,5,82,0,0,1459,1460,5,85,0,0, + 1460,1461,5,67,0,0,1461,1462,5,84,0,0,1462,228,1,0,0,0,1463,1464,5,67,0, + 0,1464,1465,5,79,0,0,1465,1466,5,77,0,0,1466,1467,5,77,0,0,1467,1468,5, + 69,0,0,1468,1469,5,78,0,0,1469,1470,5,84,0,0,1470,230,1,0,0,0,1471,1472, + 5,83,0,0,1472,1473,5,69,0,0,1473,1474,5,84,0,0,1474,232,1,0,0,0,1475,1476, + 5,82,0,0,1476,1477,5,69,0,0,1477,1478,5,83,0,0,1478,1479,5,69,0,0,1479, + 1480,5,84,0,0,1480,234,1,0,0,0,1481,1482,5,68,0,0,1482,1483,5,65,0,0,1483, + 1484,5,84,0,0,1484,1485,5,65,0,0,1485,236,1,0,0,0,1486,1487,5,83,0,0,1487, + 1488,5,84,0,0,1488,1489,5,65,0,0,1489,1490,5,82,0,0,1490,1491,5,84,0,0, + 1491,238,1,0,0,0,1492,1493,5,84,0,0,1493,1494,5,82,0,0,1494,1495,5,65,0, + 0,1495,1496,5,78,0,0,1496,1497,5,83,0,0,1497,1498,5,65,0,0,1498,1499,5, + 67,0,0,1499,1500,5,84,0,0,1500,1501,5,73,0,0,1501,1502,5,79,0,0,1502,1503, + 5,78,0,0,1503,240,1,0,0,0,1504,1505,5,67,0,0,1505,1506,5,79,0,0,1506,1507, + 5,77,0,0,1507,1508,5,77,0,0,1508,1509,5,73,0,0,1509,1510,5,84,0,0,1510, + 242,1,0,0,0,1511,1512,5,82,0,0,1512,1513,5,79,0,0,1513,1514,5,76,0,0,1514, + 1515,5,76,0,0,1515,1516,5,66,0,0,1516,1517,5,65,0,0,1517,1518,5,67,0,0, + 1518,1519,5,75,0,0,1519,244,1,0,0,0,1520,1521,5,77,0,0,1521,1522,5,65,0, + 0,1522,1523,5,67,0,0,1523,1524,5,82,0,0,1524,1525,5,79,0,0,1525,246,1,0, + 0,0,1526,1527,5,73,0,0,1527,1528,5,71,0,0,1528,1529,5,78,0,0,1529,1530, + 5,79,0,0,1530,1531,5,82,0,0,1531,1532,5,69,0,0,1532,248,1,0,0,0,1533,1534, + 5,66,0,0,1534,1535,5,79,0,0,1535,1536,5,84,0,0,1536,1537,5,72,0,0,1537, + 250,1,0,0,0,1538,1539,5,76,0,0,1539,1540,5,69,0,0,1540,1541,5,65,0,0,1541, + 1542,5,68,0,0,1542,1543,5,73,0,0,1543,1544,5,78,0,0,1544,1545,5,71,0,0, + 1545,252,1,0,0,0,1546,1547,5,84,0,0,1547,1548,5,82,0,0,1548,1549,5,65,0, + 0,1549,1550,5,73,0,0,1550,1551,5,76,0,0,1551,1552,5,73,0,0,1552,1553,5, + 78,0,0,1553,1554,5,71,0,0,1554,254,1,0,0,0,1555,1556,5,73,0,0,1556,1557, + 5,70,0,0,1557,256,1,0,0,0,1558,1559,5,80,0,0,1559,1560,5,79,0,0,1560,1561, + 5,83,0,0,1561,1562,5,73,0,0,1562,1563,5,84,0,0,1563,1564,5,73,0,0,1564, + 1565,5,79,0,0,1565,1566,5,78,0,0,1566,258,1,0,0,0,1567,1568,5,69,0,0,1568, + 1569,5,88,0,0,1569,1570,5,84,0,0,1570,1571,5,82,0,0,1571,1572,5,65,0,0, + 1572,1573,5,67,0,0,1573,1574,5,84,0,0,1574,260,1,0,0,0,1575,1576,5,77,0, + 0,1576,1577,5,73,0,0,1577,1578,5,78,0,0,1578,1579,5,85,0,0,1579,1580,5, + 83,0,0,1580,262,1,0,0,0,1581,1582,5,68,0,0,1582,1583,5,73,0,0,1583,1584, + 5,86,0,0,1584,264,1,0,0,0,1585,1586,5,80,0,0,1586,1587,5,69,0,0,1587,1588, + 5,82,0,0,1588,1589,5,67,0,0,1589,1590,5,69,0,0,1590,1591,5,78,0,0,1591, + 1592,5,84,0,0,1592,1593,5,76,0,0,1593,1594,5,73,0,0,1594,1595,5,84,0,0, + 1595,266,1,0,0,0,1596,1597,5,66,0,0,1597,1598,5,85,0,0,1598,1599,5,67,0, + 0,1599,1600,5,75,0,0,1600,1601,5,69,0,0,1601,1602,5,84,0,0,1602,268,1,0, + 0,0,1603,1604,5,79,0,0,1604,1605,5,85,0,0,1605,1606,5,84,0,0,1606,270,1, + 0,0,0,1607,1608,5,79,0,0,1608,1609,5,70,0,0,1609,272,1,0,0,0,1610,1611, + 5,83,0,0,1611,1612,5,79,0,0,1612,1613,5,82,0,0,1613,1614,5,84,0,0,1614, + 274,1,0,0,0,1615,1616,5,67,0,0,1616,1617,5,76,0,0,1617,1618,5,85,0,0,1618, + 1619,5,83,0,0,1619,1620,5,84,0,0,1620,1621,5,69,0,0,1621,1622,5,82,0,0, + 1622,276,1,0,0,0,1623,1624,5,68,0,0,1624,1625,5,73,0,0,1625,1626,5,83,0, + 0,1626,1627,5,84,0,0,1627,1628,5,82,0,0,1628,1629,5,73,0,0,1629,1630,5, + 66,0,0,1630,1631,5,85,0,0,1631,1632,5,84,0,0,1632,1633,5,69,0,0,1633,278, + 1,0,0,0,1634,1635,5,79,0,0,1635,1636,5,86,0,0,1636,1637,5,69,0,0,1637,1638, + 5,82,0,0,1638,1639,5,87,0,0,1639,1640,5,82,0,0,1640,1641,5,73,0,0,1641, + 1642,5,84,0,0,1642,1643,5,69,0,0,1643,280,1,0,0,0,1644,1645,5,84,0,0,1645, + 1646,5,82,0,0,1646,1647,5,65,0,0,1647,1648,5,78,0,0,1648,1649,5,83,0,0, + 1649,1650,5,70,0,0,1650,1651,5,79,0,0,1651,1652,5,82,0,0,1652,1653,5,77, + 0,0,1653,282,1,0,0,0,1654,1655,5,82,0,0,1655,1656,5,69,0,0,1656,1657,5, + 68,0,0,1657,1658,5,85,0,0,1658,1659,5,67,0,0,1659,1660,5,69,0,0,1660,284, + 1,0,0,0,1661,1662,5,85,0,0,1662,1663,5,83,0,0,1663,1664,5,73,0,0,1664,1665, + 5,78,0,0,1665,1666,5,71,0,0,1666,286,1,0,0,0,1667,1668,5,83,0,0,1668,1669, + 5,69,0,0,1669,1670,5,82,0,0,1670,1671,5,68,0,0,1671,1672,5,69,0,0,1672, + 288,1,0,0,0,1673,1674,5,83,0,0,1674,1675,5,69,0,0,1675,1676,5,82,0,0,1676, + 1677,5,68,0,0,1677,1678,5,69,0,0,1678,1679,5,80,0,0,1679,1680,5,82,0,0, + 1680,1681,5,79,0,0,1681,1682,5,80,0,0,1682,1683,5,69,0,0,1683,1684,5,82, + 0,0,1684,1685,5,84,0,0,1685,1686,5,73,0,0,1686,1687,5,69,0,0,1687,1688, + 5,83,0,0,1688,290,1,0,0,0,1689,1690,5,82,0,0,1690,1691,5,69,0,0,1691,1692, + 5,67,0,0,1692,1693,5,79,0,0,1693,1694,5,82,0,0,1694,1695,5,68,0,0,1695, + 1696,5,82,0,0,1696,1697,5,69,0,0,1697,1698,5,65,0,0,1698,1699,5,68,0,0, + 1699,1700,5,69,0,0,1700,1701,5,82,0,0,1701,292,1,0,0,0,1702,1703,5,82,0, + 0,1703,1704,5,69,0,0,1704,1705,5,67,0,0,1705,1706,5,79,0,0,1706,1707,5, + 82,0,0,1707,1708,5,68,0,0,1708,1709,5,87,0,0,1709,1710,5,82,0,0,1710,1711, + 5,73,0,0,1711,1712,5,84,0,0,1712,1713,5,69,0,0,1713,1714,5,82,0,0,1714, + 294,1,0,0,0,1715,1716,5,68,0,0,1716,1717,5,69,0,0,1717,1718,5,76,0,0,1718, + 1719,5,73,0,0,1719,1720,5,77,0,0,1720,1721,5,73,0,0,1721,1722,5,84,0,0, + 1722,1723,5,69,0,0,1723,1724,5,68,0,0,1724,296,1,0,0,0,1725,1726,5,70,0, + 0,1726,1727,5,73,0,0,1727,1728,5,69,0,0,1728,1729,5,76,0,0,1729,1730,5, + 68,0,0,1730,1731,5,83,0,0,1731,298,1,0,0,0,1732,1733,5,84,0,0,1733,1734, + 5,69,0,0,1734,1735,5,82,0,0,1735,1736,5,77,0,0,1736,1737,5,73,0,0,1737, + 1738,5,78,0,0,1738,1739,5,65,0,0,1739,1740,5,84,0,0,1740,1741,5,69,0,0, + 1741,1742,5,68,0,0,1742,300,1,0,0,0,1743,1744,5,67,0,0,1744,1745,5,79,0, + 0,1745,1746,5,76,0,0,1746,1747,5,76,0,0,1747,1748,5,69,0,0,1748,1749,5, + 67,0,0,1749,1750,5,84,0,0,1750,1751,5,73,0,0,1751,1752,5,79,0,0,1752,1753, + 5,78,0,0,1753,302,1,0,0,0,1754,1755,5,73,0,0,1755,1756,5,84,0,0,1756,1757, + 5,69,0,0,1757,1758,5,77,0,0,1758,1759,5,83,0,0,1759,304,1,0,0,0,1760,1761, + 5,75,0,0,1761,1762,5,69,0,0,1762,1763,5,89,0,0,1763,1764,5,83,0,0,1764, + 306,1,0,0,0,1765,1766,5,69,0,0,1766,1767,5,83,0,0,1767,1768,5,67,0,0,1768, + 1769,5,65,0,0,1769,1770,5,80,0,0,1770,1771,5,69,0,0,1771,1772,5,68,0,0, + 1772,308,1,0,0,0,1773,1774,5,76,0,0,1774,1775,5,73,0,0,1775,1776,5,78,0, + 0,1776,1777,5,69,0,0,1777,1778,5,83,0,0,1778,310,1,0,0,0,1779,1780,5,83, + 0,0,1780,1781,5,69,0,0,1781,1782,5,80,0,0,1782,1783,5,65,0,0,1783,1784, + 5,82,0,0,1784,1785,5,65,0,0,1785,1786,5,84,0,0,1786,1787,5,69,0,0,1787, + 1788,5,68,0,0,1788,312,1,0,0,0,1789,1790,5,70,0,0,1790,1791,5,85,0,0,1791, + 1792,5,78,0,0,1792,1793,5,67,0,0,1793,1794,5,84,0,0,1794,1795,5,73,0,0, + 1795,1796,5,79,0,0,1796,1797,5,78,0,0,1797,314,1,0,0,0,1798,1799,5,69,0, + 0,1799,1800,5,88,0,0,1800,1801,5,84,0,0,1801,1802,5,69,0,0,1802,1803,5, + 78,0,0,1803,1804,5,68,0,0,1804,1805,5,69,0,0,1805,1806,5,68,0,0,1806,316, + 1,0,0,0,1807,1808,5,82,0,0,1808,1809,5,69,0,0,1809,1810,5,70,0,0,1810,1811, + 5,82,0,0,1811,1812,5,69,0,0,1812,1813,5,83,0,0,1813,1814,5,72,0,0,1814, + 318,1,0,0,0,1815,1816,5,67,0,0,1816,1817,5,76,0,0,1817,1818,5,69,0,0,1818, + 1819,5,65,0,0,1819,1820,5,82,0,0,1820,320,1,0,0,0,1821,1822,5,67,0,0,1822, + 1823,5,65,0,0,1823,1824,5,67,0,0,1824,1825,5,72,0,0,1825,1826,5,69,0,0, + 1826,322,1,0,0,0,1827,1828,5,85,0,0,1828,1829,5,78,0,0,1829,1830,5,67,0, + 0,1830,1831,5,65,0,0,1831,1832,5,67,0,0,1832,1833,5,72,0,0,1833,1834,5, + 69,0,0,1834,324,1,0,0,0,1835,1836,5,76,0,0,1836,1837,5,65,0,0,1837,1838, + 5,90,0,0,1838,1839,5,89,0,0,1839,326,1,0,0,0,1840,1841,5,70,0,0,1841,1842, + 5,79,0,0,1842,1843,5,82,0,0,1843,1844,5,77,0,0,1844,1845,5,65,0,0,1845, + 1846,5,84,0,0,1846,1847,5,84,0,0,1847,1848,5,69,0,0,1848,1849,5,68,0,0, + 1849,328,1,0,0,0,1850,1851,5,71,0,0,1851,1852,5,76,0,0,1852,1853,5,79,0, + 0,1853,1854,5,66,0,0,1854,1855,5,65,0,0,1855,1856,5,76,0,0,1856,330,1,0, + 0,0,1857,1858,5,84,0,0,1858,1859,5,69,0,0,1859,1860,5,77,0,0,1860,1861, + 5,80,0,0,1861,1862,5,79,0,0,1862,1863,5,82,0,0,1863,1864,5,65,0,0,1864, + 1865,5,82,0,0,1865,1866,5,89,0,0,1866,332,1,0,0,0,1867,1868,5,79,0,0,1868, + 1869,5,80,0,0,1869,1870,5,84,0,0,1870,1871,5,73,0,0,1871,1872,5,79,0,0, + 1872,1873,5,78,0,0,1873,1874,5,83,0,0,1874,334,1,0,0,0,1875,1876,5,85,0, + 0,1876,1877,5,78,0,0,1877,1878,5,83,0,0,1878,1879,5,69,0,0,1879,1880,5, + 84,0,0,1880,336,1,0,0,0,1881,1882,5,84,0,0,1882,1883,5,66,0,0,1883,1884, + 5,76,0,0,1884,1885,5,80,0,0,1885,1886,5,82,0,0,1886,1887,5,79,0,0,1887, + 1888,5,80,0,0,1888,1889,5,69,0,0,1889,1890,5,82,0,0,1890,1891,5,84,0,0, + 1891,1892,5,73,0,0,1892,1893,5,69,0,0,1893,1894,5,83,0,0,1894,338,1,0,0, + 0,1895,1896,5,68,0,0,1896,1897,5,66,0,0,1897,1898,5,80,0,0,1898,1899,5, + 82,0,0,1899,1900,5,79,0,0,1900,1901,5,80,0,0,1901,1902,5,69,0,0,1902,1903, + 5,82,0,0,1903,1904,5,84,0,0,1904,1905,5,73,0,0,1905,1906,5,69,0,0,1906, + 1907,5,83,0,0,1907,340,1,0,0,0,1908,1909,5,66,0,0,1909,1910,5,85,0,0,1910, + 1911,5,67,0,0,1911,1912,5,75,0,0,1912,1913,5,69,0,0,1913,1914,5,84,0,0, + 1914,1915,5,83,0,0,1915,342,1,0,0,0,1916,1917,5,83,0,0,1917,1918,5,75,0, + 0,1918,1919,5,69,0,0,1919,1920,5,87,0,0,1920,1921,5,69,0,0,1921,1922,5, + 68,0,0,1922,344,1,0,0,0,1923,1924,5,83,0,0,1924,1925,5,84,0,0,1925,1926, + 5,79,0,0,1926,1927,5,82,0,0,1927,1928,5,69,0,0,1928,1929,5,68,0,0,1929, + 346,1,0,0,0,1930,1931,5,68,0,0,1931,1932,5,73,0,0,1932,1933,5,82,0,0,1933, + 1934,5,69,0,0,1934,1935,5,67,0,0,1935,1936,5,84,0,0,1936,1937,5,79,0,0, + 1937,1938,5,82,0,0,1938,1939,5,73,0,0,1939,1940,5,69,0,0,1940,1941,5,83, + 0,0,1941,348,1,0,0,0,1942,1943,5,76,0,0,1943,1944,5,79,0,0,1944,1945,5, + 67,0,0,1945,1946,5,65,0,0,1946,1947,5,84,0,0,1947,1948,5,73,0,0,1948,1949, + 5,79,0,0,1949,1950,5,78,0,0,1950,350,1,0,0,0,1951,1952,5,69,0,0,1952,1953, + 5,88,0,0,1953,1954,5,67,0,0,1954,1955,5,72,0,0,1955,1956,5,65,0,0,1956, + 1957,5,78,0,0,1957,1958,5,71,0,0,1958,1959,5,69,0,0,1959,352,1,0,0,0,1960, + 1961,5,65,0,0,1961,1962,5,82,0,0,1962,1963,5,67,0,0,1963,1964,5,72,0,0, + 1964,1965,5,73,0,0,1965,1966,5,86,0,0,1966,1967,5,69,0,0,1967,354,1,0,0, + 0,1968,1969,5,85,0,0,1969,1970,5,78,0,0,1970,1971,5,65,0,0,1971,1972,5, + 82,0,0,1972,1973,5,67,0,0,1973,1974,5,72,0,0,1974,1975,5,73,0,0,1975,1976, + 5,86,0,0,1976,1977,5,69,0,0,1977,356,1,0,0,0,1978,1979,5,70,0,0,1979,1980, + 5,73,0,0,1980,1981,5,76,0,0,1981,1982,5,69,0,0,1982,1983,5,70,0,0,1983, + 1984,5,79,0,0,1984,1985,5,82,0,0,1985,1986,5,77,0,0,1986,1987,5,65,0,0, + 1987,1988,5,84,0,0,1988,358,1,0,0,0,1989,1990,5,84,0,0,1990,1991,5,79,0, + 0,1991,1992,5,85,0,0,1992,1993,5,67,0,0,1993,1994,5,72,0,0,1994,360,1,0, + 0,0,1995,1996,5,67,0,0,1996,1997,5,79,0,0,1997,1998,5,77,0,0,1998,1999, + 5,80,0,0,1999,2000,5,65,0,0,2000,2001,5,67,0,0,2001,2002,5,84,0,0,2002, + 362,1,0,0,0,2003,2004,5,67,0,0,2004,2005,5,79,0,0,2005,2006,5,78,0,0,2006, + 2007,5,67,0,0,2007,2008,5,65,0,0,2008,2009,5,84,0,0,2009,2010,5,69,0,0, + 2010,2011,5,78,0,0,2011,2012,5,65,0,0,2012,2013,5,84,0,0,2013,2014,5,69, + 0,0,2014,364,1,0,0,0,2015,2016,5,67,0,0,2016,2017,5,72,0,0,2017,2018,5, + 65,0,0,2018,2019,5,78,0,0,2019,2020,5,71,0,0,2020,2021,5,69,0,0,2021,366, + 1,0,0,0,2022,2023,5,67,0,0,2023,2024,5,65,0,0,2024,2025,5,83,0,0,2025,2026, + 5,67,0,0,2026,2027,5,65,0,0,2027,2028,5,68,0,0,2028,2029,5,69,0,0,2029, + 368,1,0,0,0,2030,2031,5,67,0,0,2031,2032,5,79,0,0,2032,2033,5,78,0,0,2033, + 2034,5,83,0,0,2034,2035,5,84,0,0,2035,2036,5,82,0,0,2036,2037,5,65,0,0, + 2037,2038,5,73,0,0,2038,2039,5,78,0,0,2039,2040,5,84,0,0,2040,370,1,0,0, + 0,2041,2042,5,82,0,0,2042,2043,5,69,0,0,2043,2044,5,83,0,0,2044,2045,5, + 84,0,0,2045,2046,5,82,0,0,2046,2047,5,73,0,0,2047,2048,5,67,0,0,2048,2049, + 5,84,0,0,2049,372,1,0,0,0,2050,2051,5,67,0,0,2051,2052,5,76,0,0,2052,2053, + 5,85,0,0,2053,2054,5,83,0,0,2054,2055,5,84,0,0,2055,2056,5,69,0,0,2056, + 2057,5,82,0,0,2057,2058,5,69,0,0,2058,2059,5,68,0,0,2059,374,1,0,0,0,2060, + 2061,5,83,0,0,2061,2062,5,79,0,0,2062,2063,5,82,0,0,2063,2064,5,84,0,0, + 2064,2065,5,69,0,0,2065,2066,5,68,0,0,2066,376,1,0,0,0,2067,2068,5,80,0, + 0,2068,2069,5,85,0,0,2069,2070,5,82,0,0,2070,2071,5,71,0,0,2071,2072,5, + 69,0,0,2072,378,1,0,0,0,2073,2074,5,73,0,0,2074,2075,5,78,0,0,2075,2076, + 5,80,0,0,2076,2077,5,85,0,0,2077,2078,5,84,0,0,2078,2079,5,70,0,0,2079, + 2080,5,79,0,0,2080,2081,5,82,0,0,2081,2082,5,77,0,0,2082,2083,5,65,0,0, + 2083,2084,5,84,0,0,2084,380,1,0,0,0,2085,2086,5,79,0,0,2086,2087,5,85,0, + 0,2087,2088,5,84,0,0,2088,2089,5,80,0,0,2089,2090,5,85,0,0,2090,2091,5, + 84,0,0,2091,2092,5,70,0,0,2092,2093,5,79,0,0,2093,2094,5,82,0,0,2094,2095, + 5,77,0,0,2095,2096,5,65,0,0,2096,2097,5,84,0,0,2097,382,1,0,0,0,2098,2099, + 5,68,0,0,2099,2100,5,65,0,0,2100,2101,5,84,0,0,2101,2102,5,65,0,0,2102, + 2103,5,66,0,0,2103,2104,5,65,0,0,2104,2105,5,83,0,0,2105,2106,5,69,0,0, + 2106,384,1,0,0,0,2107,2108,5,68,0,0,2108,2109,5,65,0,0,2109,2110,5,84,0, + 0,2110,2111,5,65,0,0,2111,2112,5,66,0,0,2112,2113,5,65,0,0,2113,2114,5, + 83,0,0,2114,2115,5,69,0,0,2115,2116,5,83,0,0,2116,386,1,0,0,0,2117,2118, + 5,68,0,0,2118,2119,5,70,0,0,2119,2120,5,83,0,0,2120,388,1,0,0,0,2121,2122, + 5,84,0,0,2122,2123,5,82,0,0,2123,2124,5,85,0,0,2124,2125,5,78,0,0,2125, + 2126,5,67,0,0,2126,2127,5,65,0,0,2127,2128,5,84,0,0,2128,2129,5,69,0,0, + 2129,390,1,0,0,0,2130,2131,5,65,0,0,2131,2132,5,78,0,0,2132,2133,5,65,0, + 0,2133,2134,5,76,0,0,2134,2135,5,89,0,0,2135,2136,5,90,0,0,2136,2137,5, + 69,0,0,2137,392,1,0,0,0,2138,2139,5,67,0,0,2139,2140,5,79,0,0,2140,2141, + 5,77,0,0,2141,2142,5,80,0,0,2142,2143,5,85,0,0,2143,2144,5,84,0,0,2144, + 2145,5,69,0,0,2145,394,1,0,0,0,2146,2147,5,76,0,0,2147,2148,5,73,0,0,2148, + 2149,5,83,0,0,2149,2150,5,84,0,0,2150,396,1,0,0,0,2151,2152,5,83,0,0,2152, + 2153,5,84,0,0,2153,2154,5,65,0,0,2154,2155,5,84,0,0,2155,2156,5,73,0,0, + 2156,2157,5,83,0,0,2157,2158,5,84,0,0,2158,2159,5,73,0,0,2159,2160,5,67, + 0,0,2160,2161,5,83,0,0,2161,398,1,0,0,0,2162,2163,5,80,0,0,2163,2164,5, + 65,0,0,2164,2165,5,82,0,0,2165,2166,5,84,0,0,2166,2167,5,73,0,0,2167,2168, + 5,84,0,0,2168,2169,5,73,0,0,2169,2170,5,79,0,0,2170,2171,5,78,0,0,2171, + 2172,5,69,0,0,2172,2173,5,68,0,0,2173,400,1,0,0,0,2174,2175,5,69,0,0,2175, + 2176,5,88,0,0,2176,2177,5,84,0,0,2177,2178,5,69,0,0,2178,2179,5,82,0,0, + 2179,2180,5,78,0,0,2180,2181,5,65,0,0,2181,2182,5,76,0,0,2182,402,1,0,0, + 0,2183,2184,5,68,0,0,2184,2185,5,69,0,0,2185,2186,5,70,0,0,2186,2187,5, + 73,0,0,2187,2188,5,78,0,0,2188,2189,5,69,0,0,2189,2190,5,68,0,0,2190,404, + 1,0,0,0,2191,2192,5,82,0,0,2192,2193,5,69,0,0,2193,2194,5,86,0,0,2194,2195, + 5,79,0,0,2195,2196,5,75,0,0,2196,2197,5,69,0,0,2197,406,1,0,0,0,2198,2199, + 5,71,0,0,2199,2200,5,82,0,0,2200,2201,5,65,0,0,2201,2202,5,78,0,0,2202, + 2203,5,84,0,0,2203,408,1,0,0,0,2204,2205,5,76,0,0,2205,2206,5,79,0,0,2206, + 2207,5,67,0,0,2207,2208,5,75,0,0,2208,410,1,0,0,0,2209,2210,5,85,0,0,2210, + 2211,5,78,0,0,2211,2212,5,76,0,0,2212,2213,5,79,0,0,2213,2214,5,67,0,0, + 2214,2215,5,75,0,0,2215,412,1,0,0,0,2216,2217,5,77,0,0,2217,2218,5,83,0, + 0,2218,2219,5,67,0,0,2219,2220,5,75,0,0,2220,414,1,0,0,0,2221,2222,5,82, + 0,0,2222,2223,5,69,0,0,2223,2224,5,80,0,0,2224,2225,5,65,0,0,2225,2226, + 5,73,0,0,2226,2227,5,82,0,0,2227,416,1,0,0,0,2228,2229,5,82,0,0,2229,2230, + 5,69,0,0,2230,2231,5,67,0,0,2231,2232,5,79,0,0,2232,2233,5,86,0,0,2233, + 2234,5,69,0,0,2234,2235,5,82,0,0,2235,418,1,0,0,0,2236,2237,5,69,0,0,2237, + 2238,5,88,0,0,2238,2239,5,80,0,0,2239,2240,5,79,0,0,2240,2241,5,82,0,0, + 2241,2242,5,84,0,0,2242,420,1,0,0,0,2243,2244,5,73,0,0,2244,2245,5,77,0, + 0,2245,2246,5,80,0,0,2246,2247,5,79,0,0,2247,2248,5,82,0,0,2248,2249,5, + 84,0,0,2249,422,1,0,0,0,2250,2251,5,76,0,0,2251,2252,5,79,0,0,2252,2253, + 5,65,0,0,2253,2254,5,68,0,0,2254,424,1,0,0,0,2255,2256,5,85,0,0,2256,2257, + 5,78,0,0,2257,2258,5,76,0,0,2258,2259,5,79,0,0,2259,2260,5,65,0,0,2260, + 2261,5,68,0,0,2261,426,1,0,0,0,2262,2263,5,82,0,0,2263,2264,5,79,0,0,2264, + 2265,5,76,0,0,2265,2266,5,69,0,0,2266,428,1,0,0,0,2267,2268,5,82,0,0,2268, + 2269,5,79,0,0,2269,2270,5,76,0,0,2270,2271,5,69,0,0,2271,2272,5,83,0,0, + 2272,430,1,0,0,0,2273,2274,5,67,0,0,2274,2275,5,79,0,0,2275,2276,5,77,0, + 0,2276,2277,5,80,0,0,2277,2278,5,65,0,0,2278,2279,5,67,0,0,2279,2280,5, + 84,0,0,2280,2281,5,73,0,0,2281,2282,5,79,0,0,2282,2283,5,78,0,0,2283,2284, + 5,83,0,0,2284,432,1,0,0,0,2285,2286,5,80,0,0,2286,2287,5,82,0,0,2287,2288, + 5,73,0,0,2288,2289,5,78,0,0,2289,2290,5,67,0,0,2290,2291,5,73,0,0,2291, + 2292,5,80,0,0,2292,2293,5,65,0,0,2293,2294,5,76,0,0,2294,2295,5,83,0,0, + 2295,434,1,0,0,0,2296,2297,5,84,0,0,2297,2298,5,82,0,0,2298,2299,5,65,0, + 0,2299,2300,5,78,0,0,2300,2301,5,83,0,0,2301,2302,5,65,0,0,2302,2303,5, + 67,0,0,2303,2304,5,84,0,0,2304,2305,5,73,0,0,2305,2306,5,79,0,0,2306,2307, + 5,78,0,0,2307,2308,5,83,0,0,2308,436,1,0,0,0,2309,2310,5,73,0,0,2310,2311, + 5,78,0,0,2311,2312,5,68,0,0,2312,2313,5,69,0,0,2313,2314,5,88,0,0,2314, + 438,1,0,0,0,2315,2316,5,73,0,0,2316,2317,5,78,0,0,2317,2318,5,68,0,0,2318, + 2319,5,69,0,0,2319,2320,5,88,0,0,2320,2321,5,69,0,0,2321,2322,5,83,0,0, + 2322,440,1,0,0,0,2323,2324,5,76,0,0,2324,2325,5,79,0,0,2325,2326,5,67,0, + 0,2326,2327,5,75,0,0,2327,2328,5,83,0,0,2328,442,1,0,0,0,2329,2330,5,79, + 0,0,2330,2331,5,80,0,0,2331,2332,5,84,0,0,2332,2333,5,73,0,0,2333,2334, + 5,79,0,0,2334,2335,5,78,0,0,2335,444,1,0,0,0,2336,2337,5,65,0,0,2337,2338, + 5,78,0,0,2338,2339,5,84,0,0,2339,2340,5,73,0,0,2340,446,1,0,0,0,2341,2342, + 5,76,0,0,2342,2343,5,79,0,0,2343,2344,5,67,0,0,2344,2345,5,65,0,0,2345, + 2346,5,76,0,0,2346,448,1,0,0,0,2347,2348,5,73,0,0,2348,2349,5,78,0,0,2349, + 2350,5,80,0,0,2350,2351,5,65,0,0,2351,2352,5,84,0,0,2352,2353,5,72,0,0, + 2353,450,1,0,0,0,2354,2355,5,87,0,0,2355,2356,5,65,0,0,2356,2357,5,84,0, + 0,2357,2358,5,69,0,0,2358,2359,5,82,0,0,2359,2360,5,77,0,0,2360,2361,5, + 65,0,0,2361,2362,5,82,0,0,2362,2363,5,75,0,0,2363,452,1,0,0,0,2364,2365, + 5,85,0,0,2365,2366,5,78,0,0,2366,2367,5,78,0,0,2367,2368,5,69,0,0,2368, + 2369,5,83,0,0,2369,2370,5,84,0,0,2370,454,1,0,0,0,2371,2372,5,77,0,0,2372, + 2373,5,65,0,0,2373,2374,5,84,0,0,2374,2375,5,67,0,0,2375,2376,5,72,0,0, + 2376,456,1,0,0,0,2377,2378,5,78,0,0,2378,2379,5,69,0,0,2379,2380,5,88,0, + 0,2380,2381,5,84,0,0,2381,458,1,0,0,0,2382,2383,5,87,0,0,2383,2384,5,73, + 0,0,2384,2385,5,84,0,0,2385,2386,5,72,0,0,2386,2387,5,73,0,0,2387,2388, + 5,78,0,0,2388,460,1,0,0,0,2389,2390,5,87,0,0,2390,2391,5,83,0,0,2391,462, + 1,0,0,0,2392,2393,5,83,0,0,2393,2394,5,89,0,0,2394,2395,5,83,0,0,2395,2396, + 5,84,0,0,2396,2397,5,69,0,0,2397,2398,5,77,0,0,2398,464,1,0,0,0,2399,2400, + 5,73,0,0,2400,2401,5,78,0,0,2401,2402,5,67,0,0,2402,2403,5,76,0,0,2403, + 2404,5,85,0,0,2404,2405,5,68,0,0,2405,2406,5,73,0,0,2406,2407,5,78,0,0, + 2407,2408,5,71,0,0,2408,466,1,0,0,0,2409,2410,5,69,0,0,2410,2411,5,88,0, + 0,2411,2412,5,67,0,0,2412,2413,5,76,0,0,2413,2414,5,85,0,0,2414,2415,5, + 68,0,0,2415,2416,5,73,0,0,2416,2417,5,78,0,0,2417,2418,5,71,0,0,2418,468, + 1,0,0,0,2419,2420,5,79,0,0,2420,2421,5,86,0,0,2421,2422,5,69,0,0,2422,2423, + 5,82,0,0,2423,2424,5,87,0,0,2424,2425,5,82,0,0,2425,2426,5,73,0,0,2426, + 2427,5,84,0,0,2427,2428,5,73,0,0,2428,2429,5,78,0,0,2429,2430,5,71,0,0, + 2430,470,1,0,0,0,2431,2432,5,67,0,0,2432,2433,5,79,0,0,2433,2434,5,78,0, + 0,2434,2435,5,83,0,0,2435,2436,5,84,0,0,2436,2437,5,82,0,0,2437,2438,5, + 65,0,0,2438,2439,5,73,0,0,2439,2440,5,78,0,0,2440,2441,5,84,0,0,2441,2442, + 5,83,0,0,2442,472,1,0,0,0,2443,2444,5,71,0,0,2444,2445,5,69,0,0,2445,2446, + 5,78,0,0,2446,2447,5,69,0,0,2447,2448,5,82,0,0,2448,2449,5,65,0,0,2449, + 2450,5,84,0,0,2450,2451,5,69,0,0,2451,2452,5,68,0,0,2452,474,1,0,0,0,2453, + 2454,5,87,0,0,2454,2455,5,65,0,0,2455,2456,5,84,0,0,2456,2457,5,69,0,0, + 2457,2458,5,82,0,0,2458,2459,5,77,0,0,2459,2460,5,65,0,0,2460,2461,5,82, + 0,0,2461,2462,5,75,0,0,2462,2463,5,83,0,0,2463,476,1,0,0,0,2464,2465,5, + 67,0,0,2465,2466,5,65,0,0,2466,2467,5,84,0,0,2467,2468,5,65,0,0,2468,2469, + 5,76,0,0,2469,2470,5,79,0,0,2470,2471,5,71,0,0,2471,478,1,0,0,0,2472,2473, + 5,76,0,0,2473,2474,5,65,0,0,2474,2475,5,78,0,0,2475,2476,5,71,0,0,2476, + 2477,5,85,0,0,2477,2478,5,65,0,0,2478,2479,5,71,0,0,2479,2480,5,69,0,0, + 2480,480,1,0,0,0,2481,2482,5,74,0,0,2482,2483,5,65,0,0,2483,2484,5,86,0, + 0,2484,2485,5,65,0,0,2485,482,1,0,0,0,2486,2487,5,83,0,0,2487,2488,5,67, + 0,0,2488,2489,5,65,0,0,2489,2490,5,76,0,0,2490,2491,5,65,0,0,2491,484,1, + 0,0,0,2492,2493,5,80,0,0,2493,2494,5,89,0,0,2494,2495,5,84,0,0,2495,2496, + 5,72,0,0,2496,2497,5,79,0,0,2497,2498,5,78,0,0,2498,486,1,0,0,0,2499,2500, + 5,74,0,0,2500,2501,5,65,0,0,2501,2502,5,82,0,0,2502,488,1,0,0,0,2503,2504, + 5,70,0,0,2504,2505,5,73,0,0,2505,2506,5,76,0,0,2506,2507,5,69,0,0,2507, + 490,1,0,0,0,2508,2509,5,80,0,0,2509,2510,5,89,0,0,2510,2511,5,84,0,0,2511, + 2512,5,72,0,0,2512,2513,5,79,0,0,2513,2514,5,78,0,0,2514,2515,5,95,0,0, + 2515,2516,5,70,0,0,2516,2517,5,73,0,0,2517,2518,5,76,0,0,2518,2519,5,69, + 0,0,2519,2520,5,83,0,0,2520,492,1,0,0,0,2521,2522,5,80,0,0,2522,2523,5, + 89,0,0,2523,2524,5,84,0,0,2524,2525,5,72,0,0,2525,2526,5,79,0,0,2526,2527, + 5,78,0,0,2527,2528,5,95,0,0,2528,2529,5,82,0,0,2529,2530,5,69,0,0,2530, + 2531,5,81,0,0,2531,2532,5,85,0,0,2532,2533,5,73,0,0,2533,2534,5,82,0,0, + 2534,2535,5,69,0,0,2535,2536,5,77,0,0,2536,2537,5,69,0,0,2537,2538,5,78, + 0,0,2538,2539,5,84,0,0,2539,2540,5,83,0,0,2540,494,1,0,0,0,2541,2542,5, + 80,0,0,2542,2543,5,89,0,0,2543,2544,5,84,0,0,2544,2545,5,72,0,0,2545,2546, + 5,79,0,0,2546,2547,5,78,0,0,2547,2548,5,95,0,0,2548,2549,5,68,0,0,2549, + 2550,5,69,0,0,2550,2551,5,80,0,0,2551,2552,5,69,0,0,2552,2553,5,78,0,0, + 2553,2554,5,68,0,0,2554,2555,5,69,0,0,2555,2556,5,78,0,0,2556,2557,5,67, + 0,0,2557,2558,5,73,0,0,2558,2559,5,69,0,0,2559,2560,5,83,0,0,2560,496,1, + 0,0,0,2561,2562,5,80,0,0,2562,2563,5,89,0,0,2563,2564,5,84,0,0,2564,2565, + 5,72,0,0,2565,2566,5,79,0,0,2566,2567,5,78,0,0,2567,2568,5,95,0,0,2568, + 2569,5,74,0,0,2569,2570,5,65,0,0,2570,2571,5,82,0,0,2571,498,1,0,0,0,2572, + 2573,5,80,0,0,2573,2574,5,89,0,0,2574,2575,5,84,0,0,2575,2576,5,72,0,0, + 2576,2577,5,79,0,0,2577,2578,5,78,0,0,2578,2579,5,95,0,0,2579,2580,5,65, + 0,0,2580,2581,5,82,0,0,2581,2582,5,67,0,0,2582,2583,5,72,0,0,2583,2584, + 5,73,0,0,2584,2585,5,86,0,0,2585,2586,5,69,0,0,2586,2587,5,83,0,0,2587, + 500,1,0,0,0,2588,2589,5,80,0,0,2589,2590,5,89,0,0,2590,2591,5,84,0,0,2591, + 2592,5,72,0,0,2592,2593,5,79,0,0,2593,2594,5,78,0,0,2594,2595,5,95,0,0, + 2595,2596,5,80,0,0,2596,2597,5,65,0,0,2597,2598,5,82,0,0,2598,2599,5,65, + 0,0,2599,2600,5,77,0,0,2600,2601,5,69,0,0,2601,2602,5,84,0,0,2602,2603, + 5,69,0,0,2603,2604,5,82,0,0,2604,502,1,0,0,0,2605,2606,5,69,0,0,2606,2607, + 5,78,0,0,2607,2608,5,71,0,0,2608,2609,5,73,0,0,2609,2610,5,78,0,0,2610, + 2611,5,69,0,0,2611,504,1,0,0,0,2612,2613,5,67,0,0,2613,2614,5,65,0,0,2614, + 2615,5,84,0,0,2615,2616,5,65,0,0,2616,2617,5,76,0,0,2617,2618,5,79,0,0, + 2618,2619,5,71,0,0,2619,2620,5,83,0,0,2620,506,1,0,0,0,2621,2622,5,86,0, + 0,2622,2623,5,73,0,0,2623,2624,5,69,0,0,2624,2625,5,87,0,0,2625,2626,5, + 83,0,0,2626,508,1,0,0,0,2627,2628,5,74,0,0,2628,2629,5,65,0,0,2629,2630, + 5,82,0,0,2630,2631,5,83,0,0,2631,510,1,0,0,0,2632,2633,5,80,0,0,2633,2634, + 5,82,0,0,2634,2635,5,73,0,0,2635,2636,5,77,0,0,2636,2637,5,65,0,0,2637, + 2638,5,82,0,0,2638,2639,5,89,0,0,2639,512,1,0,0,0,2640,2641,5,85,0,0,2641, + 2642,5,78,0,0,2642,2643,5,73,0,0,2643,2644,5,81,0,0,2644,2645,5,85,0,0, + 2645,2646,5,69,0,0,2646,514,1,0,0,0,2647,2648,5,75,0,0,2648,2649,5,69,0, + 0,2649,2650,5,89,0,0,2650,516,1,0,0,0,2651,2652,5,80,0,0,2652,2653,5,69, + 0,0,2653,2654,5,82,0,0,2654,2655,5,73,0,0,2655,2656,5,79,0,0,2656,2657, + 5,68,0,0,2657,518,1,0,0,0,2658,2659,5,83,0,0,2659,2660,5,89,0,0,2660,2661, + 5,83,0,0,2661,2662,5,84,0,0,2662,2663,5,69,0,0,2663,2664,5,77,0,0,2664, + 2665,5,95,0,0,2665,2666,5,84,0,0,2666,2667,5,73,0,0,2667,2668,5,77,0,0, + 2668,2669,5,69,0,0,2669,520,1,0,0,0,2670,2671,5,69,0,0,2671,2672,5,78,0, + 0,2672,2673,5,70,0,0,2673,2674,5,79,0,0,2674,2675,5,82,0,0,2675,2676,5, + 67,0,0,2676,2677,5,69,0,0,2677,2678,5,68,0,0,2678,522,1,0,0,0,2679,2680, + 5,77,0,0,2680,2681,5,69,0,0,2681,2682,5,84,0,0,2682,2683,5,65,0,0,2683, + 2684,5,68,0,0,2684,2685,5,65,0,0,2685,2686,5,84,0,0,2686,2687,5,65,0,0, + 2687,524,1,0,0,0,2688,2689,5,86,0,0,2689,2690,5,73,0,0,2690,2691,5,82,0, + 0,2691,2692,5,84,0,0,2692,2693,5,85,0,0,2693,2694,5,65,0,0,2694,2695,5, + 76,0,0,2695,526,1,0,0,0,2696,2697,5,90,0,0,2697,2698,5,79,0,0,2698,2699, + 5,78,0,0,2699,2700,5,69,0,0,2700,528,1,0,0,0,2701,2702,5,83,0,0,2702,2703, + 5,84,0,0,2703,2704,5,82,0,0,2704,2705,5,73,0,0,2705,2706,5,78,0,0,2706, + 2707,5,71,0,0,2707,530,1,0,0,0,2708,2709,5,65,0,0,2709,2710,5,82,0,0,2710, + 2711,5,82,0,0,2711,2712,5,65,0,0,2712,2713,5,89,0,0,2713,532,1,0,0,0,2714, + 2715,5,77,0,0,2715,2716,5,65,0,0,2716,2717,5,80,0,0,2717,534,1,0,0,0,2718, + 2719,5,67,0,0,2719,2720,5,72,0,0,2720,2721,5,65,0,0,2721,2722,5,82,0,0, + 2722,536,1,0,0,0,2723,2724,5,86,0,0,2724,2725,5,65,0,0,2725,2726,5,82,0, + 0,2726,2727,5,67,0,0,2727,2728,5,72,0,0,2728,2729,5,65,0,0,2729,2730,5, + 82,0,0,2730,538,1,0,0,0,2731,2732,5,66,0,0,2732,2733,5,73,0,0,2733,2734, + 5,78,0,0,2734,2735,5,65,0,0,2735,2736,5,82,0,0,2736,2737,5,89,0,0,2737, + 540,1,0,0,0,2738,2739,5,86,0,0,2739,2740,5,65,0,0,2740,2741,5,82,0,0,2741, + 2742,5,66,0,0,2742,2743,5,73,0,0,2743,2744,5,78,0,0,2744,2745,5,65,0,0, + 2745,2746,5,82,0,0,2746,2747,5,89,0,0,2747,542,1,0,0,0,2748,2749,5,66,0, + 0,2749,2750,5,89,0,0,2750,2751,5,84,0,0,2751,2752,5,69,0,0,2752,2753,5, + 83,0,0,2753,544,1,0,0,0,2754,2755,5,68,0,0,2755,2756,5,69,0,0,2756,2757, + 5,67,0,0,2757,2758,5,73,0,0,2758,2759,5,77,0,0,2759,2760,5,65,0,0,2760, + 2761,5,76,0,0,2761,546,1,0,0,0,2762,2763,5,68,0,0,2763,2764,5,69,0,0,2764, + 2765,5,67,0,0,2765,548,1,0,0,0,2766,2767,5,78,0,0,2767,2768,5,85,0,0,2768, + 2769,5,77,0,0,2769,2770,5,69,0,0,2770,2771,5,82,0,0,2771,2772,5,73,0,0, + 2772,2773,5,67,0,0,2773,550,1,0,0,0,2774,2775,5,84,0,0,2775,2776,5,73,0, + 0,2776,2777,5,78,0,0,2777,2778,5,89,0,0,2778,2779,5,73,0,0,2779,2780,5, + 78,0,0,2780,2781,5,84,0,0,2781,552,1,0,0,0,2782,2783,5,83,0,0,2783,2784, + 5,77,0,0,2784,2785,5,65,0,0,2785,2786,5,76,0,0,2786,2787,5,76,0,0,2787, + 2788,5,73,0,0,2788,2789,5,78,0,0,2789,2790,5,84,0,0,2790,554,1,0,0,0,2791, + 2792,5,73,0,0,2792,2793,5,78,0,0,2793,2794,5,84,0,0,2794,556,1,0,0,0,2795, + 2796,5,73,0,0,2796,2797,5,78,0,0,2797,2798,5,84,0,0,2798,2799,5,69,0,0, + 2799,2800,5,71,0,0,2800,2801,5,69,0,0,2801,2802,5,82,0,0,2802,558,1,0,0, + 0,2803,2804,5,66,0,0,2804,2805,5,73,0,0,2805,2806,5,71,0,0,2806,2807,5, + 73,0,0,2807,2808,5,78,0,0,2808,2809,5,84,0,0,2809,560,1,0,0,0,2810,2811, + 5,70,0,0,2811,2812,5,76,0,0,2812,2813,5,79,0,0,2813,2814,5,65,0,0,2814, + 2815,5,84,0,0,2815,562,1,0,0,0,2816,2817,5,68,0,0,2817,2818,5,79,0,0,2818, + 2819,5,85,0,0,2819,2820,5,66,0,0,2820,2821,5,76,0,0,2821,2822,5,69,0,0, + 2822,564,1,0,0,0,2823,2824,5,68,0,0,2824,2825,5,65,0,0,2825,2826,5,84,0, + 0,2826,2827,5,69,0,0,2827,566,1,0,0,0,2828,2829,5,84,0,0,2829,2830,5,73, + 0,0,2830,2831,5,77,0,0,2831,2832,5,69,0,0,2832,568,1,0,0,0,2833,2834,5, + 84,0,0,2834,2835,5,73,0,0,2835,2836,5,77,0,0,2836,2837,5,69,0,0,2837,2838, + 5,83,0,0,2838,2839,5,84,0,0,2839,2840,5,65,0,0,2840,2841,5,77,0,0,2841, + 2842,5,80,0,0,2842,570,1,0,0,0,2843,2844,5,84,0,0,2844,2845,5,73,0,0,2845, + 2846,5,77,0,0,2846,2847,5,69,0,0,2847,2848,5,83,0,0,2848,2849,5,84,0,0, + 2849,2850,5,65,0,0,2850,2851,5,77,0,0,2851,2852,5,80,0,0,2852,2853,5,95, + 0,0,2853,2854,5,76,0,0,2854,2855,5,84,0,0,2855,2856,5,90,0,0,2856,572,1, + 0,0,0,2857,2858,5,77,0,0,2858,2859,5,85,0,0,2859,2860,5,76,0,0,2860,2861, + 5,84,0,0,2861,2862,5,73,0,0,2862,2863,5,83,0,0,2863,2864,5,69,0,0,2864, + 2865,5,84,0,0,2865,574,1,0,0,0,2866,2867,5,66,0,0,2867,2868,5,79,0,0,2868, + 2869,5,79,0,0,2869,2870,5,76,0,0,2870,2871,5,69,0,0,2871,2872,5,65,0,0, + 2872,2873,5,78,0,0,2873,576,1,0,0,0,2874,2875,5,82,0,0,2875,2876,5,65,0, + 0,2876,2877,5,87,0,0,2877,578,1,0,0,0,2878,2879,5,82,0,0,2879,2880,5,79, + 0,0,2880,2881,5,87,0,0,2881,580,1,0,0,0,2882,2883,5,78,0,0,2883,2884,5, + 85,0,0,2884,2885,5,76,0,0,2885,2886,5,76,0,0,2886,582,1,0,0,0,2887,2888, + 5,68,0,0,2888,2889,5,65,0,0,2889,2890,5,84,0,0,2890,2891,5,69,0,0,2891, + 2892,5,84,0,0,2892,2893,5,73,0,0,2893,2894,5,77,0,0,2894,2895,5,69,0,0, + 2895,584,1,0,0,0,2896,2897,5,61,0,0,2897,586,1,0,0,0,2898,2899,5,62,0,0, + 2899,588,1,0,0,0,2900,2901,5,60,0,0,2901,590,1,0,0,0,2902,2903,5,33,0,0, + 2903,592,1,0,0,0,2904,2905,5,126,0,0,2905,594,1,0,0,0,2906,2907,5,124,0, + 0,2907,596,1,0,0,0,2908,2909,5,38,0,0,2909,598,1,0,0,0,2910,2911,5,94,0, + 0,2911,600,1,0,0,0,2912,2913,5,46,0,0,2913,602,1,0,0,0,2914,2915,5,91,0, + 0,2915,604,1,0,0,0,2916,2917,5,93,0,0,2917,606,1,0,0,0,2918,2919,5,40,0, + 0,2919,608,1,0,0,0,2920,2921,5,41,0,0,2921,610,1,0,0,0,2922,2923,5,44,0, + 0,2923,612,1,0,0,0,2924,2925,5,59,0,0,2925,614,1,0,0,0,2926,2927,5,64,0, + 0,2927,616,1,0,0,0,2928,2929,5,39,0,0,2929,618,1,0,0,0,2930,2931,5,34,0, + 0,2931,620,1,0,0,0,2932,2933,5,96,0,0,2933,622,1,0,0,0,2934,2935,5,58,0, + 0,2935,624,1,0,0,0,2936,2937,5,42,0,0,2937,626,1,0,0,0,2938,2939,5,95,0, + 0,2939,628,1,0,0,0,2940,2941,5,45,0,0,2941,630,1,0,0,0,2942,2943,5,43,0, + 0,2943,632,1,0,0,0,2944,2945,5,37,0,0,2945,634,1,0,0,0,2946,2947,5,124, + 0,0,2947,2948,5,124,0,0,2948,636,1,0,0,0,2949,2950,5,45,0,0,2950,2951,5, + 45,0,0,2951,638,1,0,0,0,2952,2953,5,47,0,0,2953,640,1,0,0,0,2954,2955,5, + 46,0,0,2955,2956,3,665,332,0,2956,642,1,0,0,0,2957,2958,7,2,0,0,2958,2959, + 3,655,327,0,2959,644,1,0,0,0,2960,2964,3,673,336,0,2961,2964,3,675,337, + 0,2962,2964,3,679,339,0,2963,2960,1,0,0,0,2963,2961,1,0,0,0,2963,2962,1, + 0,0,0,2964,646,1,0,0,0,2965,2967,3,669,334,0,2966,2965,1,0,0,0,2967,2968, + 1,0,0,0,2968,2966,1,0,0,0,2968,2969,1,0,0,0,2969,648,1,0,0,0,2970,2972, + 3,669,334,0,2971,2970,1,0,0,0,2972,2973,1,0,0,0,2973,2971,1,0,0,0,2973, + 2974,1,0,0,0,2974,2976,1,0,0,0,2975,2971,1,0,0,0,2975,2976,1,0,0,0,2976, + 2977,1,0,0,0,2977,2979,5,46,0,0,2978,2980,3,669,334,0,2979,2978,1,0,0,0, + 2980,2981,1,0,0,0,2981,2979,1,0,0,0,2981,2982,1,0,0,0,2982,3014,1,0,0,0, + 2983,2985,3,669,334,0,2984,2983,1,0,0,0,2985,2986,1,0,0,0,2986,2984,1,0, + 0,0,2986,2987,1,0,0,0,2987,2988,1,0,0,0,2988,2989,5,46,0,0,2989,2990,3, + 663,331,0,2990,3014,1,0,0,0,2991,2993,3,669,334,0,2992,2991,1,0,0,0,2993, + 2994,1,0,0,0,2994,2992,1,0,0,0,2994,2995,1,0,0,0,2995,2997,1,0,0,0,2996, + 2992,1,0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,3000,5,46,0,0,2999, + 3001,3,669,334,0,3000,2999,1,0,0,0,3001,3002,1,0,0,0,3002,3000,1,0,0,0, + 3002,3003,1,0,0,0,3003,3004,1,0,0,0,3004,3005,3,663,331,0,3005,3014,1,0, + 0,0,3006,3008,3,669,334,0,3007,3006,1,0,0,0,3008,3009,1,0,0,0,3009,3007, + 1,0,0,0,3009,3010,1,0,0,0,3010,3011,1,0,0,0,3011,3012,3,663,331,0,3012, + 3014,1,0,0,0,3013,2975,1,0,0,0,3013,2984,1,0,0,0,3013,2996,1,0,0,0,3013, + 3007,1,0,0,0,3014,650,1,0,0,0,3015,3016,3,677,338,0,3016,652,1,0,0,0,3017, + 3018,3,665,332,0,3018,654,1,0,0,0,3019,3020,3,667,333,0,3020,656,1,0,0, + 0,3021,3022,3,659,329,0,3022,658,1,0,0,0,3023,3027,7,3,0,0,3024,3026,8, + 4,0,0,3025,3024,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028,1, + 0,0,0,3028,3031,1,0,0,0,3029,3027,1,0,0,0,3030,3023,1,0,0,0,3031,3032,1, + 0,0,0,3032,3030,1,0,0,0,3032,3033,1,0,0,0,3033,660,1,0,0,0,3034,3042,5, + 96,0,0,3035,3036,5,92,0,0,3036,3041,9,0,0,0,3037,3038,5,96,0,0,3038,3041, + 5,96,0,0,3039,3041,8,5,0,0,3040,3035,1,0,0,0,3040,3037,1,0,0,0,3040,3039, + 1,0,0,0,3041,3044,1,0,0,0,3042,3040,1,0,0,0,3042,3043,1,0,0,0,3043,3045, + 1,0,0,0,3044,3042,1,0,0,0,3045,3046,5,96,0,0,3046,662,1,0,0,0,3047,3049, + 5,69,0,0,3048,3050,7,6,0,0,3049,3048,1,0,0,0,3049,3050,1,0,0,0,3050,3052, + 1,0,0,0,3051,3053,3,669,334,0,3052,3051,1,0,0,0,3053,3054,1,0,0,0,3054, + 3052,1,0,0,0,3054,3055,1,0,0,0,3055,664,1,0,0,0,3056,3058,7,7,0,0,3057, + 3056,1,0,0,0,3058,3061,1,0,0,0,3059,3060,1,0,0,0,3059,3057,1,0,0,0,3060, + 3063,1,0,0,0,3061,3059,1,0,0,0,3062,3064,7,8,0,0,3063,3062,1,0,0,0,3064, + 3065,1,0,0,0,3065,3066,1,0,0,0,3065,3063,1,0,0,0,3066,3070,1,0,0,0,3067, + 3069,7,7,0,0,3068,3067,1,0,0,0,3069,3072,1,0,0,0,3070,3068,1,0,0,0,3070, + 3071,1,0,0,0,3071,666,1,0,0,0,3072,3070,1,0,0,0,3073,3075,7,9,0,0,3074, + 3073,1,0,0,0,3075,3078,1,0,0,0,3076,3077,1,0,0,0,3076,3074,1,0,0,0,3077, + 3080,1,0,0,0,3078,3076,1,0,0,0,3079,3081,7,10,0,0,3080,3079,1,0,0,0,3081, + 3082,1,0,0,0,3082,3083,1,0,0,0,3082,3080,1,0,0,0,3083,3087,1,0,0,0,3084, + 3086,7,9,0,0,3085,3084,1,0,0,0,3086,3089,1,0,0,0,3087,3085,1,0,0,0,3087, + 3088,1,0,0,0,3088,668,1,0,0,0,3089,3087,1,0,0,0,3090,3091,7,11,0,0,3091, + 670,1,0,0,0,3092,3093,7,12,0,0,3093,672,1,0,0,0,3094,3102,5,34,0,0,3095, + 3096,5,92,0,0,3096,3101,9,0,0,0,3097,3098,5,34,0,0,3098,3101,5,34,0,0,3099, + 3101,8,13,0,0,3100,3095,1,0,0,0,3100,3097,1,0,0,0,3100,3099,1,0,0,0,3101, + 3104,1,0,0,0,3102,3100,1,0,0,0,3102,3103,1,0,0,0,3103,3105,1,0,0,0,3104, + 3102,1,0,0,0,3105,3106,5,34,0,0,3106,674,1,0,0,0,3107,3115,5,39,0,0,3108, + 3109,5,92,0,0,3109,3114,9,0,0,0,3110,3111,5,39,0,0,3111,3114,5,39,0,0,3112, + 3114,8,14,0,0,3113,3108,1,0,0,0,3113,3110,1,0,0,0,3113,3112,1,0,0,0,3114, + 3117,1,0,0,0,3115,3113,1,0,0,0,3115,3116,1,0,0,0,3116,3118,1,0,0,0,3117, + 3115,1,0,0,0,3118,3119,5,39,0,0,3119,676,1,0,0,0,3120,3121,5,66,0,0,3121, + 3123,5,39,0,0,3122,3124,7,15,0,0,3123,3122,1,0,0,0,3124,3125,1,0,0,0,3125, + 3123,1,0,0,0,3125,3126,1,0,0,0,3126,3127,1,0,0,0,3127,3128,5,39,0,0,3128, + 678,1,0,0,0,3129,3137,5,96,0,0,3130,3131,5,92,0,0,3131,3136,9,0,0,0,3132, + 3133,5,96,0,0,3133,3136,5,96,0,0,3134,3136,8,5,0,0,3135,3130,1,0,0,0,3135, + 3132,1,0,0,0,3135,3134,1,0,0,0,3136,3139,1,0,0,0,3137,3135,1,0,0,0,3137, + 3138,1,0,0,0,3138,3140,1,0,0,0,3139,3137,1,0,0,0,3140,3141,5,96,0,0,3141, + 680,1,0,0,0,40,0,684,694,705,710,714,718,724,728,730,2963,2968,2973,2975, + 2981,2986,2994,2996,3002,3009,3013,3027,3032,3040,3042,3049,3054,3059,3065, + 3070,3076,3082,3087,3100,3102,3113,3115,3125,3135,3137,1,0,1,0]; private static __ATN: ATN; public static get _ATN(): ATN { diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index 3334164..253bd0a 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -256,6 +256,7 @@ null 'VIEWS' 'JARS' 'PRIMARY' +'UNIQUE' 'KEY' 'PERIOD' 'SYSTEM_TIME' @@ -587,6 +588,7 @@ CATALOGS VIEWS JARS PRIMARY +UNIQUE KEY PERIOD SYSTEM_TIME @@ -721,6 +723,10 @@ jarFileName alterTable renameDefinition setKeyValueDefinition +addConstraint +dropConstraint +addUnique +notForced alertView alterDatabase alterFunction @@ -817,4 +823,4 @@ nonReserved atn: -[4, 1, 328, 1869, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 315, 8, 2, 1, 2, 5, 2, 318, 8, 2, 10, 2, 12, 2, 321, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 335, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 353, 8, 5, 1, 6, 1, 6, 3, 6, 357, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 366, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 371, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 376, 8, 9, 10, 9, 12, 9, 379, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 385, 8, 11, 1, 11, 1, 11, 3, 11, 389, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 396, 8, 12, 10, 12, 12, 12, 399, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 410, 8, 13, 1, 13, 3, 13, 413, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 420, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 428, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 433, 8, 13, 1, 13, 3, 13, 436, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 443, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 451, 8, 16, 1, 17, 1, 17, 3, 17, 455, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 467, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 475, 8, 19, 1, 19, 1, 19, 3, 19, 479, 8, 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, 500, 8, 19, 1, 20, 1, 20, 3, 20, 504, 8, 20, 1, 21, 1, 21, 3, 21, 508, 8, 21, 1, 21, 1, 21, 3, 21, 512, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 519, 8, 21, 10, 21, 12, 21, 522, 9, 21, 1, 21, 1, 21, 3, 21, 526, 8, 21, 1, 21, 1, 21, 3, 21, 530, 8, 21, 1, 21, 1, 21, 3, 21, 534, 8, 21, 1, 21, 1, 21, 3, 21, 538, 8, 21, 1, 21, 3, 21, 541, 8, 21, 1, 21, 1, 21, 3, 21, 545, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 550, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 556, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 561, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 566, 8, 24, 1, 24, 3, 24, 569, 8, 24, 1, 25, 1, 25, 3, 25, 573, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 579, 8, 26, 10, 26, 12, 26, 582, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 589, 8, 27, 1, 27, 1, 27, 3, 27, 593, 8, 27, 1, 27, 1, 27, 3, 27, 597, 8, 27, 1, 27, 1, 27, 3, 27, 601, 8, 27, 1, 27, 1, 27, 3, 27, 605, 8, 27, 1, 27, 1, 27, 3, 27, 609, 8, 27, 1, 27, 1, 27, 3, 27, 613, 8, 27, 1, 27, 1, 27, 3, 27, 617, 8, 27, 1, 27, 1, 27, 3, 27, 621, 8, 27, 3, 27, 623, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 633, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 641, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 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, 5, 33, 663, 8, 33, 10, 33, 12, 33, 666, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 672, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 687, 8, 36, 1, 36, 3, 36, 690, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 698, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 710, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 732, 8, 45, 10, 45, 12, 45, 735, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 745, 8, 46, 10, 46, 12, 46, 748, 9, 46, 1, 46, 1, 46, 3, 46, 752, 8, 46, 1, 47, 1, 47, 3, 47, 756, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 762, 8, 48, 10, 48, 12, 48, 765, 9, 48, 1, 48, 3, 48, 768, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 776, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 786, 8, 52, 1, 52, 1, 52, 3, 52, 790, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 796, 8, 53, 1, 53, 1, 53, 3, 53, 800, 8, 53, 1, 53, 1, 53, 3, 53, 804, 8, 53, 1, 53, 3, 53, 807, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 816, 8, 54, 1, 54, 1, 54, 3, 54, 820, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 827, 8, 54, 1, 54, 3, 54, 830, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 838, 8, 55, 10, 55, 12, 55, 841, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 850, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 865, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 876, 8, 62, 1, 62, 1, 62, 3, 62, 880, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 887, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 892, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 898, 8, 64, 1, 64, 1, 64, 3, 64, 902, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 3, 65, 909, 8, 65, 1, 65, 1, 65, 3, 65, 913, 8, 65, 1, 66, 1, 66, 3, 66, 917, 8, 66, 1, 66, 1, 66, 3, 66, 921, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 929, 8, 67, 1, 67, 1, 67, 3, 67, 933, 8, 67, 1, 67, 1, 67, 1, 68, 3, 68, 938, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 943, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 949, 8, 69, 1, 69, 3, 69, 952, 8, 69, 1, 69, 1, 69, 3, 69, 956, 8, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 965, 8, 71, 10, 71, 12, 71, 968, 9, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 974, 8, 72, 10, 72, 12, 72, 977, 9, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 4, 73, 987, 8, 73, 11, 73, 12, 73, 988, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 999, 8, 74, 10, 74, 12, 74, 1002, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1012, 8, 74, 1, 74, 3, 74, 1015, 8, 74, 1, 74, 1, 74, 3, 74, 1019, 8, 74, 1, 74, 3, 74, 1022, 8, 74, 3, 74, 1024, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1029, 8, 74, 1, 74, 1, 74, 3, 74, 1033, 8, 74, 1, 74, 3, 74, 1036, 8, 74, 5, 74, 1038, 8, 74, 10, 74, 12, 74, 1041, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1047, 8, 75, 10, 75, 12, 75, 1050, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1057, 8, 76, 10, 76, 12, 76, 1060, 9, 76, 1, 76, 1, 76, 3, 76, 1064, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1076, 8, 78, 1, 78, 3, 78, 1079, 8, 78, 1, 78, 3, 78, 1082, 8, 78, 1, 78, 3, 78, 1085, 8, 78, 1, 79, 1, 79, 3, 79, 1089, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1095, 8, 79, 10, 79, 12, 79, 1098, 9, 79, 3, 79, 1100, 8, 79, 1, 80, 1, 80, 3, 80, 1104, 8, 80, 1, 80, 3, 80, 1107, 8, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1116, 8, 82, 10, 82, 12, 82, 1119, 9, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1127, 8, 82, 1, 82, 3, 82, 1130, 8, 82, 1, 82, 3, 82, 1133, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1138, 8, 82, 5, 82, 1140, 8, 82, 10, 82, 12, 82, 1143, 9, 82, 1, 83, 1, 83, 3, 83, 1147, 8, 83, 1, 84, 3, 84, 1150, 8, 84, 1, 84, 1, 84, 3, 84, 1154, 8, 84, 1, 84, 3, 84, 1157, 8, 84, 1, 84, 3, 84, 1160, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1170, 8, 84, 10, 84, 12, 84, 1173, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1179, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1190, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1209, 8, 88, 10, 88, 12, 88, 1212, 9, 88, 1, 88, 1, 88, 3, 88, 1216, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1226, 8, 90, 10, 90, 12, 90, 1229, 9, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1238, 8, 91, 10, 91, 12, 91, 1241, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1250, 8, 91, 10, 91, 12, 91, 1253, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1262, 8, 91, 10, 91, 12, 91, 1265, 9, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 1275, 8, 91, 10, 91, 12, 91, 1278, 9, 91, 1, 91, 1, 91, 3, 91, 1282, 8, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 1292, 8, 93, 10, 93, 12, 93, 1295, 9, 93, 1, 94, 1, 94, 3, 94, 1299, 8, 94, 1, 95, 1, 95, 1, 95, 3, 95, 1304, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1310, 8, 96, 10, 96, 12, 96, 1313, 9, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 3, 98, 1320, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1328, 8, 98, 10, 98, 12, 98, 1331, 9, 98, 3, 98, 1333, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1340, 8, 98, 10, 98, 12, 98, 1343, 9, 98, 3, 98, 1345, 8, 98, 1, 98, 3, 98, 1348, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 1354, 8, 99, 1, 99, 1, 99, 3, 99, 1358, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1364, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1381, 8, 103, 3, 103, 1383, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1391, 8, 103, 10, 103, 12, 103, 1394, 9, 103, 1, 104, 3, 104, 1397, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1405, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1412, 8, 104, 10, 104, 12, 104, 1415, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1420, 8, 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, 1433, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1438, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1448, 8, 104, 10, 104, 12, 104, 1451, 9, 104, 1, 104, 1, 104, 3, 104, 1455, 8, 104, 1, 104, 3, 104, 1458, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1464, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1469, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1474, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1479, 8, 104, 1, 105, 3, 105, 1482, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1492, 8, 105, 10, 105, 12, 105, 1495, 9, 105, 1, 105, 1, 105, 3, 105, 1499, 8, 105, 1, 105, 3, 105, 1502, 8, 105, 1, 105, 1, 105, 3, 105, 1506, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1512, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1533, 8, 106, 10, 106, 12, 106, 1536, 9, 106, 1, 107, 1, 107, 1, 107, 4, 107, 1541, 8, 107, 11, 107, 12, 107, 1542, 1, 107, 1, 107, 3, 107, 1547, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 4, 107, 1554, 8, 107, 11, 107, 12, 107, 1555, 1, 107, 1, 107, 3, 107, 1560, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1576, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1585, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1609, 8, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1614, 8, 107, 10, 107, 12, 107, 1617, 9, 107, 3, 107, 1619, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1629, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1636, 8, 107, 10, 107, 12, 107, 1639, 9, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 1649, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 1654, 8, 112, 1, 113, 1, 113, 3, 113, 1658, 8, 113, 1, 114, 1, 114, 1, 114, 4, 114, 1663, 8, 114, 11, 114, 12, 114, 1664, 1, 115, 1, 115, 1, 115, 3, 115, 1670, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 3, 117, 1678, 8, 117, 1, 117, 1, 117, 3, 117, 1682, 8, 117, 1, 118, 3, 118, 1685, 8, 118, 1, 118, 1, 118, 3, 118, 1689, 8, 118, 1, 119, 3, 119, 1692, 8, 119, 1, 119, 1, 119, 3, 119, 1696, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 4, 121, 1703, 8, 121, 11, 121, 12, 121, 1704, 1, 121, 3, 121, 1708, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 5, 123, 1717, 8, 123, 10, 123, 12, 123, 1720, 9, 123, 1, 124, 1, 124, 3, 124, 1724, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1730, 8, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 5, 129, 1744, 8, 129, 10, 129, 12, 129, 1747, 9, 129, 1, 130, 1, 130, 5, 130, 1751, 8, 130, 10, 130, 12, 130, 1754, 9, 130, 1, 131, 1, 131, 5, 131, 1758, 8, 131, 10, 131, 12, 131, 1761, 9, 131, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1777, 8, 135, 10, 135, 12, 135, 1780, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 1786, 8, 136, 1, 136, 3, 136, 1789, 8, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1794, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1800, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1808, 8, 139, 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, 3, 140, 1824, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1833, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1850, 8, 145, 1, 145, 3, 145, 1853, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 2, 1752, 1759, 5, 148, 164, 206, 212, 214, 153, 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, 0, 40, 2, 0, 36, 36, 84, 84, 1, 0, 87, 89, 2, 0, 193, 193, 253, 255, 2, 0, 192, 192, 239, 239, 2, 0, 5, 5, 24, 24, 2, 0, 74, 74, 76, 76, 2, 0, 6, 6, 82, 82, 1, 0, 246, 250, 3, 0, 282, 282, 287, 287, 290, 290, 6, 0, 264, 264, 267, 271, 275, 279, 283, 283, 285, 285, 291, 291, 1, 0, 70, 71, 2, 0, 272, 274, 280, 281, 2, 0, 265, 265, 286, 286, 1, 0, 233, 234, 3, 0, 8, 8, 102, 102, 236, 236, 1, 0, 233, 235, 2, 0, 167, 167, 237, 238, 1, 0, 241, 243, 2, 0, 184, 184, 186, 186, 2, 0, 83, 83, 140, 140, 2, 0, 105, 106, 108, 108, 2, 0, 48, 49, 51, 52, 1, 0, 35, 36, 2, 0, 67, 67, 69, 69, 1, 0, 8, 9, 1, 0, 32, 33, 2, 0, 296, 296, 314, 315, 4, 0, 132, 132, 312, 312, 316, 316, 319, 319, 2, 0, 314, 315, 317, 317, 1, 0, 314, 315, 1, 0, 323, 324, 2, 0, 323, 323, 326, 326, 1, 0, 326, 327, 1, 0, 320, 321, 4, 0, 132, 132, 312, 312, 314, 316, 318, 319, 3, 0, 25, 25, 295, 296, 314, 315, 2, 0, 8, 8, 10, 10, 32, 0, 6, 6, 13, 17, 20, 21, 26, 30, 32, 32, 34, 36, 38, 38, 50, 50, 56, 69, 72, 72, 75, 77, 80, 81, 84, 85, 90, 93, 95, 97, 99, 99, 102, 104, 107, 107, 110, 124, 128, 142, 144, 184, 186, 203, 205, 212, 214, 234, 236, 237, 239, 240, 253, 254, 257, 259, 264, 272, 275, 277, 279, 284, 286, 291, 6, 0, 45, 46, 48, 52, 54, 55, 105, 108, 143, 143, 223, 223, 23, 0, 4, 42, 44, 44, 47, 47, 53, 53, 56, 70, 72, 77, 80, 81, 83, 85, 90, 99, 102, 104, 109, 142, 144, 176, 178, 212, 214, 222, 224, 234, 236, 237, 239, 240, 253, 254, 256, 259, 264, 272, 275, 277, 279, 284, 286, 291, 2038, 0, 306, 1, 0, 0, 0, 2, 309, 1, 0, 0, 0, 4, 319, 1, 0, 0, 0, 6, 334, 1, 0, 0, 0, 8, 336, 1, 0, 0, 0, 10, 352, 1, 0, 0, 0, 12, 356, 1, 0, 0, 0, 14, 358, 1, 0, 0, 0, 16, 361, 1, 0, 0, 0, 18, 372, 1, 0, 0, 0, 20, 380, 1, 0, 0, 0, 22, 388, 1, 0, 0, 0, 24, 390, 1, 0, 0, 0, 26, 435, 1, 0, 0, 0, 28, 437, 1, 0, 0, 0, 30, 444, 1, 0, 0, 0, 32, 448, 1, 0, 0, 0, 34, 452, 1, 0, 0, 0, 36, 456, 1, 0, 0, 0, 38, 499, 1, 0, 0, 0, 40, 503, 1, 0, 0, 0, 42, 505, 1, 0, 0, 0, 44, 546, 1, 0, 0, 0, 46, 560, 1, 0, 0, 0, 48, 562, 1, 0, 0, 0, 50, 572, 1, 0, 0, 0, 52, 574, 1, 0, 0, 0, 54, 622, 1, 0, 0, 0, 56, 624, 1, 0, 0, 0, 58, 628, 1, 0, 0, 0, 60, 636, 1, 0, 0, 0, 62, 644, 1, 0, 0, 0, 64, 648, 1, 0, 0, 0, 66, 655, 1, 0, 0, 0, 68, 671, 1, 0, 0, 0, 70, 678, 1, 0, 0, 0, 72, 681, 1, 0, 0, 0, 74, 691, 1, 0, 0, 0, 76, 693, 1, 0, 0, 0, 78, 699, 1, 0, 0, 0, 80, 701, 1, 0, 0, 0, 82, 709, 1, 0, 0, 0, 84, 717, 1, 0, 0, 0, 86, 719, 1, 0, 0, 0, 88, 723, 1, 0, 0, 0, 90, 727, 1, 0, 0, 0, 92, 751, 1, 0, 0, 0, 94, 755, 1, 0, 0, 0, 96, 757, 1, 0, 0, 0, 98, 769, 1, 0, 0, 0, 100, 775, 1, 0, 0, 0, 102, 777, 1, 0, 0, 0, 104, 782, 1, 0, 0, 0, 106, 793, 1, 0, 0, 0, 108, 811, 1, 0, 0, 0, 110, 831, 1, 0, 0, 0, 112, 842, 1, 0, 0, 0, 114, 844, 1, 0, 0, 0, 116, 851, 1, 0, 0, 0, 118, 855, 1, 0, 0, 0, 120, 858, 1, 0, 0, 0, 122, 866, 1, 0, 0, 0, 124, 871, 1, 0, 0, 0, 126, 888, 1, 0, 0, 0, 128, 895, 1, 0, 0, 0, 130, 905, 1, 0, 0, 0, 132, 914, 1, 0, 0, 0, 134, 924, 1, 0, 0, 0, 136, 942, 1, 0, 0, 0, 138, 944, 1, 0, 0, 0, 140, 957, 1, 0, 0, 0, 142, 960, 1, 0, 0, 0, 144, 969, 1, 0, 0, 0, 146, 980, 1, 0, 0, 0, 148, 1023, 1, 0, 0, 0, 150, 1042, 1, 0, 0, 0, 152, 1051, 1, 0, 0, 0, 154, 1070, 1, 0, 0, 0, 156, 1072, 1, 0, 0, 0, 158, 1086, 1, 0, 0, 0, 160, 1101, 1, 0, 0, 0, 162, 1108, 1, 0, 0, 0, 164, 1111, 1, 0, 0, 0, 166, 1144, 1, 0, 0, 0, 168, 1189, 1, 0, 0, 0, 170, 1191, 1, 0, 0, 0, 172, 1193, 1, 0, 0, 0, 174, 1199, 1, 0, 0, 0, 176, 1215, 1, 0, 0, 0, 178, 1217, 1, 0, 0, 0, 180, 1220, 1, 0, 0, 0, 182, 1281, 1, 0, 0, 0, 184, 1283, 1, 0, 0, 0, 186, 1286, 1, 0, 0, 0, 188, 1296, 1, 0, 0, 0, 190, 1300, 1, 0, 0, 0, 192, 1305, 1, 0, 0, 0, 194, 1314, 1, 0, 0, 0, 196, 1319, 1, 0, 0, 0, 198, 1351, 1, 0, 0, 0, 200, 1363, 1, 0, 0, 0, 202, 1365, 1, 0, 0, 0, 204, 1368, 1, 0, 0, 0, 206, 1382, 1, 0, 0, 0, 208, 1478, 1, 0, 0, 0, 210, 1505, 1, 0, 0, 0, 212, 1511, 1, 0, 0, 0, 214, 1628, 1, 0, 0, 0, 216, 1640, 1, 0, 0, 0, 218, 1642, 1, 0, 0, 0, 220, 1644, 1, 0, 0, 0, 222, 1648, 1, 0, 0, 0, 224, 1650, 1, 0, 0, 0, 226, 1655, 1, 0, 0, 0, 228, 1662, 1, 0, 0, 0, 230, 1666, 1, 0, 0, 0, 232, 1671, 1, 0, 0, 0, 234, 1681, 1, 0, 0, 0, 236, 1684, 1, 0, 0, 0, 238, 1691, 1, 0, 0, 0, 240, 1697, 1, 0, 0, 0, 242, 1707, 1, 0, 0, 0, 244, 1709, 1, 0, 0, 0, 246, 1713, 1, 0, 0, 0, 248, 1723, 1, 0, 0, 0, 250, 1729, 1, 0, 0, 0, 252, 1731, 1, 0, 0, 0, 254, 1733, 1, 0, 0, 0, 256, 1735, 1, 0, 0, 0, 258, 1740, 1, 0, 0, 0, 260, 1748, 1, 0, 0, 0, 262, 1755, 1, 0, 0, 0, 264, 1762, 1, 0, 0, 0, 266, 1765, 1, 0, 0, 0, 268, 1769, 1, 0, 0, 0, 270, 1772, 1, 0, 0, 0, 272, 1783, 1, 0, 0, 0, 274, 1793, 1, 0, 0, 0, 276, 1799, 1, 0, 0, 0, 278, 1807, 1, 0, 0, 0, 280, 1823, 1, 0, 0, 0, 282, 1832, 1, 0, 0, 0, 284, 1834, 1, 0, 0, 0, 286, 1836, 1, 0, 0, 0, 288, 1838, 1, 0, 0, 0, 290, 1852, 1, 0, 0, 0, 292, 1854, 1, 0, 0, 0, 294, 1856, 1, 0, 0, 0, 296, 1858, 1, 0, 0, 0, 298, 1860, 1, 0, 0, 0, 300, 1862, 1, 0, 0, 0, 302, 1864, 1, 0, 0, 0, 304, 1866, 1, 0, 0, 0, 306, 307, 3, 2, 1, 0, 307, 308, 5, 0, 0, 1, 308, 1, 1, 0, 0, 0, 309, 310, 3, 4, 2, 0, 310, 311, 5, 0, 0, 1, 311, 3, 1, 0, 0, 0, 312, 314, 3, 6, 3, 0, 313, 315, 5, 306, 0, 0, 314, 313, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 318, 1, 0, 0, 0, 316, 318, 3, 8, 4, 0, 317, 312, 1, 0, 0, 0, 317, 316, 1, 0, 0, 0, 318, 321, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 5, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 322, 335, 3, 10, 5, 0, 323, 335, 3, 12, 6, 0, 324, 335, 3, 14, 7, 0, 325, 335, 3, 16, 8, 0, 326, 335, 3, 22, 11, 0, 327, 335, 3, 26, 13, 0, 328, 335, 3, 28, 14, 0, 329, 335, 3, 30, 15, 0, 330, 335, 3, 32, 16, 0, 331, 335, 3, 34, 17, 0, 332, 335, 3, 36, 18, 0, 333, 335, 3, 38, 19, 0, 334, 322, 1, 0, 0, 0, 334, 323, 1, 0, 0, 0, 334, 324, 1, 0, 0, 0, 334, 325, 1, 0, 0, 0, 334, 326, 1, 0, 0, 0, 334, 327, 1, 0, 0, 0, 334, 328, 1, 0, 0, 0, 334, 329, 1, 0, 0, 0, 334, 330, 1, 0, 0, 0, 334, 331, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 7, 1, 0, 0, 0, 336, 337, 5, 306, 0, 0, 337, 9, 1, 0, 0, 0, 338, 353, 3, 40, 20, 0, 339, 353, 3, 104, 52, 0, 340, 353, 3, 106, 53, 0, 341, 353, 3, 108, 54, 0, 342, 353, 3, 102, 51, 0, 343, 353, 3, 114, 57, 0, 344, 353, 3, 120, 60, 0, 345, 353, 3, 122, 61, 0, 346, 353, 3, 124, 62, 0, 347, 353, 3, 126, 63, 0, 348, 353, 3, 128, 64, 0, 349, 353, 3, 130, 65, 0, 350, 353, 3, 132, 66, 0, 351, 353, 3, 134, 67, 0, 352, 338, 1, 0, 0, 0, 352, 339, 1, 0, 0, 0, 352, 340, 1, 0, 0, 0, 352, 341, 1, 0, 0, 0, 352, 342, 1, 0, 0, 0, 352, 343, 1, 0, 0, 0, 352, 344, 1, 0, 0, 0, 352, 345, 1, 0, 0, 0, 352, 346, 1, 0, 0, 0, 352, 347, 1, 0, 0, 0, 352, 348, 1, 0, 0, 0, 352, 349, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 352, 351, 1, 0, 0, 0, 353, 11, 1, 0, 0, 0, 354, 357, 3, 148, 74, 0, 355, 357, 3, 136, 68, 0, 356, 354, 1, 0, 0, 0, 356, 355, 1, 0, 0, 0, 357, 13, 1, 0, 0, 0, 358, 359, 7, 0, 0, 0, 359, 360, 3, 260, 130, 0, 360, 15, 1, 0, 0, 0, 361, 365, 5, 85, 0, 0, 362, 366, 3, 18, 9, 0, 363, 364, 5, 86, 0, 0, 364, 366, 5, 37, 0, 0, 365, 362, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 370, 1, 0, 0, 0, 367, 371, 3, 12, 6, 0, 368, 371, 3, 138, 69, 0, 369, 371, 3, 146, 73, 0, 370, 367, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 369, 1, 0, 0, 0, 371, 17, 1, 0, 0, 0, 372, 377, 3, 20, 10, 0, 373, 374, 5, 305, 0, 0, 374, 376, 3, 20, 10, 0, 375, 373, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 19, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 381, 7, 1, 0, 0, 381, 21, 1, 0, 0, 0, 382, 384, 5, 99, 0, 0, 383, 385, 5, 239, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 389, 3, 260, 130, 0, 387, 389, 3, 24, 12, 0, 388, 382, 1, 0, 0, 0, 388, 387, 1, 0, 0, 0, 389, 23, 1, 0, 0, 0, 390, 391, 5, 99, 0, 0, 391, 392, 5, 101, 0, 0, 392, 397, 3, 260, 130, 0, 393, 394, 5, 305, 0, 0, 394, 396, 3, 260, 130, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 25, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 5, 95, 0, 0, 401, 436, 7, 2, 0, 0, 402, 403, 5, 95, 0, 0, 403, 404, 5, 66, 0, 0, 404, 436, 7, 3, 0, 0, 405, 406, 5, 95, 0, 0, 406, 409, 5, 96, 0, 0, 407, 408, 7, 4, 0, 0, 408, 410, 3, 260, 130, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 413, 3, 210, 105, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 436, 1, 0, 0, 0, 414, 415, 5, 95, 0, 0, 415, 416, 5, 97, 0, 0, 416, 417, 7, 4, 0, 0, 417, 419, 3, 260, 130, 0, 418, 420, 3, 210, 105, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 436, 1, 0, 0, 0, 421, 422, 5, 95, 0, 0, 422, 423, 5, 73, 0, 0, 423, 424, 7, 5, 0, 0, 424, 436, 3, 260, 130, 0, 425, 427, 5, 95, 0, 0, 426, 428, 5, 53, 0, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 436, 5, 103, 0, 0, 430, 432, 5, 95, 0, 0, 431, 433, 5, 52, 0, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 5, 101, 0, 0, 435, 400, 1, 0, 0, 0, 435, 402, 1, 0, 0, 0, 435, 405, 1, 0, 0, 0, 435, 414, 1, 0, 0, 0, 435, 421, 1, 0, 0, 0, 435, 425, 1, 0, 0, 0, 435, 430, 1, 0, 0, 0, 436, 27, 1, 0, 0, 0, 437, 438, 5, 212, 0, 0, 438, 439, 5, 100, 0, 0, 439, 442, 3, 260, 130, 0, 440, 441, 5, 70, 0, 0, 441, 443, 3, 270, 135, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 29, 1, 0, 0, 0, 444, 445, 5, 213, 0, 0, 445, 446, 5, 100, 0, 0, 446, 447, 3, 260, 130, 0, 447, 31, 1, 0, 0, 0, 448, 450, 5, 116, 0, 0, 449, 451, 3, 272, 136, 0, 450, 449, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 33, 1, 0, 0, 0, 452, 454, 5, 117, 0, 0, 453, 455, 3, 274, 137, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 35, 1, 0, 0, 0, 456, 457, 7, 6, 0, 0, 457, 458, 5, 244, 0, 0, 458, 459, 3, 112, 56, 0, 459, 37, 1, 0, 0, 0, 460, 461, 5, 6, 0, 0, 461, 462, 5, 244, 0, 0, 462, 463, 5, 70, 0, 0, 463, 466, 5, 328, 0, 0, 464, 465, 5, 7, 0, 0, 465, 467, 3, 260, 130, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 500, 1, 0, 0, 0, 468, 469, 5, 6, 0, 0, 469, 470, 5, 245, 0, 0, 470, 471, 5, 70, 0, 0, 471, 474, 5, 328, 0, 0, 472, 473, 5, 7, 0, 0, 473, 475, 3, 260, 130, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 477, 5, 113, 0, 0, 477, 479, 3, 260, 130, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 500, 1, 0, 0, 0, 480, 481, 5, 6, 0, 0, 481, 482, 7, 7, 0, 0, 482, 483, 5, 70, 0, 0, 483, 484, 5, 328, 0, 0, 484, 485, 5, 113, 0, 0, 485, 500, 3, 260, 130, 0, 486, 487, 5, 6, 0, 0, 487, 488, 5, 251, 0, 0, 488, 500, 5, 328, 0, 0, 489, 490, 5, 6, 0, 0, 490, 491, 5, 252, 0, 0, 491, 492, 5, 245, 0, 0, 492, 493, 5, 70, 0, 0, 493, 494, 5, 328, 0, 0, 494, 495, 5, 113, 0, 0, 495, 496, 3, 260, 130, 0, 496, 497, 5, 257, 0, 0, 497, 498, 3, 260, 130, 0, 498, 500, 1, 0, 0, 0, 499, 460, 1, 0, 0, 0, 499, 468, 1, 0, 0, 0, 499, 480, 1, 0, 0, 0, 499, 486, 1, 0, 0, 0, 499, 489, 1, 0, 0, 0, 500, 39, 1, 0, 0, 0, 501, 504, 3, 42, 21, 0, 502, 504, 3, 44, 22, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 41, 1, 0, 0, 0, 505, 507, 5, 73, 0, 0, 506, 508, 5, 166, 0, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 5, 74, 0, 0, 510, 512, 3, 266, 133, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 514, 3, 98, 49, 0, 514, 515, 5, 303, 0, 0, 515, 520, 3, 46, 23, 0, 516, 517, 5, 305, 0, 0, 517, 519, 3, 46, 23, 0, 518, 516, 1, 0, 0, 0, 519, 522, 1, 0, 0, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 525, 1, 0, 0, 0, 522, 520, 1, 0, 0, 0, 523, 524, 5, 305, 0, 0, 524, 526, 3, 80, 40, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 528, 5, 305, 0, 0, 528, 530, 3, 82, 41, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 532, 5, 305, 0, 0, 532, 534, 3, 86, 43, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 537, 5, 304, 0, 0, 536, 538, 3, 70, 35, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 540, 1, 0, 0, 0, 539, 541, 3, 88, 44, 0, 540, 539, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 3, 264, 132, 0, 543, 545, 3, 96, 48, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 43, 1, 0, 0, 0, 546, 547, 5, 73, 0, 0, 547, 549, 5, 74, 0, 0, 548, 550, 3, 266, 133, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 3, 98, 49, 0, 552, 555, 3, 264, 132, 0, 553, 554, 5, 7, 0, 0, 554, 556, 3, 148, 74, 0, 555, 553, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 45, 1, 0, 0, 0, 557, 561, 3, 48, 24, 0, 558, 561, 3, 72, 36, 0, 559, 561, 3, 76, 38, 0, 560, 557, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 560, 559, 1, 0, 0, 0, 561, 47, 1, 0, 0, 0, 562, 563, 3, 50, 25, 0, 563, 565, 3, 54, 27, 0, 564, 566, 3, 68, 34, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 568, 1, 0, 0, 0, 567, 569, 3, 70, 35, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 49, 1, 0, 0, 0, 570, 573, 3, 262, 131, 0, 571, 573, 3, 204, 102, 0, 572, 570, 1, 0, 0, 0, 572, 571, 1, 0, 0, 0, 573, 51, 1, 0, 0, 0, 574, 575, 5, 303, 0, 0, 575, 580, 3, 50, 25, 0, 576, 577, 5, 305, 0, 0, 577, 579, 3, 50, 25, 0, 578, 576, 1, 0, 0, 0, 579, 582, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 583, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 583, 584, 5, 304, 0, 0, 584, 53, 1, 0, 0, 0, 585, 623, 7, 8, 0, 0, 586, 588, 7, 9, 0, 0, 587, 589, 3, 56, 28, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 623, 1, 0, 0, 0, 590, 592, 5, 284, 0, 0, 591, 593, 3, 56, 28, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 600, 1, 0, 0, 0, 594, 596, 7, 10, 0, 0, 595, 597, 5, 224, 0, 0, 596, 595, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 283, 0, 0, 599, 601, 5, 263, 0, 0, 600, 594, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 623, 1, 0, 0, 0, 602, 604, 7, 11, 0, 0, 603, 605, 3, 58, 29, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 623, 1, 0, 0, 0, 606, 608, 7, 12, 0, 0, 607, 609, 3, 62, 31, 0, 608, 607, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 623, 1, 0, 0, 0, 610, 612, 5, 266, 0, 0, 611, 613, 3, 64, 32, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 623, 1, 0, 0, 0, 614, 616, 5, 289, 0, 0, 615, 617, 3, 66, 33, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 623, 1, 0, 0, 0, 618, 620, 5, 288, 0, 0, 619, 621, 3, 60, 30, 0, 620, 619, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 1, 0, 0, 0, 622, 585, 1, 0, 0, 0, 622, 586, 1, 0, 0, 0, 622, 590, 1, 0, 0, 0, 622, 602, 1, 0, 0, 0, 622, 606, 1, 0, 0, 0, 622, 610, 1, 0, 0, 0, 622, 614, 1, 0, 0, 0, 622, 618, 1, 0, 0, 0, 623, 55, 1, 0, 0, 0, 624, 625, 5, 303, 0, 0, 625, 626, 3, 294, 147, 0, 626, 627, 5, 304, 0, 0, 627, 57, 1, 0, 0, 0, 628, 629, 5, 303, 0, 0, 629, 632, 3, 294, 147, 0, 630, 631, 5, 305, 0, 0, 631, 633, 3, 294, 147, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 304, 0, 0, 635, 59, 1, 0, 0, 0, 636, 637, 5, 303, 0, 0, 637, 640, 3, 292, 146, 0, 638, 639, 5, 305, 0, 0, 639, 641, 3, 292, 146, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 5, 304, 0, 0, 643, 61, 1, 0, 0, 0, 644, 645, 5, 294, 0, 0, 645, 646, 3, 54, 27, 0, 646, 647, 5, 293, 0, 0, 647, 63, 1, 0, 0, 0, 648, 649, 5, 294, 0, 0, 649, 650, 3, 54, 27, 0, 650, 651, 5, 305, 0, 0, 651, 652, 3, 54, 27, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 293, 0, 0, 654, 65, 1, 0, 0, 0, 655, 656, 5, 294, 0, 0, 656, 657, 3, 50, 25, 0, 657, 664, 3, 54, 27, 0, 658, 659, 5, 305, 0, 0, 659, 660, 3, 50, 25, 0, 660, 661, 3, 54, 27, 0, 661, 663, 1, 0, 0, 0, 662, 658, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 667, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 668, 5, 293, 0, 0, 668, 67, 1, 0, 0, 0, 669, 670, 5, 185, 0, 0, 670, 672, 3, 84, 42, 0, 671, 669, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 256, 0, 0, 674, 675, 5, 257, 0, 0, 675, 676, 5, 25, 0, 0, 676, 677, 5, 260, 0, 0, 677, 69, 1, 0, 0, 0, 678, 679, 5, 115, 0, 0, 679, 680, 5, 322, 0, 0, 680, 71, 1, 0, 0, 0, 681, 682, 3, 50, 25, 0, 682, 683, 3, 54, 27, 0, 683, 686, 5, 261, 0, 0, 684, 685, 5, 5, 0, 0, 685, 687, 3, 74, 37, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 689, 1, 0, 0, 0, 688, 690, 5, 262, 0, 0, 689, 688, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 73, 1, 0, 0, 0, 691, 692, 5, 322, 0, 0, 692, 75, 1, 0, 0, 0, 693, 694, 3, 50, 25, 0, 694, 695, 5, 7, 0, 0, 695, 697, 3, 78, 39, 0, 696, 698, 3, 70, 35, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 77, 1, 0, 0, 0, 699, 700, 3, 204, 102, 0, 700, 79, 1, 0, 0, 0, 701, 702, 5, 226, 0, 0, 702, 703, 5, 37, 0, 0, 703, 704, 3, 204, 102, 0, 704, 705, 5, 7, 0, 0, 705, 706, 3, 204, 102, 0, 706, 81, 1, 0, 0, 0, 707, 708, 5, 185, 0, 0, 708, 710, 3, 84, 42, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 256, 0, 0, 712, 713, 5, 257, 0, 0, 713, 714, 3, 52, 26, 0, 714, 715, 5, 25, 0, 0, 715, 716, 5, 260, 0, 0, 716, 83, 1, 0, 0, 0, 717, 718, 3, 248, 124, 0, 718, 85, 1, 0, 0, 0, 719, 720, 5, 258, 0, 0, 720, 721, 5, 37, 0, 0, 721, 722, 5, 259, 0, 0, 722, 87, 1, 0, 0, 0, 723, 724, 5, 200, 0, 0, 724, 725, 5, 13, 0, 0, 725, 726, 3, 90, 45, 0, 726, 89, 1, 0, 0, 0, 727, 728, 5, 303, 0, 0, 728, 733, 3, 92, 46, 0, 729, 730, 5, 305, 0, 0, 730, 732, 3, 92, 46, 0, 731, 729, 1, 0, 0, 0, 732, 735, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 736, 737, 5, 304, 0, 0, 737, 91, 1, 0, 0, 0, 738, 752, 3, 222, 111, 0, 739, 740, 3, 248, 124, 0, 740, 741, 5, 303, 0, 0, 741, 746, 3, 94, 47, 0, 742, 743, 5, 305, 0, 0, 743, 745, 3, 94, 47, 0, 744, 742, 1, 0, 0, 0, 745, 748, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 749, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 749, 750, 5, 304, 0, 0, 750, 752, 1, 0, 0, 0, 751, 738, 1, 0, 0, 0, 751, 739, 1, 0, 0, 0, 752, 93, 1, 0, 0, 0, 753, 756, 3, 222, 111, 0, 754, 756, 3, 290, 145, 0, 755, 753, 1, 0, 0, 0, 755, 754, 1, 0, 0, 0, 756, 95, 1, 0, 0, 0, 757, 758, 5, 29, 0, 0, 758, 767, 3, 98, 49, 0, 759, 763, 5, 303, 0, 0, 760, 762, 3, 100, 50, 0, 761, 760, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 768, 5, 304, 0, 0, 767, 759, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 97, 1, 0, 0, 0, 769, 770, 3, 260, 130, 0, 770, 99, 1, 0, 0, 0, 771, 772, 7, 13, 0, 0, 772, 776, 7, 14, 0, 0, 773, 774, 7, 15, 0, 0, 774, 776, 7, 16, 0, 0, 775, 771, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 101, 1, 0, 0, 0, 777, 778, 5, 73, 0, 0, 778, 779, 5, 239, 0, 0, 779, 780, 3, 260, 130, 0, 780, 781, 3, 264, 132, 0, 781, 103, 1, 0, 0, 0, 782, 783, 5, 73, 0, 0, 783, 785, 5, 192, 0, 0, 784, 786, 3, 266, 133, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 789, 3, 260, 130, 0, 788, 790, 3, 70, 35, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 3, 264, 132, 0, 792, 105, 1, 0, 0, 0, 793, 795, 5, 73, 0, 0, 794, 796, 5, 166, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 799, 5, 76, 0, 0, 798, 800, 3, 266, 133, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 260, 130, 0, 802, 804, 3, 52, 26, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 807, 3, 70, 35, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 5, 7, 0, 0, 809, 810, 3, 148, 74, 0, 810, 107, 1, 0, 0, 0, 811, 815, 5, 73, 0, 0, 812, 816, 5, 166, 0, 0, 813, 814, 5, 166, 0, 0, 814, 816, 5, 232, 0, 0, 815, 812, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 5, 157, 0, 0, 818, 820, 3, 266, 133, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 3, 260, 130, 0, 822, 823, 5, 7, 0, 0, 823, 826, 3, 248, 124, 0, 824, 825, 5, 240, 0, 0, 825, 827, 7, 17, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 830, 3, 110, 55, 0, 829, 828, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 109, 1, 0, 0, 0, 831, 832, 5, 143, 0, 0, 832, 833, 5, 244, 0, 0, 833, 839, 3, 112, 56, 0, 834, 835, 5, 305, 0, 0, 835, 836, 5, 244, 0, 0, 836, 838, 3, 112, 56, 0, 837, 834, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 111, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 322, 0, 0, 843, 113, 1, 0, 0, 0, 844, 845, 5, 112, 0, 0, 845, 846, 5, 74, 0, 0, 846, 849, 3, 260, 130, 0, 847, 850, 3, 116, 58, 0, 848, 850, 3, 118, 59, 0, 849, 847, 1, 0, 0, 0, 849, 848, 1, 0, 0, 0, 850, 115, 1, 0, 0, 0, 851, 852, 5, 113, 0, 0, 852, 853, 5, 109, 0, 0, 853, 854, 3, 260, 130, 0, 854, 117, 1, 0, 0, 0, 855, 856, 5, 116, 0, 0, 856, 857, 3, 270, 135, 0, 857, 119, 1, 0, 0, 0, 858, 859, 5, 112, 0, 0, 859, 860, 5, 76, 0, 0, 860, 864, 3, 260, 130, 0, 861, 865, 3, 116, 58, 0, 862, 863, 5, 7, 0, 0, 863, 865, 3, 148, 74, 0, 864, 861, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 121, 1, 0, 0, 0, 866, 867, 5, 112, 0, 0, 867, 868, 5, 192, 0, 0, 868, 869, 3, 260, 130, 0, 869, 870, 3, 118, 59, 0, 870, 123, 1, 0, 0, 0, 871, 875, 5, 112, 0, 0, 872, 876, 5, 166, 0, 0, 873, 874, 5, 166, 0, 0, 874, 876, 5, 232, 0, 0, 875, 872, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 5, 157, 0, 0, 878, 880, 3, 268, 134, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 3, 260, 130, 0, 882, 883, 5, 7, 0, 0, 883, 886, 3, 248, 124, 0, 884, 885, 5, 240, 0, 0, 885, 887, 7, 17, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 125, 1, 0, 0, 0, 888, 889, 5, 104, 0, 0, 889, 891, 5, 239, 0, 0, 890, 892, 3, 268, 134, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 3, 260, 130, 0, 894, 127, 1, 0, 0, 0, 895, 897, 5, 104, 0, 0, 896, 898, 5, 166, 0, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 5, 74, 0, 0, 900, 902, 3, 268, 134, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 3, 260, 130, 0, 904, 129, 1, 0, 0, 0, 905, 906, 5, 104, 0, 0, 906, 908, 5, 192, 0, 0, 907, 909, 3, 268, 134, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 3, 260, 130, 0, 911, 913, 7, 18, 0, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 131, 1, 0, 0, 0, 914, 916, 5, 104, 0, 0, 915, 917, 5, 166, 0, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 5, 76, 0, 0, 919, 921, 3, 268, 134, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 260, 130, 0, 923, 133, 1, 0, 0, 0, 924, 928, 5, 104, 0, 0, 925, 929, 5, 166, 0, 0, 926, 927, 5, 166, 0, 0, 927, 929, 5, 232, 0, 0, 928, 925, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 5, 157, 0, 0, 931, 933, 3, 268, 134, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 3, 260, 130, 0, 935, 135, 1, 0, 0, 0, 936, 938, 5, 78, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 943, 3, 138, 69, 0, 940, 941, 5, 78, 0, 0, 941, 943, 3, 146, 73, 0, 942, 937, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 943, 137, 1, 0, 0, 0, 944, 945, 5, 80, 0, 0, 945, 946, 7, 19, 0, 0, 946, 955, 3, 260, 130, 0, 947, 949, 3, 140, 70, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 951, 1, 0, 0, 0, 950, 952, 3, 52, 26, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 956, 3, 148, 74, 0, 954, 956, 3, 142, 71, 0, 955, 948, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 139, 1, 0, 0, 0, 957, 958, 5, 60, 0, 0, 958, 959, 3, 270, 135, 0, 959, 141, 1, 0, 0, 0, 960, 961, 5, 72, 0, 0, 961, 966, 3, 144, 72, 0, 962, 963, 5, 305, 0, 0, 963, 965, 3, 144, 72, 0, 964, 962, 1, 0, 0, 0, 965, 968, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 143, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 969, 970, 5, 303, 0, 0, 970, 975, 3, 290, 145, 0, 971, 972, 5, 305, 0, 0, 972, 974, 3, 290, 145, 0, 973, 971, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 979, 5, 304, 0, 0, 979, 145, 1, 0, 0, 0, 980, 981, 5, 79, 0, 0, 981, 982, 5, 116, 0, 0, 982, 986, 5, 43, 0, 0, 983, 984, 3, 138, 69, 0, 984, 985, 5, 306, 0, 0, 985, 987, 1, 0, 0, 0, 986, 983, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 44, 0, 0, 991, 147, 1, 0, 0, 0, 992, 993, 6, 74, -1, 0, 993, 1024, 3, 150, 75, 0, 994, 995, 5, 70, 0, 0, 995, 1000, 3, 152, 76, 0, 996, 997, 5, 305, 0, 0, 997, 999, 3, 152, 76, 0, 998, 996, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1004, 3, 148, 74, 5, 1004, 1024, 1, 0, 0, 0, 1005, 1006, 5, 303, 0, 0, 1006, 1007, 3, 148, 74, 0, 1007, 1008, 5, 304, 0, 0, 1008, 1024, 1, 0, 0, 0, 1009, 1011, 3, 158, 79, 0, 1010, 1012, 3, 186, 93, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1014, 1, 0, 0, 0, 1013, 1015, 3, 190, 95, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1024, 1, 0, 0, 0, 1016, 1018, 3, 156, 78, 0, 1017, 1019, 3, 186, 93, 0, 1018, 1017, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1021, 1, 0, 0, 0, 1020, 1022, 3, 190, 95, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 1, 0, 0, 0, 1023, 992, 1, 0, 0, 0, 1023, 994, 1, 0, 0, 0, 1023, 1005, 1, 0, 0, 0, 1023, 1009, 1, 0, 0, 0, 1023, 1016, 1, 0, 0, 0, 1024, 1039, 1, 0, 0, 0, 1025, 1026, 10, 3, 0, 0, 1026, 1028, 7, 20, 0, 0, 1027, 1029, 5, 8, 0, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1032, 3, 148, 74, 0, 1031, 1033, 3, 186, 93, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1036, 3, 190, 95, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1038, 1, 0, 0, 0, 1037, 1025, 1, 0, 0, 0, 1038, 1041, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 149, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1043, 5, 72, 0, 0, 1043, 1048, 3, 204, 102, 0, 1044, 1045, 5, 305, 0, 0, 1045, 1047, 3, 204, 102, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1050, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 151, 1, 0, 0, 0, 1050, 1048, 1, 0, 0, 0, 1051, 1063, 3, 154, 77, 0, 1052, 1053, 5, 303, 0, 0, 1053, 1058, 3, 50, 25, 0, 1054, 1055, 5, 305, 0, 0, 1055, 1057, 3, 50, 25, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1060, 1, 0, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1061, 1062, 5, 304, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1052, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 5, 7, 0, 0, 1066, 1067, 5, 303, 0, 0, 1067, 1068, 3, 148, 74, 0, 1068, 1069, 5, 304, 0, 0, 1069, 153, 1, 0, 0, 0, 1070, 1071, 3, 248, 124, 0, 1071, 155, 1, 0, 0, 0, 1072, 1073, 3, 158, 79, 0, 1073, 1075, 3, 162, 81, 0, 1074, 1076, 3, 178, 89, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1078, 1, 0, 0, 0, 1077, 1079, 3, 180, 90, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1082, 3, 184, 92, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 192, 96, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 157, 1, 0, 0, 0, 1086, 1088, 5, 4, 0, 0, 1087, 1089, 3, 298, 149, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1099, 1, 0, 0, 0, 1090, 1100, 5, 312, 0, 0, 1091, 1096, 3, 160, 80, 0, 1092, 1093, 5, 305, 0, 0, 1093, 1095, 3, 160, 80, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1090, 1, 0, 0, 0, 1099, 1091, 1, 0, 0, 0, 1100, 159, 1, 0, 0, 0, 1101, 1106, 3, 204, 102, 0, 1102, 1104, 5, 7, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1107, 3, 204, 102, 0, 1106, 1103, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 161, 1, 0, 0, 0, 1108, 1109, 5, 5, 0, 0, 1109, 1110, 3, 164, 82, 0, 1110, 163, 1, 0, 0, 0, 1111, 1112, 6, 82, -1, 0, 1112, 1117, 3, 166, 83, 0, 1113, 1114, 5, 305, 0, 0, 1114, 1116, 3, 166, 83, 0, 1115, 1113, 1, 0, 0, 0, 1116, 1119, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1141, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1120, 1121, 10, 1, 0, 0, 1121, 1122, 5, 46, 0, 0, 1122, 1123, 5, 45, 0, 0, 1123, 1140, 3, 164, 82, 2, 1124, 1126, 10, 2, 0, 0, 1125, 1127, 5, 54, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1130, 7, 21, 0, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1133, 5, 47, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 5, 45, 0, 0, 1135, 1137, 3, 164, 82, 0, 1136, 1138, 3, 176, 88, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 1, 0, 0, 0, 1139, 1120, 1, 0, 0, 0, 1139, 1124, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 165, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1146, 3, 168, 84, 0, 1145, 1147, 3, 238, 119, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 167, 1, 0, 0, 0, 1148, 1150, 5, 74, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1153, 3, 170, 85, 0, 1152, 1154, 3, 172, 86, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1159, 1, 0, 0, 0, 1155, 1157, 5, 7, 0, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 3, 220, 110, 0, 1159, 1156, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1190, 1, 0, 0, 0, 1161, 1162, 5, 57, 0, 0, 1162, 1163, 5, 74, 0, 0, 1163, 1164, 5, 303, 0, 0, 1164, 1165, 3, 216, 108, 0, 1165, 1166, 5, 303, 0, 0, 1166, 1171, 3, 204, 102, 0, 1167, 1168, 5, 305, 0, 0, 1168, 1170, 3, 204, 102, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1174, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1174, 1175, 5, 304, 0, 0, 1175, 1176, 5, 304, 0, 0, 1176, 1190, 1, 0, 0, 0, 1177, 1179, 5, 57, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 303, 0, 0, 1181, 1182, 3, 148, 74, 0, 1182, 1183, 5, 304, 0, 0, 1183, 1190, 1, 0, 0, 0, 1184, 1185, 5, 227, 0, 0, 1185, 1186, 5, 303, 0, 0, 1186, 1187, 3, 204, 102, 0, 1187, 1188, 5, 304, 0, 0, 1188, 1190, 1, 0, 0, 0, 1189, 1149, 1, 0, 0, 0, 1189, 1161, 1, 0, 0, 0, 1189, 1178, 1, 0, 0, 0, 1189, 1184, 1, 0, 0, 0, 1190, 169, 1, 0, 0, 0, 1191, 1192, 3, 260, 130, 0, 1192, 171, 1, 0, 0, 0, 1193, 1194, 5, 37, 0, 0, 1194, 1195, 5, 259, 0, 0, 1195, 1196, 5, 7, 0, 0, 1196, 1197, 5, 136, 0, 0, 1197, 1198, 3, 174, 87, 0, 1198, 173, 1, 0, 0, 0, 1199, 1200, 3, 204, 102, 0, 1200, 175, 1, 0, 0, 0, 1201, 1202, 5, 55, 0, 0, 1202, 1216, 3, 206, 103, 0, 1203, 1204, 5, 143, 0, 0, 1204, 1205, 5, 303, 0, 0, 1205, 1210, 3, 260, 130, 0, 1206, 1207, 5, 305, 0, 0, 1207, 1209, 3, 260, 130, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 304, 0, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1201, 1, 0, 0, 0, 1215, 1203, 1, 0, 0, 0, 1216, 177, 1, 0, 0, 0, 1217, 1218, 5, 11, 0, 0, 1218, 1219, 3, 206, 103, 0, 1219, 179, 1, 0, 0, 0, 1220, 1221, 5, 12, 0, 0, 1221, 1222, 5, 13, 0, 0, 1222, 1227, 3, 182, 91, 0, 1223, 1224, 5, 305, 0, 0, 1224, 1226, 3, 182, 91, 0, 1225, 1223, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 181, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1282, 3, 204, 102, 0, 1231, 1232, 5, 303, 0, 0, 1232, 1282, 5, 304, 0, 0, 1233, 1234, 5, 303, 0, 0, 1234, 1239, 3, 204, 102, 0, 1235, 1236, 5, 305, 0, 0, 1236, 1238, 3, 204, 102, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1241, 1, 0, 0, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1243, 5, 304, 0, 0, 1243, 1282, 1, 0, 0, 0, 1244, 1245, 5, 16, 0, 0, 1245, 1246, 5, 303, 0, 0, 1246, 1251, 3, 204, 102, 0, 1247, 1248, 5, 305, 0, 0, 1248, 1250, 3, 204, 102, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1255, 5, 304, 0, 0, 1255, 1282, 1, 0, 0, 0, 1256, 1257, 5, 17, 0, 0, 1257, 1258, 5, 303, 0, 0, 1258, 1263, 3, 204, 102, 0, 1259, 1260, 5, 305, 0, 0, 1260, 1262, 3, 204, 102, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1267, 5, 304, 0, 0, 1267, 1282, 1, 0, 0, 0, 1268, 1269, 5, 14, 0, 0, 1269, 1270, 5, 15, 0, 0, 1270, 1271, 5, 303, 0, 0, 1271, 1276, 3, 182, 91, 0, 1272, 1273, 5, 305, 0, 0, 1273, 1275, 3, 182, 91, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1280, 5, 304, 0, 0, 1280, 1282, 1, 0, 0, 0, 1281, 1230, 1, 0, 0, 0, 1281, 1231, 1, 0, 0, 0, 1281, 1233, 1, 0, 0, 0, 1281, 1244, 1, 0, 0, 0, 1281, 1256, 1, 0, 0, 0, 1281, 1268, 1, 0, 0, 0, 1282, 183, 1, 0, 0, 0, 1283, 1284, 5, 19, 0, 0, 1284, 1285, 3, 206, 103, 0, 1285, 185, 1, 0, 0, 0, 1286, 1287, 5, 18, 0, 0, 1287, 1288, 5, 13, 0, 0, 1288, 1293, 3, 188, 94, 0, 1289, 1290, 5, 305, 0, 0, 1290, 1292, 3, 188, 94, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1295, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 187, 1, 0, 0, 0, 1295, 1293, 1, 0, 0, 0, 1296, 1298, 3, 204, 102, 0, 1297, 1299, 7, 22, 0, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 189, 1, 0, 0, 0, 1300, 1303, 5, 20, 0, 0, 1301, 1304, 5, 8, 0, 0, 1302, 1304, 3, 204, 102, 0, 1303, 1301, 1, 0, 0, 0, 1303, 1302, 1, 0, 0, 0, 1304, 191, 1, 0, 0, 0, 1305, 1306, 5, 58, 0, 0, 1306, 1311, 3, 194, 97, 0, 1307, 1308, 5, 305, 0, 0, 1308, 1310, 3, 194, 97, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 193, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1315, 3, 240, 120, 0, 1315, 1316, 5, 7, 0, 0, 1316, 1317, 3, 196, 98, 0, 1317, 195, 1, 0, 0, 0, 1318, 1320, 3, 240, 120, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1332, 5, 303, 0, 0, 1322, 1323, 5, 18, 0, 0, 1323, 1324, 5, 13, 0, 0, 1324, 1329, 3, 198, 99, 0, 1325, 1326, 5, 305, 0, 0, 1326, 1328, 3, 198, 99, 0, 1327, 1325, 1, 0, 0, 0, 1328, 1331, 1, 0, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1332, 1322, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1344, 1, 0, 0, 0, 1334, 1335, 5, 60, 0, 0, 1335, 1336, 5, 13, 0, 0, 1336, 1341, 3, 204, 102, 0, 1337, 1338, 5, 305, 0, 0, 1338, 1340, 3, 204, 102, 0, 1339, 1337, 1, 0, 0, 0, 1340, 1343, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1345, 1, 0, 0, 0, 1343, 1341, 1, 0, 0, 0, 1344, 1334, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1348, 3, 200, 100, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 5, 304, 0, 0, 1350, 197, 1, 0, 0, 0, 1351, 1353, 3, 204, 102, 0, 1352, 1354, 7, 22, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1357, 1, 0, 0, 0, 1355, 1356, 5, 34, 0, 0, 1356, 1358, 7, 23, 0, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 199, 1, 0, 0, 0, 1359, 1360, 5, 61, 0, 0, 1360, 1364, 3, 202, 101, 0, 1361, 1362, 5, 62, 0, 0, 1362, 1364, 3, 202, 101, 0, 1363, 1359, 1, 0, 0, 0, 1363, 1361, 1, 0, 0, 0, 1364, 201, 1, 0, 0, 0, 1365, 1366, 3, 204, 102, 0, 1366, 1367, 5, 64, 0, 0, 1367, 203, 1, 0, 0, 0, 1368, 1369, 3, 206, 103, 0, 1369, 205, 1, 0, 0, 0, 1370, 1371, 6, 103, -1, 0, 1371, 1372, 5, 25, 0, 0, 1372, 1383, 3, 206, 103, 5, 1373, 1374, 5, 27, 0, 0, 1374, 1375, 5, 303, 0, 0, 1375, 1376, 3, 148, 74, 0, 1376, 1377, 5, 304, 0, 0, 1377, 1383, 1, 0, 0, 0, 1378, 1380, 3, 212, 106, 0, 1379, 1381, 3, 208, 104, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1383, 1, 0, 0, 0, 1382, 1370, 1, 0, 0, 0, 1382, 1373, 1, 0, 0, 0, 1382, 1378, 1, 0, 0, 0, 1383, 1392, 1, 0, 0, 0, 1384, 1385, 10, 2, 0, 0, 1385, 1386, 5, 23, 0, 0, 1386, 1391, 3, 206, 103, 3, 1387, 1388, 10, 1, 0, 0, 1388, 1389, 5, 22, 0, 0, 1389, 1391, 3, 206, 103, 2, 1390, 1384, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1391, 1394, 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 207, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1395, 1397, 5, 25, 0, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 5, 28, 0, 0, 1399, 1400, 3, 212, 106, 0, 1400, 1401, 5, 23, 0, 0, 1401, 1402, 3, 212, 106, 0, 1402, 1479, 1, 0, 0, 0, 1403, 1405, 5, 25, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 5, 24, 0, 0, 1407, 1408, 5, 303, 0, 0, 1408, 1413, 3, 204, 102, 0, 1409, 1410, 5, 305, 0, 0, 1410, 1412, 3, 204, 102, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1417, 5, 304, 0, 0, 1417, 1479, 1, 0, 0, 0, 1418, 1420, 5, 25, 0, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 5, 24, 0, 0, 1422, 1423, 5, 303, 0, 0, 1423, 1424, 3, 148, 74, 0, 1424, 1425, 5, 304, 0, 0, 1425, 1479, 1, 0, 0, 0, 1426, 1427, 5, 27, 0, 0, 1427, 1428, 5, 303, 0, 0, 1428, 1429, 3, 148, 74, 0, 1429, 1430, 5, 304, 0, 0, 1430, 1479, 1, 0, 0, 0, 1431, 1433, 5, 25, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 5, 30, 0, 0, 1435, 1479, 3, 212, 106, 0, 1436, 1438, 5, 25, 0, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 5, 29, 0, 0, 1440, 1454, 7, 24, 0, 0, 1441, 1442, 5, 303, 0, 0, 1442, 1455, 5, 304, 0, 0, 1443, 1444, 5, 303, 0, 0, 1444, 1449, 3, 204, 102, 0, 1445, 1446, 5, 305, 0, 0, 1446, 1448, 3, 204, 102, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1451, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1449, 1, 0, 0, 0, 1452, 1453, 5, 304, 0, 0, 1453, 1455, 1, 0, 0, 0, 1454, 1441, 1, 0, 0, 0, 1454, 1443, 1, 0, 0, 0, 1455, 1479, 1, 0, 0, 0, 1456, 1458, 5, 25, 0, 0, 1457, 1456, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 5, 29, 0, 0, 1460, 1479, 3, 212, 106, 0, 1461, 1463, 5, 31, 0, 0, 1462, 1464, 5, 25, 0, 0, 1463, 1462, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1479, 5, 290, 0, 0, 1466, 1468, 5, 31, 0, 0, 1467, 1469, 5, 25, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1479, 7, 25, 0, 0, 1471, 1473, 5, 31, 0, 0, 1472, 1474, 5, 25, 0, 0, 1473, 1472, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 5, 10, 0, 0, 1476, 1477, 5, 5, 0, 0, 1477, 1479, 3, 212, 106, 0, 1478, 1396, 1, 0, 0, 0, 1478, 1404, 1, 0, 0, 0, 1478, 1419, 1, 0, 0, 0, 1478, 1426, 1, 0, 0, 0, 1478, 1432, 1, 0, 0, 0, 1478, 1437, 1, 0, 0, 0, 1478, 1457, 1, 0, 0, 0, 1478, 1461, 1, 0, 0, 0, 1478, 1466, 1, 0, 0, 0, 1478, 1471, 1, 0, 0, 0, 1479, 209, 1, 0, 0, 0, 1480, 1482, 5, 25, 0, 0, 1481, 1480, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 5, 29, 0, 0, 1484, 1498, 7, 24, 0, 0, 1485, 1486, 5, 303, 0, 0, 1486, 1499, 5, 304, 0, 0, 1487, 1488, 5, 303, 0, 0, 1488, 1493, 3, 204, 102, 0, 1489, 1490, 5, 305, 0, 0, 1490, 1492, 3, 204, 102, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 304, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1485, 1, 0, 0, 0, 1498, 1487, 1, 0, 0, 0, 1499, 1506, 1, 0, 0, 0, 1500, 1502, 5, 25, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 5, 29, 0, 0, 1504, 1506, 3, 212, 106, 0, 1505, 1481, 1, 0, 0, 0, 1505, 1501, 1, 0, 0, 0, 1506, 211, 1, 0, 0, 0, 1507, 1508, 6, 106, -1, 0, 1508, 1512, 3, 214, 107, 0, 1509, 1510, 7, 26, 0, 0, 1510, 1512, 3, 212, 106, 7, 1511, 1507, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1534, 1, 0, 0, 0, 1513, 1514, 10, 6, 0, 0, 1514, 1515, 7, 27, 0, 0, 1515, 1533, 3, 212, 106, 7, 1516, 1517, 10, 5, 0, 0, 1517, 1518, 7, 28, 0, 0, 1518, 1533, 3, 212, 106, 6, 1519, 1520, 10, 4, 0, 0, 1520, 1521, 5, 298, 0, 0, 1521, 1533, 3, 212, 106, 5, 1522, 1523, 10, 3, 0, 0, 1523, 1524, 5, 299, 0, 0, 1524, 1533, 3, 212, 106, 4, 1525, 1526, 10, 2, 0, 0, 1526, 1527, 5, 297, 0, 0, 1527, 1533, 3, 212, 106, 3, 1528, 1529, 10, 1, 0, 0, 1529, 1530, 3, 280, 140, 0, 1530, 1531, 3, 212, 106, 2, 1531, 1533, 1, 0, 0, 0, 1532, 1513, 1, 0, 0, 0, 1532, 1516, 1, 0, 0, 0, 1532, 1519, 1, 0, 0, 0, 1532, 1522, 1, 0, 0, 0, 1532, 1525, 1, 0, 0, 0, 1532, 1528, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 213, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1538, 6, 107, -1, 0, 1538, 1540, 5, 39, 0, 0, 1539, 1541, 3, 256, 128, 0, 1540, 1539, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1545, 5, 42, 0, 0, 1545, 1547, 3, 204, 102, 0, 1546, 1544, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 5, 44, 0, 0, 1549, 1629, 1, 0, 0, 0, 1550, 1551, 5, 39, 0, 0, 1551, 1553, 3, 204, 102, 0, 1552, 1554, 3, 256, 128, 0, 1553, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1559, 1, 0, 0, 0, 1557, 1558, 5, 42, 0, 0, 1558, 1560, 3, 204, 102, 0, 1559, 1557, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 5, 44, 0, 0, 1562, 1629, 1, 0, 0, 0, 1563, 1564, 5, 94, 0, 0, 1564, 1565, 5, 303, 0, 0, 1565, 1566, 3, 204, 102, 0, 1566, 1567, 5, 7, 0, 0, 1567, 1568, 3, 54, 27, 0, 1568, 1569, 5, 304, 0, 0, 1569, 1629, 1, 0, 0, 0, 1570, 1571, 5, 67, 0, 0, 1571, 1572, 5, 303, 0, 0, 1572, 1575, 3, 204, 102, 0, 1573, 1574, 5, 124, 0, 0, 1574, 1576, 5, 34, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 304, 0, 0, 1578, 1629, 1, 0, 0, 0, 1579, 1580, 5, 69, 0, 0, 1580, 1581, 5, 303, 0, 0, 1581, 1584, 3, 204, 102, 0, 1582, 1583, 5, 124, 0, 0, 1583, 1585, 5, 34, 0, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 5, 304, 0, 0, 1587, 1629, 1, 0, 0, 0, 1588, 1589, 5, 129, 0, 0, 1589, 1590, 5, 303, 0, 0, 1590, 1591, 3, 212, 106, 0, 1591, 1592, 5, 24, 0, 0, 1592, 1593, 3, 212, 106, 0, 1593, 1594, 5, 304, 0, 0, 1594, 1629, 1, 0, 0, 0, 1595, 1629, 3, 290, 145, 0, 1596, 1629, 5, 312, 0, 0, 1597, 1598, 3, 260, 130, 0, 1598, 1599, 5, 300, 0, 0, 1599, 1600, 5, 312, 0, 0, 1600, 1629, 1, 0, 0, 0, 1601, 1602, 5, 303, 0, 0, 1602, 1603, 3, 148, 74, 0, 1603, 1604, 5, 304, 0, 0, 1604, 1629, 1, 0, 0, 0, 1605, 1606, 3, 216, 108, 0, 1606, 1618, 5, 303, 0, 0, 1607, 1609, 3, 298, 149, 0, 1608, 1607, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1615, 3, 204, 102, 0, 1611, 1612, 5, 305, 0, 0, 1612, 1614, 3, 204, 102, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1617, 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1619, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1618, 1608, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 5, 304, 0, 0, 1621, 1629, 1, 0, 0, 0, 1622, 1629, 3, 248, 124, 0, 1623, 1629, 3, 218, 109, 0, 1624, 1625, 5, 303, 0, 0, 1625, 1626, 3, 204, 102, 0, 1626, 1627, 5, 304, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1537, 1, 0, 0, 0, 1628, 1550, 1, 0, 0, 0, 1628, 1563, 1, 0, 0, 0, 1628, 1570, 1, 0, 0, 0, 1628, 1579, 1, 0, 0, 0, 1628, 1588, 1, 0, 0, 0, 1628, 1595, 1, 0, 0, 0, 1628, 1596, 1, 0, 0, 0, 1628, 1597, 1, 0, 0, 0, 1628, 1601, 1, 0, 0, 0, 1628, 1605, 1, 0, 0, 0, 1628, 1622, 1, 0, 0, 0, 1628, 1623, 1, 0, 0, 0, 1628, 1624, 1, 0, 0, 0, 1629, 1637, 1, 0, 0, 0, 1630, 1631, 10, 4, 0, 0, 1631, 1632, 5, 301, 0, 0, 1632, 1633, 3, 212, 106, 0, 1633, 1634, 5, 302, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1630, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1635, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 215, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1640, 1641, 3, 260, 130, 0, 1641, 217, 1, 0, 0, 0, 1642, 1643, 3, 260, 130, 0, 1643, 219, 1, 0, 0, 0, 1644, 1645, 3, 248, 124, 0, 1645, 221, 1, 0, 0, 0, 1646, 1649, 3, 248, 124, 0, 1647, 1649, 3, 218, 109, 0, 1648, 1646, 1, 0, 0, 0, 1648, 1647, 1, 0, 0, 0, 1649, 223, 1, 0, 0, 0, 1650, 1653, 5, 38, 0, 0, 1651, 1654, 3, 226, 113, 0, 1652, 1654, 3, 230, 115, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 225, 1, 0, 0, 0, 1655, 1657, 3, 228, 114, 0, 1656, 1658, 3, 232, 116, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 227, 1, 0, 0, 0, 1659, 1660, 3, 234, 117, 0, 1660, 1661, 3, 248, 124, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1659, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 229, 1, 0, 0, 0, 1666, 1669, 3, 232, 116, 0, 1667, 1670, 3, 228, 114, 0, 1668, 1670, 3, 232, 116, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 231, 1, 0, 0, 0, 1671, 1672, 3, 234, 117, 0, 1672, 1673, 3, 248, 124, 0, 1673, 1674, 5, 109, 0, 0, 1674, 1675, 3, 248, 124, 0, 1675, 233, 1, 0, 0, 0, 1676, 1678, 7, 29, 0, 0, 1677, 1676, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1682, 7, 30, 0, 0, 1680, 1682, 5, 322, 0, 0, 1681, 1677, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, 0, 1682, 235, 1, 0, 0, 0, 1683, 1685, 5, 7, 0, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1688, 3, 250, 125, 0, 1687, 1689, 3, 244, 122, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 237, 1, 0, 0, 0, 1690, 1692, 5, 7, 0, 0, 1691, 1690, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 3, 250, 125, 0, 1694, 1696, 3, 244, 122, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 239, 1, 0, 0, 0, 1697, 1698, 3, 248, 124, 0, 1698, 1699, 3, 242, 121, 0, 1699, 241, 1, 0, 0, 0, 1700, 1701, 5, 131, 0, 0, 1701, 1703, 3, 248, 124, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1708, 1, 0, 0, 0, 1707, 1702, 1, 0, 0, 0, 1707, 1706, 1, 0, 0, 0, 1708, 243, 1, 0, 0, 0, 1709, 1710, 5, 303, 0, 0, 1710, 1711, 3, 246, 123, 0, 1711, 1712, 5, 304, 0, 0, 1712, 245, 1, 0, 0, 0, 1713, 1718, 3, 248, 124, 0, 1714, 1715, 5, 305, 0, 0, 1715, 1717, 3, 248, 124, 0, 1716, 1714, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 247, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1724, 3, 250, 125, 0, 1722, 1724, 3, 302, 151, 0, 1723, 1721, 1, 0, 0, 0, 1723, 1722, 1, 0, 0, 0, 1724, 249, 1, 0, 0, 0, 1725, 1730, 3, 252, 126, 0, 1726, 1730, 3, 254, 127, 0, 1727, 1730, 3, 300, 150, 0, 1728, 1730, 3, 304, 152, 0, 1729, 1725, 1, 0, 0, 0, 1729, 1726, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1728, 1, 0, 0, 0, 1730, 251, 1, 0, 0, 0, 1731, 1732, 7, 31, 0, 0, 1732, 253, 1, 0, 0, 0, 1733, 1734, 5, 322, 0, 0, 1734, 255, 1, 0, 0, 0, 1735, 1736, 5, 40, 0, 0, 1736, 1737, 3, 204, 102, 0, 1737, 1738, 5, 41, 0, 0, 1738, 1739, 3, 204, 102, 0, 1739, 257, 1, 0, 0, 0, 1740, 1745, 3, 260, 130, 0, 1741, 1742, 5, 305, 0, 0, 1742, 1744, 3, 260, 130, 0, 1743, 1741, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 259, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1752, 5, 326, 0, 0, 1749, 1751, 5, 320, 0, 0, 1750, 1749, 1, 0, 0, 0, 1751, 1754, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 261, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1755, 1759, 7, 32, 0, 0, 1756, 1758, 7, 33, 0, 0, 1757, 1756, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 263, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1763, 5, 70, 0, 0, 1763, 1764, 3, 270, 135, 0, 1764, 265, 1, 0, 0, 0, 1765, 1766, 5, 128, 0, 0, 1766, 1767, 5, 25, 0, 0, 1767, 1768, 5, 27, 0, 0, 1768, 267, 1, 0, 0, 0, 1769, 1770, 5, 128, 0, 0, 1770, 1771, 5, 27, 0, 0, 1771, 269, 1, 0, 0, 0, 1772, 1773, 5, 303, 0, 0, 1773, 1778, 3, 272, 136, 0, 1774, 1775, 5, 305, 0, 0, 1775, 1777, 3, 272, 136, 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, 304, 0, 0, 1782, 271, 1, 0, 0, 0, 1783, 1788, 3, 274, 137, 0, 1784, 1786, 5, 292, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 276, 138, 0, 1788, 1785, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 273, 1, 0, 0, 0, 1790, 1794, 3, 248, 124, 0, 1791, 1794, 3, 218, 109, 0, 1792, 1794, 5, 322, 0, 0, 1793, 1790, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1792, 1, 0, 0, 0, 1794, 275, 1, 0, 0, 0, 1795, 1800, 5, 323, 0, 0, 1796, 1800, 5, 324, 0, 0, 1797, 1800, 3, 296, 148, 0, 1798, 1800, 5, 322, 0, 0, 1799, 1795, 1, 0, 0, 0, 1799, 1796, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1799, 1798, 1, 0, 0, 0, 1800, 277, 1, 0, 0, 0, 1801, 1808, 5, 23, 0, 0, 1802, 1803, 5, 298, 0, 0, 1803, 1808, 5, 298, 0, 0, 1804, 1808, 5, 22, 0, 0, 1805, 1806, 5, 297, 0, 0, 1806, 1808, 5, 297, 0, 0, 1807, 1801, 1, 0, 0, 0, 1807, 1802, 1, 0, 0, 0, 1807, 1804, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1808, 279, 1, 0, 0, 0, 1809, 1824, 5, 292, 0, 0, 1810, 1824, 5, 293, 0, 0, 1811, 1824, 5, 294, 0, 0, 1812, 1813, 5, 294, 0, 0, 1813, 1824, 5, 292, 0, 0, 1814, 1815, 5, 293, 0, 0, 1815, 1824, 5, 292, 0, 0, 1816, 1817, 5, 294, 0, 0, 1817, 1824, 5, 293, 0, 0, 1818, 1819, 5, 295, 0, 0, 1819, 1824, 5, 292, 0, 0, 1820, 1821, 5, 294, 0, 0, 1821, 1822, 5, 292, 0, 0, 1822, 1824, 5, 293, 0, 0, 1823, 1809, 1, 0, 0, 0, 1823, 1810, 1, 0, 0, 0, 1823, 1811, 1, 0, 0, 0, 1823, 1812, 1, 0, 0, 0, 1823, 1814, 1, 0, 0, 0, 1823, 1816, 1, 0, 0, 0, 1823, 1818, 1, 0, 0, 0, 1823, 1820, 1, 0, 0, 0, 1824, 281, 1, 0, 0, 0, 1825, 1826, 5, 294, 0, 0, 1826, 1833, 5, 294, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1833, 5, 293, 0, 0, 1829, 1833, 5, 298, 0, 0, 1830, 1833, 5, 299, 0, 0, 1831, 1833, 5, 297, 0, 0, 1832, 1825, 1, 0, 0, 0, 1832, 1827, 1, 0, 0, 0, 1832, 1829, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1832, 1831, 1, 0, 0, 0, 1833, 283, 1, 0, 0, 0, 1834, 1835, 7, 34, 0, 0, 1835, 285, 1, 0, 0, 0, 1836, 1837, 7, 35, 0, 0, 1837, 287, 1, 0, 0, 0, 1838, 1839, 3, 260, 130, 0, 1839, 289, 1, 0, 0, 0, 1840, 1853, 3, 292, 146, 0, 1841, 1853, 3, 294, 147, 0, 1842, 1853, 3, 224, 112, 0, 1843, 1844, 5, 314, 0, 0, 1844, 1853, 3, 294, 147, 0, 1845, 1853, 3, 296, 148, 0, 1846, 1853, 5, 324, 0, 0, 1847, 1853, 5, 325, 0, 0, 1848, 1850, 5, 25, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 290, 0, 0, 1852, 1840, 1, 0, 0, 0, 1852, 1841, 1, 0, 0, 0, 1852, 1842, 1, 0, 0, 0, 1852, 1843, 1, 0, 0, 0, 1852, 1845, 1, 0, 0, 0, 1852, 1846, 1, 0, 0, 0, 1852, 1847, 1, 0, 0, 0, 1852, 1849, 1, 0, 0, 0, 1853, 291, 1, 0, 0, 0, 1854, 1855, 5, 322, 0, 0, 1855, 293, 1, 0, 0, 0, 1856, 1857, 5, 323, 0, 0, 1857, 295, 1, 0, 0, 0, 1858, 1859, 7, 25, 0, 0, 1859, 297, 1, 0, 0, 0, 1860, 1861, 7, 36, 0, 0, 1861, 299, 1, 0, 0, 0, 1862, 1863, 7, 37, 0, 0, 1863, 301, 1, 0, 0, 0, 1864, 1865, 7, 38, 0, 0, 1865, 303, 1, 0, 0, 0, 1866, 1867, 7, 39, 0, 0, 1867, 305, 1, 0, 0, 0, 223, 314, 317, 319, 334, 352, 356, 365, 370, 377, 384, 388, 397, 409, 412, 419, 427, 432, 435, 442, 450, 454, 466, 474, 478, 499, 503, 507, 511, 520, 525, 529, 533, 537, 540, 544, 549, 555, 560, 565, 568, 572, 580, 588, 592, 596, 600, 604, 608, 612, 616, 620, 622, 632, 640, 664, 671, 686, 689, 697, 709, 733, 746, 751, 755, 763, 767, 775, 785, 789, 795, 799, 803, 806, 815, 819, 826, 829, 839, 849, 864, 875, 879, 886, 891, 897, 901, 908, 912, 916, 920, 928, 932, 937, 942, 948, 951, 955, 966, 975, 988, 1000, 1011, 1014, 1018, 1021, 1023, 1028, 1032, 1035, 1039, 1048, 1058, 1063, 1075, 1078, 1081, 1084, 1088, 1096, 1099, 1103, 1106, 1117, 1126, 1129, 1132, 1137, 1139, 1141, 1146, 1149, 1153, 1156, 1159, 1171, 1178, 1189, 1210, 1215, 1227, 1239, 1251, 1263, 1276, 1281, 1293, 1298, 1303, 1311, 1319, 1329, 1332, 1341, 1344, 1347, 1353, 1357, 1363, 1380, 1382, 1390, 1392, 1396, 1404, 1413, 1419, 1432, 1437, 1449, 1454, 1457, 1463, 1468, 1473, 1478, 1481, 1493, 1498, 1501, 1505, 1511, 1532, 1534, 1542, 1546, 1555, 1559, 1575, 1584, 1608, 1615, 1618, 1628, 1637, 1648, 1653, 1657, 1664, 1669, 1677, 1681, 1684, 1688, 1691, 1695, 1704, 1707, 1718, 1723, 1729, 1745, 1752, 1759, 1778, 1785, 1788, 1793, 1799, 1807, 1823, 1832, 1849, 1852] \ No newline at end of file +[4, 1, 329, 1906, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 323, 8, 2, 1, 2, 5, 2, 326, 8, 2, 10, 2, 12, 2, 329, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 343, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 361, 8, 5, 1, 6, 1, 6, 3, 6, 365, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 374, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 379, 8, 8, 1, 9, 1, 9, 1, 9, 5, 9, 384, 8, 9, 10, 9, 12, 9, 387, 9, 9, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 393, 8, 11, 1, 11, 1, 11, 3, 11, 397, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 404, 8, 12, 10, 12, 12, 12, 407, 9, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 418, 8, 13, 1, 13, 3, 13, 421, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 428, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 436, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 441, 8, 13, 1, 13, 3, 13, 444, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 451, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 459, 8, 16, 1, 17, 1, 17, 3, 17, 463, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 475, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 483, 8, 19, 1, 19, 1, 19, 3, 19, 487, 8, 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, 508, 8, 19, 1, 20, 1, 20, 3, 20, 512, 8, 20, 1, 21, 1, 21, 3, 21, 516, 8, 21, 1, 21, 1, 21, 3, 21, 520, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 527, 8, 21, 10, 21, 12, 21, 530, 9, 21, 1, 21, 1, 21, 3, 21, 534, 8, 21, 1, 21, 1, 21, 3, 21, 538, 8, 21, 1, 21, 1, 21, 3, 21, 542, 8, 21, 1, 21, 1, 21, 3, 21, 546, 8, 21, 1, 21, 3, 21, 549, 8, 21, 1, 21, 1, 21, 3, 21, 553, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 558, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 564, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 569, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 574, 8, 24, 1, 24, 3, 24, 577, 8, 24, 1, 25, 1, 25, 3, 25, 581, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 587, 8, 26, 10, 26, 12, 26, 590, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 597, 8, 27, 1, 27, 1, 27, 3, 27, 601, 8, 27, 1, 27, 1, 27, 3, 27, 605, 8, 27, 1, 27, 1, 27, 3, 27, 609, 8, 27, 1, 27, 1, 27, 3, 27, 613, 8, 27, 1, 27, 1, 27, 3, 27, 617, 8, 27, 1, 27, 1, 27, 3, 27, 621, 8, 27, 1, 27, 1, 27, 3, 27, 625, 8, 27, 1, 27, 1, 27, 3, 27, 629, 8, 27, 3, 27, 631, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 641, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 649, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 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, 5, 33, 671, 8, 33, 10, 33, 12, 33, 674, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 680, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 695, 8, 36, 1, 36, 3, 36, 698, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 706, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 718, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 740, 8, 45, 10, 45, 12, 45, 743, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 753, 8, 46, 10, 46, 12, 46, 756, 9, 46, 1, 46, 1, 46, 3, 46, 760, 8, 46, 1, 47, 1, 47, 3, 47, 764, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 770, 8, 48, 10, 48, 12, 48, 773, 9, 48, 1, 48, 3, 48, 776, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 784, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 794, 8, 52, 1, 52, 1, 52, 3, 52, 798, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 804, 8, 53, 1, 53, 1, 53, 3, 53, 808, 8, 53, 1, 53, 1, 53, 3, 53, 812, 8, 53, 1, 53, 3, 53, 815, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 824, 8, 54, 1, 54, 1, 54, 3, 54, 828, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 835, 8, 54, 1, 54, 3, 54, 838, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 846, 8, 55, 10, 55, 12, 55, 849, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 856, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 864, 8, 57, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 883, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 902, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 913, 8, 66, 1, 66, 1, 66, 3, 66, 917, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 924, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 929, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 935, 8, 68, 1, 68, 1, 68, 3, 68, 939, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 946, 8, 69, 1, 69, 1, 69, 3, 69, 950, 8, 69, 1, 70, 1, 70, 3, 70, 954, 8, 70, 1, 70, 1, 70, 3, 70, 958, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 966, 8, 71, 1, 71, 1, 71, 3, 71, 970, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 975, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 980, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 986, 8, 73, 1, 73, 3, 73, 989, 8, 73, 1, 73, 1, 73, 3, 73, 993, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1002, 8, 75, 10, 75, 12, 75, 1005, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1011, 8, 76, 10, 76, 12, 76, 1014, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1024, 8, 77, 11, 77, 12, 77, 1025, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1036, 8, 78, 10, 78, 12, 78, 1039, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1049, 8, 78, 1, 78, 3, 78, 1052, 8, 78, 1, 78, 1, 78, 3, 78, 1056, 8, 78, 1, 78, 3, 78, 1059, 8, 78, 3, 78, 1061, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1066, 8, 78, 1, 78, 1, 78, 3, 78, 1070, 8, 78, 1, 78, 3, 78, 1073, 8, 78, 5, 78, 1075, 8, 78, 10, 78, 12, 78, 1078, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1084, 8, 79, 10, 79, 12, 79, 1087, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1094, 8, 80, 10, 80, 12, 80, 1097, 9, 80, 1, 80, 1, 80, 3, 80, 1101, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 1113, 8, 82, 1, 82, 3, 82, 1116, 8, 82, 1, 82, 3, 82, 1119, 8, 82, 1, 82, 3, 82, 1122, 8, 82, 1, 83, 1, 83, 3, 83, 1126, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1132, 8, 83, 10, 83, 12, 83, 1135, 9, 83, 3, 83, 1137, 8, 83, 1, 84, 1, 84, 3, 84, 1141, 8, 84, 1, 84, 3, 84, 1144, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1153, 8, 86, 10, 86, 12, 86, 1156, 9, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1164, 8, 86, 1, 86, 3, 86, 1167, 8, 86, 1, 86, 3, 86, 1170, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1175, 8, 86, 5, 86, 1177, 8, 86, 10, 86, 12, 86, 1180, 9, 86, 1, 87, 1, 87, 3, 87, 1184, 8, 87, 1, 88, 3, 88, 1187, 8, 88, 1, 88, 1, 88, 3, 88, 1191, 8, 88, 1, 88, 3, 88, 1194, 8, 88, 1, 88, 3, 88, 1197, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1207, 8, 88, 10, 88, 12, 88, 1210, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1216, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1227, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 1246, 8, 92, 10, 92, 12, 92, 1249, 9, 92, 1, 92, 1, 92, 3, 92, 1253, 8, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 1263, 8, 94, 10, 94, 12, 94, 1266, 9, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1275, 8, 95, 10, 95, 12, 95, 1278, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1287, 8, 95, 10, 95, 12, 95, 1290, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1299, 8, 95, 10, 95, 12, 95, 1302, 9, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1312, 8, 95, 10, 95, 12, 95, 1315, 9, 95, 1, 95, 1, 95, 3, 95, 1319, 8, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1329, 8, 97, 10, 97, 12, 97, 1332, 9, 97, 1, 98, 1, 98, 3, 98, 1336, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1341, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 1347, 8, 100, 10, 100, 12, 100, 1350, 9, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1357, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1365, 8, 102, 10, 102, 12, 102, 1368, 9, 102, 3, 102, 1370, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1377, 8, 102, 10, 102, 12, 102, 1380, 9, 102, 3, 102, 1382, 8, 102, 1, 102, 3, 102, 1385, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 1391, 8, 103, 1, 103, 1, 103, 3, 103, 1395, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1401, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1418, 8, 107, 3, 107, 1420, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1428, 8, 107, 10, 107, 12, 107, 1431, 9, 107, 1, 108, 3, 108, 1434, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1442, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1449, 8, 108, 10, 108, 12, 108, 1452, 9, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1457, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1470, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1475, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1485, 8, 108, 10, 108, 12, 108, 1488, 9, 108, 1, 108, 1, 108, 3, 108, 1492, 8, 108, 1, 108, 3, 108, 1495, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1501, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1506, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1511, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1516, 8, 108, 1, 109, 3, 109, 1519, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 1529, 8, 109, 10, 109, 12, 109, 1532, 9, 109, 1, 109, 1, 109, 3, 109, 1536, 8, 109, 1, 109, 3, 109, 1539, 8, 109, 1, 109, 1, 109, 3, 109, 1543, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1549, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1570, 8, 110, 10, 110, 12, 110, 1573, 9, 110, 1, 111, 1, 111, 1, 111, 4, 111, 1578, 8, 111, 11, 111, 12, 111, 1579, 1, 111, 1, 111, 3, 111, 1584, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 4, 111, 1591, 8, 111, 11, 111, 12, 111, 1592, 1, 111, 1, 111, 3, 111, 1597, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1613, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1622, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1646, 8, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1651, 8, 111, 10, 111, 12, 111, 1654, 9, 111, 3, 111, 1656, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1666, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1673, 8, 111, 10, 111, 12, 111, 1676, 9, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 1686, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1691, 8, 116, 1, 117, 1, 117, 3, 117, 1695, 8, 117, 1, 118, 1, 118, 1, 118, 4, 118, 1700, 8, 118, 11, 118, 12, 118, 1701, 1, 119, 1, 119, 1, 119, 3, 119, 1707, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 3, 121, 1715, 8, 121, 1, 121, 1, 121, 3, 121, 1719, 8, 121, 1, 122, 3, 122, 1722, 8, 122, 1, 122, 1, 122, 3, 122, 1726, 8, 122, 1, 123, 3, 123, 1729, 8, 123, 1, 123, 1, 123, 3, 123, 1733, 8, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 4, 125, 1740, 8, 125, 11, 125, 12, 125, 1741, 1, 125, 3, 125, 1745, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 5, 127, 1754, 8, 127, 10, 127, 12, 127, 1757, 9, 127, 1, 128, 1, 128, 3, 128, 1761, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1767, 8, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 5, 133, 1781, 8, 133, 10, 133, 12, 133, 1784, 9, 133, 1, 134, 1, 134, 5, 134, 1788, 8, 134, 10, 134, 12, 134, 1791, 9, 134, 1, 135, 1, 135, 5, 135, 1795, 8, 135, 10, 135, 12, 135, 1798, 9, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 1814, 8, 139, 10, 139, 12, 139, 1817, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 1823, 8, 140, 1, 140, 3, 140, 1826, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 1831, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1837, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1845, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1861, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1870, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 1887, 8, 149, 1, 149, 3, 149, 1890, 8, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 2, 1789, 1796, 5, 156, 172, 214, 220, 222, 157, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 0, 40, 2, 0, 36, 36, 84, 84, 1, 0, 87, 89, 2, 0, 193, 193, 253, 255, 2, 0, 192, 192, 239, 239, 2, 0, 5, 5, 24, 24, 2, 0, 74, 74, 76, 76, 2, 0, 6, 6, 82, 82, 1, 0, 246, 250, 3, 0, 283, 283, 288, 288, 291, 291, 6, 0, 265, 265, 268, 272, 276, 280, 284, 284, 286, 286, 292, 292, 1, 0, 70, 71, 2, 0, 273, 275, 281, 282, 2, 0, 266, 266, 287, 287, 1, 0, 233, 234, 3, 0, 8, 8, 102, 102, 236, 236, 1, 0, 233, 235, 2, 0, 167, 167, 237, 238, 1, 0, 241, 243, 2, 0, 184, 184, 186, 186, 2, 0, 83, 83, 140, 140, 2, 0, 105, 106, 108, 108, 2, 0, 48, 49, 51, 52, 1, 0, 35, 36, 2, 0, 67, 67, 69, 69, 1, 0, 8, 9, 1, 0, 32, 33, 2, 0, 297, 297, 315, 316, 4, 0, 132, 132, 313, 313, 317, 317, 320, 320, 2, 0, 315, 316, 318, 318, 1, 0, 315, 316, 1, 0, 324, 325, 2, 0, 324, 324, 327, 327, 1, 0, 327, 328, 1, 0, 321, 322, 4, 0, 132, 132, 313, 313, 315, 317, 319, 320, 3, 0, 25, 25, 296, 297, 315, 316, 2, 0, 8, 8, 10, 10, 32, 0, 6, 6, 13, 17, 20, 21, 26, 30, 32, 32, 34, 36, 38, 38, 50, 50, 56, 69, 72, 72, 75, 77, 80, 81, 84, 85, 90, 93, 95, 97, 99, 99, 102, 104, 107, 107, 110, 124, 128, 142, 144, 184, 186, 203, 205, 212, 214, 234, 236, 237, 239, 240, 253, 254, 258, 260, 265, 273, 276, 278, 280, 285, 287, 292, 6, 0, 45, 46, 48, 52, 54, 55, 105, 108, 143, 143, 223, 223, 24, 0, 4, 42, 44, 44, 47, 47, 53, 53, 56, 70, 72, 77, 80, 81, 83, 85, 90, 99, 102, 104, 109, 142, 144, 176, 178, 212, 214, 222, 224, 234, 236, 237, 239, 240, 253, 254, 256, 256, 258, 260, 265, 273, 276, 278, 280, 285, 287, 292, 2077, 0, 314, 1, 0, 0, 0, 2, 317, 1, 0, 0, 0, 4, 327, 1, 0, 0, 0, 6, 342, 1, 0, 0, 0, 8, 344, 1, 0, 0, 0, 10, 360, 1, 0, 0, 0, 12, 364, 1, 0, 0, 0, 14, 366, 1, 0, 0, 0, 16, 369, 1, 0, 0, 0, 18, 380, 1, 0, 0, 0, 20, 388, 1, 0, 0, 0, 22, 396, 1, 0, 0, 0, 24, 398, 1, 0, 0, 0, 26, 443, 1, 0, 0, 0, 28, 445, 1, 0, 0, 0, 30, 452, 1, 0, 0, 0, 32, 456, 1, 0, 0, 0, 34, 460, 1, 0, 0, 0, 36, 464, 1, 0, 0, 0, 38, 507, 1, 0, 0, 0, 40, 511, 1, 0, 0, 0, 42, 513, 1, 0, 0, 0, 44, 554, 1, 0, 0, 0, 46, 568, 1, 0, 0, 0, 48, 570, 1, 0, 0, 0, 50, 580, 1, 0, 0, 0, 52, 582, 1, 0, 0, 0, 54, 630, 1, 0, 0, 0, 56, 632, 1, 0, 0, 0, 58, 636, 1, 0, 0, 0, 60, 644, 1, 0, 0, 0, 62, 652, 1, 0, 0, 0, 64, 656, 1, 0, 0, 0, 66, 663, 1, 0, 0, 0, 68, 679, 1, 0, 0, 0, 70, 686, 1, 0, 0, 0, 72, 689, 1, 0, 0, 0, 74, 699, 1, 0, 0, 0, 76, 701, 1, 0, 0, 0, 78, 707, 1, 0, 0, 0, 80, 709, 1, 0, 0, 0, 82, 717, 1, 0, 0, 0, 84, 725, 1, 0, 0, 0, 86, 727, 1, 0, 0, 0, 88, 731, 1, 0, 0, 0, 90, 735, 1, 0, 0, 0, 92, 759, 1, 0, 0, 0, 94, 763, 1, 0, 0, 0, 96, 765, 1, 0, 0, 0, 98, 777, 1, 0, 0, 0, 100, 783, 1, 0, 0, 0, 102, 785, 1, 0, 0, 0, 104, 790, 1, 0, 0, 0, 106, 801, 1, 0, 0, 0, 108, 819, 1, 0, 0, 0, 110, 839, 1, 0, 0, 0, 112, 850, 1, 0, 0, 0, 114, 852, 1, 0, 0, 0, 116, 865, 1, 0, 0, 0, 118, 872, 1, 0, 0, 0, 120, 875, 1, 0, 0, 0, 122, 884, 1, 0, 0, 0, 124, 888, 1, 0, 0, 0, 126, 892, 1, 0, 0, 0, 128, 895, 1, 0, 0, 0, 130, 903, 1, 0, 0, 0, 132, 908, 1, 0, 0, 0, 134, 925, 1, 0, 0, 0, 136, 932, 1, 0, 0, 0, 138, 942, 1, 0, 0, 0, 140, 951, 1, 0, 0, 0, 142, 961, 1, 0, 0, 0, 144, 979, 1, 0, 0, 0, 146, 981, 1, 0, 0, 0, 148, 994, 1, 0, 0, 0, 150, 997, 1, 0, 0, 0, 152, 1006, 1, 0, 0, 0, 154, 1017, 1, 0, 0, 0, 156, 1060, 1, 0, 0, 0, 158, 1079, 1, 0, 0, 0, 160, 1088, 1, 0, 0, 0, 162, 1107, 1, 0, 0, 0, 164, 1109, 1, 0, 0, 0, 166, 1123, 1, 0, 0, 0, 168, 1138, 1, 0, 0, 0, 170, 1145, 1, 0, 0, 0, 172, 1148, 1, 0, 0, 0, 174, 1181, 1, 0, 0, 0, 176, 1226, 1, 0, 0, 0, 178, 1228, 1, 0, 0, 0, 180, 1230, 1, 0, 0, 0, 182, 1236, 1, 0, 0, 0, 184, 1252, 1, 0, 0, 0, 186, 1254, 1, 0, 0, 0, 188, 1257, 1, 0, 0, 0, 190, 1318, 1, 0, 0, 0, 192, 1320, 1, 0, 0, 0, 194, 1323, 1, 0, 0, 0, 196, 1333, 1, 0, 0, 0, 198, 1337, 1, 0, 0, 0, 200, 1342, 1, 0, 0, 0, 202, 1351, 1, 0, 0, 0, 204, 1356, 1, 0, 0, 0, 206, 1388, 1, 0, 0, 0, 208, 1400, 1, 0, 0, 0, 210, 1402, 1, 0, 0, 0, 212, 1405, 1, 0, 0, 0, 214, 1419, 1, 0, 0, 0, 216, 1515, 1, 0, 0, 0, 218, 1542, 1, 0, 0, 0, 220, 1548, 1, 0, 0, 0, 222, 1665, 1, 0, 0, 0, 224, 1677, 1, 0, 0, 0, 226, 1679, 1, 0, 0, 0, 228, 1681, 1, 0, 0, 0, 230, 1685, 1, 0, 0, 0, 232, 1687, 1, 0, 0, 0, 234, 1692, 1, 0, 0, 0, 236, 1699, 1, 0, 0, 0, 238, 1703, 1, 0, 0, 0, 240, 1708, 1, 0, 0, 0, 242, 1718, 1, 0, 0, 0, 244, 1721, 1, 0, 0, 0, 246, 1728, 1, 0, 0, 0, 248, 1734, 1, 0, 0, 0, 250, 1744, 1, 0, 0, 0, 252, 1746, 1, 0, 0, 0, 254, 1750, 1, 0, 0, 0, 256, 1760, 1, 0, 0, 0, 258, 1766, 1, 0, 0, 0, 260, 1768, 1, 0, 0, 0, 262, 1770, 1, 0, 0, 0, 264, 1772, 1, 0, 0, 0, 266, 1777, 1, 0, 0, 0, 268, 1785, 1, 0, 0, 0, 270, 1792, 1, 0, 0, 0, 272, 1799, 1, 0, 0, 0, 274, 1802, 1, 0, 0, 0, 276, 1806, 1, 0, 0, 0, 278, 1809, 1, 0, 0, 0, 280, 1820, 1, 0, 0, 0, 282, 1830, 1, 0, 0, 0, 284, 1836, 1, 0, 0, 0, 286, 1844, 1, 0, 0, 0, 288, 1860, 1, 0, 0, 0, 290, 1869, 1, 0, 0, 0, 292, 1871, 1, 0, 0, 0, 294, 1873, 1, 0, 0, 0, 296, 1875, 1, 0, 0, 0, 298, 1889, 1, 0, 0, 0, 300, 1891, 1, 0, 0, 0, 302, 1893, 1, 0, 0, 0, 304, 1895, 1, 0, 0, 0, 306, 1897, 1, 0, 0, 0, 308, 1899, 1, 0, 0, 0, 310, 1901, 1, 0, 0, 0, 312, 1903, 1, 0, 0, 0, 314, 315, 3, 2, 1, 0, 315, 316, 5, 0, 0, 1, 316, 1, 1, 0, 0, 0, 317, 318, 3, 4, 2, 0, 318, 319, 5, 0, 0, 1, 319, 3, 1, 0, 0, 0, 320, 322, 3, 6, 3, 0, 321, 323, 5, 307, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 326, 1, 0, 0, 0, 324, 326, 3, 8, 4, 0, 325, 320, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 5, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 330, 343, 3, 10, 5, 0, 331, 343, 3, 12, 6, 0, 332, 343, 3, 14, 7, 0, 333, 343, 3, 16, 8, 0, 334, 343, 3, 22, 11, 0, 335, 343, 3, 26, 13, 0, 336, 343, 3, 28, 14, 0, 337, 343, 3, 30, 15, 0, 338, 343, 3, 32, 16, 0, 339, 343, 3, 34, 17, 0, 340, 343, 3, 36, 18, 0, 341, 343, 3, 38, 19, 0, 342, 330, 1, 0, 0, 0, 342, 331, 1, 0, 0, 0, 342, 332, 1, 0, 0, 0, 342, 333, 1, 0, 0, 0, 342, 334, 1, 0, 0, 0, 342, 335, 1, 0, 0, 0, 342, 336, 1, 0, 0, 0, 342, 337, 1, 0, 0, 0, 342, 338, 1, 0, 0, 0, 342, 339, 1, 0, 0, 0, 342, 340, 1, 0, 0, 0, 342, 341, 1, 0, 0, 0, 343, 7, 1, 0, 0, 0, 344, 345, 5, 307, 0, 0, 345, 9, 1, 0, 0, 0, 346, 361, 3, 40, 20, 0, 347, 361, 3, 104, 52, 0, 348, 361, 3, 106, 53, 0, 349, 361, 3, 108, 54, 0, 350, 361, 3, 102, 51, 0, 351, 361, 3, 114, 57, 0, 352, 361, 3, 128, 64, 0, 353, 361, 3, 130, 65, 0, 354, 361, 3, 132, 66, 0, 355, 361, 3, 134, 67, 0, 356, 361, 3, 136, 68, 0, 357, 361, 3, 138, 69, 0, 358, 361, 3, 140, 70, 0, 359, 361, 3, 142, 71, 0, 360, 346, 1, 0, 0, 0, 360, 347, 1, 0, 0, 0, 360, 348, 1, 0, 0, 0, 360, 349, 1, 0, 0, 0, 360, 350, 1, 0, 0, 0, 360, 351, 1, 0, 0, 0, 360, 352, 1, 0, 0, 0, 360, 353, 1, 0, 0, 0, 360, 354, 1, 0, 0, 0, 360, 355, 1, 0, 0, 0, 360, 356, 1, 0, 0, 0, 360, 357, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 360, 359, 1, 0, 0, 0, 361, 11, 1, 0, 0, 0, 362, 365, 3, 156, 78, 0, 363, 365, 3, 144, 72, 0, 364, 362, 1, 0, 0, 0, 364, 363, 1, 0, 0, 0, 365, 13, 1, 0, 0, 0, 366, 367, 7, 0, 0, 0, 367, 368, 3, 268, 134, 0, 368, 15, 1, 0, 0, 0, 369, 373, 5, 85, 0, 0, 370, 374, 3, 18, 9, 0, 371, 372, 5, 86, 0, 0, 372, 374, 5, 37, 0, 0, 373, 370, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 378, 1, 0, 0, 0, 375, 379, 3, 12, 6, 0, 376, 379, 3, 146, 73, 0, 377, 379, 3, 154, 77, 0, 378, 375, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 377, 1, 0, 0, 0, 379, 17, 1, 0, 0, 0, 380, 385, 3, 20, 10, 0, 381, 382, 5, 306, 0, 0, 382, 384, 3, 20, 10, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 19, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 389, 7, 1, 0, 0, 389, 21, 1, 0, 0, 0, 390, 392, 5, 99, 0, 0, 391, 393, 5, 239, 0, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 397, 3, 268, 134, 0, 395, 397, 3, 24, 12, 0, 396, 390, 1, 0, 0, 0, 396, 395, 1, 0, 0, 0, 397, 23, 1, 0, 0, 0, 398, 399, 5, 99, 0, 0, 399, 400, 5, 101, 0, 0, 400, 405, 3, 268, 134, 0, 401, 402, 5, 306, 0, 0, 402, 404, 3, 268, 134, 0, 403, 401, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 25, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 408, 409, 5, 95, 0, 0, 409, 444, 7, 2, 0, 0, 410, 411, 5, 95, 0, 0, 411, 412, 5, 66, 0, 0, 412, 444, 7, 3, 0, 0, 413, 414, 5, 95, 0, 0, 414, 417, 5, 96, 0, 0, 415, 416, 7, 4, 0, 0, 416, 418, 3, 268, 134, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 218, 109, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 444, 1, 0, 0, 0, 422, 423, 5, 95, 0, 0, 423, 424, 5, 97, 0, 0, 424, 425, 7, 4, 0, 0, 425, 427, 3, 268, 134, 0, 426, 428, 3, 218, 109, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 444, 1, 0, 0, 0, 429, 430, 5, 95, 0, 0, 430, 431, 5, 73, 0, 0, 431, 432, 7, 5, 0, 0, 432, 444, 3, 268, 134, 0, 433, 435, 5, 95, 0, 0, 434, 436, 5, 53, 0, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 444, 5, 103, 0, 0, 438, 440, 5, 95, 0, 0, 439, 441, 5, 52, 0, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 444, 5, 101, 0, 0, 443, 408, 1, 0, 0, 0, 443, 410, 1, 0, 0, 0, 443, 413, 1, 0, 0, 0, 443, 422, 1, 0, 0, 0, 443, 429, 1, 0, 0, 0, 443, 433, 1, 0, 0, 0, 443, 438, 1, 0, 0, 0, 444, 27, 1, 0, 0, 0, 445, 446, 5, 212, 0, 0, 446, 447, 5, 100, 0, 0, 447, 450, 3, 268, 134, 0, 448, 449, 5, 70, 0, 0, 449, 451, 3, 278, 139, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 29, 1, 0, 0, 0, 452, 453, 5, 213, 0, 0, 453, 454, 5, 100, 0, 0, 454, 455, 3, 268, 134, 0, 455, 31, 1, 0, 0, 0, 456, 458, 5, 116, 0, 0, 457, 459, 3, 280, 140, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 33, 1, 0, 0, 0, 460, 462, 5, 117, 0, 0, 461, 463, 3, 282, 141, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 35, 1, 0, 0, 0, 464, 465, 7, 6, 0, 0, 465, 466, 5, 244, 0, 0, 466, 467, 3, 112, 56, 0, 467, 37, 1, 0, 0, 0, 468, 469, 5, 6, 0, 0, 469, 470, 5, 244, 0, 0, 470, 471, 5, 70, 0, 0, 471, 474, 5, 329, 0, 0, 472, 473, 5, 7, 0, 0, 473, 475, 3, 268, 134, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 508, 1, 0, 0, 0, 476, 477, 5, 6, 0, 0, 477, 478, 5, 245, 0, 0, 478, 479, 5, 70, 0, 0, 479, 482, 5, 329, 0, 0, 480, 481, 5, 7, 0, 0, 481, 483, 3, 268, 134, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 485, 5, 113, 0, 0, 485, 487, 3, 268, 134, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 508, 1, 0, 0, 0, 488, 489, 5, 6, 0, 0, 489, 490, 7, 7, 0, 0, 490, 491, 5, 70, 0, 0, 491, 492, 5, 329, 0, 0, 492, 493, 5, 113, 0, 0, 493, 508, 3, 268, 134, 0, 494, 495, 5, 6, 0, 0, 495, 496, 5, 251, 0, 0, 496, 508, 5, 329, 0, 0, 497, 498, 5, 6, 0, 0, 498, 499, 5, 252, 0, 0, 499, 500, 5, 245, 0, 0, 500, 501, 5, 70, 0, 0, 501, 502, 5, 329, 0, 0, 502, 503, 5, 113, 0, 0, 503, 504, 3, 268, 134, 0, 504, 505, 5, 258, 0, 0, 505, 506, 3, 268, 134, 0, 506, 508, 1, 0, 0, 0, 507, 468, 1, 0, 0, 0, 507, 476, 1, 0, 0, 0, 507, 488, 1, 0, 0, 0, 507, 494, 1, 0, 0, 0, 507, 497, 1, 0, 0, 0, 508, 39, 1, 0, 0, 0, 509, 512, 3, 42, 21, 0, 510, 512, 3, 44, 22, 0, 511, 509, 1, 0, 0, 0, 511, 510, 1, 0, 0, 0, 512, 41, 1, 0, 0, 0, 513, 515, 5, 73, 0, 0, 514, 516, 5, 166, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 519, 5, 74, 0, 0, 518, 520, 3, 274, 137, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 3, 98, 49, 0, 522, 523, 5, 304, 0, 0, 523, 528, 3, 46, 23, 0, 524, 525, 5, 306, 0, 0, 525, 527, 3, 46, 23, 0, 526, 524, 1, 0, 0, 0, 527, 530, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 533, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 531, 532, 5, 306, 0, 0, 532, 534, 3, 80, 40, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 537, 1, 0, 0, 0, 535, 536, 5, 306, 0, 0, 536, 538, 3, 82, 41, 0, 537, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 541, 1, 0, 0, 0, 539, 540, 5, 306, 0, 0, 540, 542, 3, 86, 43, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 5, 305, 0, 0, 544, 546, 3, 70, 35, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 548, 1, 0, 0, 0, 547, 549, 3, 88, 44, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 3, 272, 136, 0, 551, 553, 3, 96, 48, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 43, 1, 0, 0, 0, 554, 555, 5, 73, 0, 0, 555, 557, 5, 74, 0, 0, 556, 558, 3, 274, 137, 0, 557, 556, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 3, 98, 49, 0, 560, 563, 3, 272, 136, 0, 561, 562, 5, 7, 0, 0, 562, 564, 3, 156, 78, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 45, 1, 0, 0, 0, 565, 569, 3, 48, 24, 0, 566, 569, 3, 72, 36, 0, 567, 569, 3, 76, 38, 0, 568, 565, 1, 0, 0, 0, 568, 566, 1, 0, 0, 0, 568, 567, 1, 0, 0, 0, 569, 47, 1, 0, 0, 0, 570, 571, 3, 50, 25, 0, 571, 573, 3, 54, 27, 0, 572, 574, 3, 68, 34, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 1, 0, 0, 0, 575, 577, 3, 70, 35, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 49, 1, 0, 0, 0, 578, 581, 3, 270, 135, 0, 579, 581, 3, 212, 106, 0, 580, 578, 1, 0, 0, 0, 580, 579, 1, 0, 0, 0, 581, 51, 1, 0, 0, 0, 582, 583, 5, 304, 0, 0, 583, 588, 3, 50, 25, 0, 584, 585, 5, 306, 0, 0, 585, 587, 3, 50, 25, 0, 586, 584, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 591, 592, 5, 305, 0, 0, 592, 53, 1, 0, 0, 0, 593, 631, 7, 8, 0, 0, 594, 596, 7, 9, 0, 0, 595, 597, 3, 56, 28, 0, 596, 595, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 631, 1, 0, 0, 0, 598, 600, 5, 285, 0, 0, 599, 601, 3, 56, 28, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 608, 1, 0, 0, 0, 602, 604, 7, 10, 0, 0, 603, 605, 5, 224, 0, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 5, 284, 0, 0, 607, 609, 5, 264, 0, 0, 608, 602, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 631, 1, 0, 0, 0, 610, 612, 7, 11, 0, 0, 611, 613, 3, 58, 29, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 631, 1, 0, 0, 0, 614, 616, 7, 12, 0, 0, 615, 617, 3, 62, 31, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 631, 1, 0, 0, 0, 618, 620, 5, 267, 0, 0, 619, 621, 3, 64, 32, 0, 620, 619, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 631, 1, 0, 0, 0, 622, 624, 5, 290, 0, 0, 623, 625, 3, 66, 33, 0, 624, 623, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 631, 1, 0, 0, 0, 626, 628, 5, 289, 0, 0, 627, 629, 3, 60, 30, 0, 628, 627, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 631, 1, 0, 0, 0, 630, 593, 1, 0, 0, 0, 630, 594, 1, 0, 0, 0, 630, 598, 1, 0, 0, 0, 630, 610, 1, 0, 0, 0, 630, 614, 1, 0, 0, 0, 630, 618, 1, 0, 0, 0, 630, 622, 1, 0, 0, 0, 630, 626, 1, 0, 0, 0, 631, 55, 1, 0, 0, 0, 632, 633, 5, 304, 0, 0, 633, 634, 3, 302, 151, 0, 634, 635, 5, 305, 0, 0, 635, 57, 1, 0, 0, 0, 636, 637, 5, 304, 0, 0, 637, 640, 3, 302, 151, 0, 638, 639, 5, 306, 0, 0, 639, 641, 3, 302, 151, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 5, 305, 0, 0, 643, 59, 1, 0, 0, 0, 644, 645, 5, 304, 0, 0, 645, 648, 3, 300, 150, 0, 646, 647, 5, 306, 0, 0, 647, 649, 3, 300, 150, 0, 648, 646, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 5, 305, 0, 0, 651, 61, 1, 0, 0, 0, 652, 653, 5, 295, 0, 0, 653, 654, 3, 54, 27, 0, 654, 655, 5, 294, 0, 0, 655, 63, 1, 0, 0, 0, 656, 657, 5, 295, 0, 0, 657, 658, 3, 54, 27, 0, 658, 659, 5, 306, 0, 0, 659, 660, 3, 54, 27, 0, 660, 661, 1, 0, 0, 0, 661, 662, 5, 294, 0, 0, 662, 65, 1, 0, 0, 0, 663, 664, 5, 295, 0, 0, 664, 665, 3, 50, 25, 0, 665, 672, 3, 54, 27, 0, 666, 667, 5, 306, 0, 0, 667, 668, 3, 50, 25, 0, 668, 669, 3, 54, 27, 0, 669, 671, 1, 0, 0, 0, 670, 666, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 676, 5, 294, 0, 0, 676, 67, 1, 0, 0, 0, 677, 678, 5, 185, 0, 0, 678, 680, 3, 84, 42, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 5, 256, 0, 0, 682, 683, 5, 258, 0, 0, 683, 684, 5, 25, 0, 0, 684, 685, 5, 261, 0, 0, 685, 69, 1, 0, 0, 0, 686, 687, 5, 115, 0, 0, 687, 688, 5, 323, 0, 0, 688, 71, 1, 0, 0, 0, 689, 690, 3, 50, 25, 0, 690, 691, 3, 54, 27, 0, 691, 694, 5, 262, 0, 0, 692, 693, 5, 5, 0, 0, 693, 695, 3, 74, 37, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 697, 1, 0, 0, 0, 696, 698, 5, 263, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 73, 1, 0, 0, 0, 699, 700, 5, 323, 0, 0, 700, 75, 1, 0, 0, 0, 701, 702, 3, 50, 25, 0, 702, 703, 5, 7, 0, 0, 703, 705, 3, 78, 39, 0, 704, 706, 3, 70, 35, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 77, 1, 0, 0, 0, 707, 708, 3, 212, 106, 0, 708, 79, 1, 0, 0, 0, 709, 710, 5, 226, 0, 0, 710, 711, 5, 37, 0, 0, 711, 712, 3, 212, 106, 0, 712, 713, 5, 7, 0, 0, 713, 714, 3, 212, 106, 0, 714, 81, 1, 0, 0, 0, 715, 716, 5, 185, 0, 0, 716, 718, 3, 84, 42, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 5, 256, 0, 0, 720, 721, 5, 258, 0, 0, 721, 722, 3, 52, 26, 0, 722, 723, 5, 25, 0, 0, 723, 724, 5, 261, 0, 0, 724, 83, 1, 0, 0, 0, 725, 726, 3, 256, 128, 0, 726, 85, 1, 0, 0, 0, 727, 728, 5, 259, 0, 0, 728, 729, 5, 37, 0, 0, 729, 730, 5, 260, 0, 0, 730, 87, 1, 0, 0, 0, 731, 732, 5, 200, 0, 0, 732, 733, 5, 13, 0, 0, 733, 734, 3, 90, 45, 0, 734, 89, 1, 0, 0, 0, 735, 736, 5, 304, 0, 0, 736, 741, 3, 92, 46, 0, 737, 738, 5, 306, 0, 0, 738, 740, 3, 92, 46, 0, 739, 737, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 745, 5, 305, 0, 0, 745, 91, 1, 0, 0, 0, 746, 760, 3, 230, 115, 0, 747, 748, 3, 256, 128, 0, 748, 749, 5, 304, 0, 0, 749, 754, 3, 94, 47, 0, 750, 751, 5, 306, 0, 0, 751, 753, 3, 94, 47, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 758, 5, 305, 0, 0, 758, 760, 1, 0, 0, 0, 759, 746, 1, 0, 0, 0, 759, 747, 1, 0, 0, 0, 760, 93, 1, 0, 0, 0, 761, 764, 3, 230, 115, 0, 762, 764, 3, 298, 149, 0, 763, 761, 1, 0, 0, 0, 763, 762, 1, 0, 0, 0, 764, 95, 1, 0, 0, 0, 765, 766, 5, 29, 0, 0, 766, 775, 3, 98, 49, 0, 767, 771, 5, 304, 0, 0, 768, 770, 3, 100, 50, 0, 769, 768, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 776, 5, 305, 0, 0, 775, 767, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 97, 1, 0, 0, 0, 777, 778, 3, 268, 134, 0, 778, 99, 1, 0, 0, 0, 779, 780, 7, 13, 0, 0, 780, 784, 7, 14, 0, 0, 781, 782, 7, 15, 0, 0, 782, 784, 7, 16, 0, 0, 783, 779, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 784, 101, 1, 0, 0, 0, 785, 786, 5, 73, 0, 0, 786, 787, 5, 239, 0, 0, 787, 788, 3, 268, 134, 0, 788, 789, 3, 272, 136, 0, 789, 103, 1, 0, 0, 0, 790, 791, 5, 73, 0, 0, 791, 793, 5, 192, 0, 0, 792, 794, 3, 274, 137, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 797, 3, 268, 134, 0, 796, 798, 3, 70, 35, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 3, 272, 136, 0, 800, 105, 1, 0, 0, 0, 801, 803, 5, 73, 0, 0, 802, 804, 5, 166, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 5, 76, 0, 0, 806, 808, 3, 274, 137, 0, 807, 806, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 3, 268, 134, 0, 810, 812, 3, 52, 26, 0, 811, 810, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 815, 3, 70, 35, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 5, 7, 0, 0, 817, 818, 3, 156, 78, 0, 818, 107, 1, 0, 0, 0, 819, 823, 5, 73, 0, 0, 820, 824, 5, 166, 0, 0, 821, 822, 5, 166, 0, 0, 822, 824, 5, 232, 0, 0, 823, 820, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 827, 5, 157, 0, 0, 826, 828, 3, 274, 137, 0, 827, 826, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 3, 268, 134, 0, 830, 831, 5, 7, 0, 0, 831, 834, 3, 256, 128, 0, 832, 833, 5, 240, 0, 0, 833, 835, 7, 17, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 838, 3, 110, 55, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 109, 1, 0, 0, 0, 839, 840, 5, 143, 0, 0, 840, 841, 5, 244, 0, 0, 841, 847, 3, 112, 56, 0, 842, 843, 5, 306, 0, 0, 843, 844, 5, 244, 0, 0, 844, 846, 3, 112, 56, 0, 845, 842, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 111, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 850, 851, 5, 323, 0, 0, 851, 113, 1, 0, 0, 0, 852, 853, 5, 112, 0, 0, 853, 855, 5, 74, 0, 0, 854, 856, 3, 276, 138, 0, 855, 854, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 863, 3, 268, 134, 0, 858, 864, 3, 116, 58, 0, 859, 864, 3, 118, 59, 0, 860, 864, 3, 120, 60, 0, 861, 864, 3, 122, 61, 0, 862, 864, 3, 124, 62, 0, 863, 858, 1, 0, 0, 0, 863, 859, 1, 0, 0, 0, 863, 860, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 862, 1, 0, 0, 0, 864, 115, 1, 0, 0, 0, 865, 867, 5, 113, 0, 0, 866, 868, 3, 268, 134, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 5, 109, 0, 0, 870, 871, 3, 268, 134, 0, 871, 117, 1, 0, 0, 0, 872, 873, 5, 116, 0, 0, 873, 874, 3, 278, 139, 0, 874, 119, 1, 0, 0, 0, 875, 876, 5, 6, 0, 0, 876, 877, 5, 185, 0, 0, 877, 878, 3, 84, 42, 0, 878, 879, 5, 256, 0, 0, 879, 880, 5, 258, 0, 0, 880, 882, 3, 52, 26, 0, 881, 883, 3, 126, 63, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 121, 1, 0, 0, 0, 884, 885, 5, 104, 0, 0, 885, 886, 5, 185, 0, 0, 886, 887, 3, 84, 42, 0, 887, 123, 1, 0, 0, 0, 888, 889, 5, 6, 0, 0, 889, 890, 5, 257, 0, 0, 890, 891, 3, 52, 26, 0, 891, 125, 1, 0, 0, 0, 892, 893, 5, 25, 0, 0, 893, 894, 5, 261, 0, 0, 894, 127, 1, 0, 0, 0, 895, 896, 5, 112, 0, 0, 896, 897, 5, 76, 0, 0, 897, 901, 3, 268, 134, 0, 898, 902, 3, 116, 58, 0, 899, 900, 5, 7, 0, 0, 900, 902, 3, 156, 78, 0, 901, 898, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 129, 1, 0, 0, 0, 903, 904, 5, 112, 0, 0, 904, 905, 5, 192, 0, 0, 905, 906, 3, 268, 134, 0, 906, 907, 3, 118, 59, 0, 907, 131, 1, 0, 0, 0, 908, 912, 5, 112, 0, 0, 909, 913, 5, 166, 0, 0, 910, 911, 5, 166, 0, 0, 911, 913, 5, 232, 0, 0, 912, 909, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 5, 157, 0, 0, 915, 917, 3, 276, 138, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 3, 268, 134, 0, 919, 920, 5, 7, 0, 0, 920, 923, 3, 256, 128, 0, 921, 922, 5, 240, 0, 0, 922, 924, 7, 17, 0, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 133, 1, 0, 0, 0, 925, 926, 5, 104, 0, 0, 926, 928, 5, 239, 0, 0, 927, 929, 3, 276, 138, 0, 928, 927, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 3, 268, 134, 0, 931, 135, 1, 0, 0, 0, 932, 934, 5, 104, 0, 0, 933, 935, 5, 166, 0, 0, 934, 933, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 5, 74, 0, 0, 937, 939, 3, 276, 138, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 3, 268, 134, 0, 941, 137, 1, 0, 0, 0, 942, 943, 5, 104, 0, 0, 943, 945, 5, 192, 0, 0, 944, 946, 3, 276, 138, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 3, 268, 134, 0, 948, 950, 7, 18, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 139, 1, 0, 0, 0, 951, 953, 5, 104, 0, 0, 952, 954, 5, 166, 0, 0, 953, 952, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 957, 5, 76, 0, 0, 956, 958, 3, 276, 138, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 3, 268, 134, 0, 960, 141, 1, 0, 0, 0, 961, 965, 5, 104, 0, 0, 962, 966, 5, 166, 0, 0, 963, 964, 5, 166, 0, 0, 964, 966, 5, 232, 0, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 5, 157, 0, 0, 968, 970, 3, 276, 138, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 3, 268, 134, 0, 972, 143, 1, 0, 0, 0, 973, 975, 5, 78, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 980, 3, 146, 73, 0, 977, 978, 5, 78, 0, 0, 978, 980, 3, 154, 77, 0, 979, 974, 1, 0, 0, 0, 979, 977, 1, 0, 0, 0, 980, 145, 1, 0, 0, 0, 981, 982, 5, 80, 0, 0, 982, 983, 7, 19, 0, 0, 983, 992, 3, 268, 134, 0, 984, 986, 3, 148, 74, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 988, 1, 0, 0, 0, 987, 989, 3, 52, 26, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 993, 3, 156, 78, 0, 991, 993, 3, 150, 75, 0, 992, 985, 1, 0, 0, 0, 992, 991, 1, 0, 0, 0, 993, 147, 1, 0, 0, 0, 994, 995, 5, 60, 0, 0, 995, 996, 3, 278, 139, 0, 996, 149, 1, 0, 0, 0, 997, 998, 5, 72, 0, 0, 998, 1003, 3, 152, 76, 0, 999, 1000, 5, 306, 0, 0, 1000, 1002, 3, 152, 76, 0, 1001, 999, 1, 0, 0, 0, 1002, 1005, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 151, 1, 0, 0, 0, 1005, 1003, 1, 0, 0, 0, 1006, 1007, 5, 304, 0, 0, 1007, 1012, 3, 298, 149, 0, 1008, 1009, 5, 306, 0, 0, 1009, 1011, 3, 298, 149, 0, 1010, 1008, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1015, 1016, 5, 305, 0, 0, 1016, 153, 1, 0, 0, 0, 1017, 1018, 5, 79, 0, 0, 1018, 1019, 5, 116, 0, 0, 1019, 1023, 5, 43, 0, 0, 1020, 1021, 3, 146, 73, 0, 1021, 1022, 5, 307, 0, 0, 1022, 1024, 1, 0, 0, 0, 1023, 1020, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 5, 44, 0, 0, 1028, 155, 1, 0, 0, 0, 1029, 1030, 6, 78, -1, 0, 1030, 1061, 3, 158, 79, 0, 1031, 1032, 5, 70, 0, 0, 1032, 1037, 3, 160, 80, 0, 1033, 1034, 5, 306, 0, 0, 1034, 1036, 3, 160, 80, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1039, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1040, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1040, 1041, 3, 156, 78, 5, 1041, 1061, 1, 0, 0, 0, 1042, 1043, 5, 304, 0, 0, 1043, 1044, 3, 156, 78, 0, 1044, 1045, 5, 305, 0, 0, 1045, 1061, 1, 0, 0, 0, 1046, 1048, 3, 166, 83, 0, 1047, 1049, 3, 194, 97, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1051, 1, 0, 0, 0, 1050, 1052, 3, 198, 99, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1061, 1, 0, 0, 0, 1053, 1055, 3, 164, 82, 0, 1054, 1056, 3, 194, 97, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 1, 0, 0, 0, 1057, 1059, 3, 198, 99, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1029, 1, 0, 0, 0, 1060, 1031, 1, 0, 0, 0, 1060, 1042, 1, 0, 0, 0, 1060, 1046, 1, 0, 0, 0, 1060, 1053, 1, 0, 0, 0, 1061, 1076, 1, 0, 0, 0, 1062, 1063, 10, 3, 0, 0, 1063, 1065, 7, 20, 0, 0, 1064, 1066, 5, 8, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 3, 156, 78, 0, 1068, 1070, 3, 194, 97, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1072, 1, 0, 0, 0, 1071, 1073, 3, 198, 99, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1062, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 157, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1080, 5, 72, 0, 0, 1080, 1085, 3, 212, 106, 0, 1081, 1082, 5, 306, 0, 0, 1082, 1084, 3, 212, 106, 0, 1083, 1081, 1, 0, 0, 0, 1084, 1087, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 159, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1088, 1100, 3, 162, 81, 0, 1089, 1090, 5, 304, 0, 0, 1090, 1095, 3, 50, 25, 0, 1091, 1092, 5, 306, 0, 0, 1092, 1094, 3, 50, 25, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1099, 5, 305, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1089, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 5, 7, 0, 0, 1103, 1104, 5, 304, 0, 0, 1104, 1105, 3, 156, 78, 0, 1105, 1106, 5, 305, 0, 0, 1106, 161, 1, 0, 0, 0, 1107, 1108, 3, 256, 128, 0, 1108, 163, 1, 0, 0, 0, 1109, 1110, 3, 166, 83, 0, 1110, 1112, 3, 170, 85, 0, 1111, 1113, 3, 186, 93, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1116, 3, 188, 94, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1119, 3, 192, 96, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 1, 0, 0, 0, 1120, 1122, 3, 200, 100, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 165, 1, 0, 0, 0, 1123, 1125, 5, 4, 0, 0, 1124, 1126, 3, 306, 153, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1136, 1, 0, 0, 0, 1127, 1137, 5, 313, 0, 0, 1128, 1133, 3, 168, 84, 0, 1129, 1130, 5, 306, 0, 0, 1130, 1132, 3, 168, 84, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1127, 1, 0, 0, 0, 1136, 1128, 1, 0, 0, 0, 1137, 167, 1, 0, 0, 0, 1138, 1143, 3, 212, 106, 0, 1139, 1141, 5, 7, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 3, 212, 106, 0, 1143, 1140, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 169, 1, 0, 0, 0, 1145, 1146, 5, 5, 0, 0, 1146, 1147, 3, 172, 86, 0, 1147, 171, 1, 0, 0, 0, 1148, 1149, 6, 86, -1, 0, 1149, 1154, 3, 174, 87, 0, 1150, 1151, 5, 306, 0, 0, 1151, 1153, 3, 174, 87, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1156, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1178, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1157, 1158, 10, 1, 0, 0, 1158, 1159, 5, 46, 0, 0, 1159, 1160, 5, 45, 0, 0, 1160, 1177, 3, 172, 86, 2, 1161, 1163, 10, 2, 0, 0, 1162, 1164, 5, 54, 0, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1166, 1, 0, 0, 0, 1165, 1167, 7, 21, 0, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1170, 5, 47, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 5, 45, 0, 0, 1172, 1174, 3, 172, 86, 0, 1173, 1175, 3, 184, 92, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1157, 1, 0, 0, 0, 1176, 1161, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 173, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1183, 3, 176, 88, 0, 1182, 1184, 3, 246, 123, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 175, 1, 0, 0, 0, 1185, 1187, 5, 74, 0, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1190, 3, 178, 89, 0, 1189, 1191, 3, 180, 90, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1196, 1, 0, 0, 0, 1192, 1194, 5, 7, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 3, 228, 114, 0, 1196, 1193, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1227, 1, 0, 0, 0, 1198, 1199, 5, 57, 0, 0, 1199, 1200, 5, 74, 0, 0, 1200, 1201, 5, 304, 0, 0, 1201, 1202, 3, 224, 112, 0, 1202, 1203, 5, 304, 0, 0, 1203, 1208, 3, 212, 106, 0, 1204, 1205, 5, 306, 0, 0, 1205, 1207, 3, 212, 106, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1212, 5, 305, 0, 0, 1212, 1213, 5, 305, 0, 0, 1213, 1227, 1, 0, 0, 0, 1214, 1216, 5, 57, 0, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 5, 304, 0, 0, 1218, 1219, 3, 156, 78, 0, 1219, 1220, 5, 305, 0, 0, 1220, 1227, 1, 0, 0, 0, 1221, 1222, 5, 227, 0, 0, 1222, 1223, 5, 304, 0, 0, 1223, 1224, 3, 212, 106, 0, 1224, 1225, 5, 305, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1186, 1, 0, 0, 0, 1226, 1198, 1, 0, 0, 0, 1226, 1215, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 177, 1, 0, 0, 0, 1228, 1229, 3, 268, 134, 0, 1229, 179, 1, 0, 0, 0, 1230, 1231, 5, 37, 0, 0, 1231, 1232, 5, 260, 0, 0, 1232, 1233, 5, 7, 0, 0, 1233, 1234, 5, 136, 0, 0, 1234, 1235, 3, 182, 91, 0, 1235, 181, 1, 0, 0, 0, 1236, 1237, 3, 212, 106, 0, 1237, 183, 1, 0, 0, 0, 1238, 1239, 5, 55, 0, 0, 1239, 1253, 3, 214, 107, 0, 1240, 1241, 5, 143, 0, 0, 1241, 1242, 5, 304, 0, 0, 1242, 1247, 3, 268, 134, 0, 1243, 1244, 5, 306, 0, 0, 1244, 1246, 3, 268, 134, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1249, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1250, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1251, 5, 305, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1238, 1, 0, 0, 0, 1252, 1240, 1, 0, 0, 0, 1253, 185, 1, 0, 0, 0, 1254, 1255, 5, 11, 0, 0, 1255, 1256, 3, 214, 107, 0, 1256, 187, 1, 0, 0, 0, 1257, 1258, 5, 12, 0, 0, 1258, 1259, 5, 13, 0, 0, 1259, 1264, 3, 190, 95, 0, 1260, 1261, 5, 306, 0, 0, 1261, 1263, 3, 190, 95, 0, 1262, 1260, 1, 0, 0, 0, 1263, 1266, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 189, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1267, 1319, 3, 212, 106, 0, 1268, 1269, 5, 304, 0, 0, 1269, 1319, 5, 305, 0, 0, 1270, 1271, 5, 304, 0, 0, 1271, 1276, 3, 212, 106, 0, 1272, 1273, 5, 306, 0, 0, 1273, 1275, 3, 212, 106, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1280, 5, 305, 0, 0, 1280, 1319, 1, 0, 0, 0, 1281, 1282, 5, 16, 0, 0, 1282, 1283, 5, 304, 0, 0, 1283, 1288, 3, 212, 106, 0, 1284, 1285, 5, 306, 0, 0, 1285, 1287, 3, 212, 106, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1290, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1291, 1292, 5, 305, 0, 0, 1292, 1319, 1, 0, 0, 0, 1293, 1294, 5, 17, 0, 0, 1294, 1295, 5, 304, 0, 0, 1295, 1300, 3, 212, 106, 0, 1296, 1297, 5, 306, 0, 0, 1297, 1299, 3, 212, 106, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1302, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1304, 5, 305, 0, 0, 1304, 1319, 1, 0, 0, 0, 1305, 1306, 5, 14, 0, 0, 1306, 1307, 5, 15, 0, 0, 1307, 1308, 5, 304, 0, 0, 1308, 1313, 3, 190, 95, 0, 1309, 1310, 5, 306, 0, 0, 1310, 1312, 3, 190, 95, 0, 1311, 1309, 1, 0, 0, 0, 1312, 1315, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1313, 1, 0, 0, 0, 1316, 1317, 5, 305, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1267, 1, 0, 0, 0, 1318, 1268, 1, 0, 0, 0, 1318, 1270, 1, 0, 0, 0, 1318, 1281, 1, 0, 0, 0, 1318, 1293, 1, 0, 0, 0, 1318, 1305, 1, 0, 0, 0, 1319, 191, 1, 0, 0, 0, 1320, 1321, 5, 19, 0, 0, 1321, 1322, 3, 214, 107, 0, 1322, 193, 1, 0, 0, 0, 1323, 1324, 5, 18, 0, 0, 1324, 1325, 5, 13, 0, 0, 1325, 1330, 3, 196, 98, 0, 1326, 1327, 5, 306, 0, 0, 1327, 1329, 3, 196, 98, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1332, 1, 0, 0, 0, 1330, 1328, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 195, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1335, 3, 212, 106, 0, 1334, 1336, 7, 22, 0, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 197, 1, 0, 0, 0, 1337, 1340, 5, 20, 0, 0, 1338, 1341, 5, 8, 0, 0, 1339, 1341, 3, 212, 106, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1339, 1, 0, 0, 0, 1341, 199, 1, 0, 0, 0, 1342, 1343, 5, 58, 0, 0, 1343, 1348, 3, 202, 101, 0, 1344, 1345, 5, 306, 0, 0, 1345, 1347, 3, 202, 101, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 201, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1351, 1352, 3, 248, 124, 0, 1352, 1353, 5, 7, 0, 0, 1353, 1354, 3, 204, 102, 0, 1354, 203, 1, 0, 0, 0, 1355, 1357, 3, 248, 124, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1369, 5, 304, 0, 0, 1359, 1360, 5, 18, 0, 0, 1360, 1361, 5, 13, 0, 0, 1361, 1366, 3, 206, 103, 0, 1362, 1363, 5, 306, 0, 0, 1363, 1365, 3, 206, 103, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1369, 1359, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1381, 1, 0, 0, 0, 1371, 1372, 5, 60, 0, 0, 1372, 1373, 5, 13, 0, 0, 1373, 1378, 3, 212, 106, 0, 1374, 1375, 5, 306, 0, 0, 1375, 1377, 3, 212, 106, 0, 1376, 1374, 1, 0, 0, 0, 1377, 1380, 1, 0, 0, 0, 1378, 1376, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1382, 1, 0, 0, 0, 1380, 1378, 1, 0, 0, 0, 1381, 1371, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 1, 0, 0, 0, 1383, 1385, 3, 208, 104, 0, 1384, 1383, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 5, 305, 0, 0, 1387, 205, 1, 0, 0, 0, 1388, 1390, 3, 212, 106, 0, 1389, 1391, 7, 22, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1394, 1, 0, 0, 0, 1392, 1393, 5, 34, 0, 0, 1393, 1395, 7, 23, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 207, 1, 0, 0, 0, 1396, 1397, 5, 61, 0, 0, 1397, 1401, 3, 210, 105, 0, 1398, 1399, 5, 62, 0, 0, 1399, 1401, 3, 210, 105, 0, 1400, 1396, 1, 0, 0, 0, 1400, 1398, 1, 0, 0, 0, 1401, 209, 1, 0, 0, 0, 1402, 1403, 3, 212, 106, 0, 1403, 1404, 5, 64, 0, 0, 1404, 211, 1, 0, 0, 0, 1405, 1406, 3, 214, 107, 0, 1406, 213, 1, 0, 0, 0, 1407, 1408, 6, 107, -1, 0, 1408, 1409, 5, 25, 0, 0, 1409, 1420, 3, 214, 107, 5, 1410, 1411, 5, 27, 0, 0, 1411, 1412, 5, 304, 0, 0, 1412, 1413, 3, 156, 78, 0, 1413, 1414, 5, 305, 0, 0, 1414, 1420, 1, 0, 0, 0, 1415, 1417, 3, 220, 110, 0, 1416, 1418, 3, 216, 108, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1407, 1, 0, 0, 0, 1419, 1410, 1, 0, 0, 0, 1419, 1415, 1, 0, 0, 0, 1420, 1429, 1, 0, 0, 0, 1421, 1422, 10, 2, 0, 0, 1422, 1423, 5, 23, 0, 0, 1423, 1428, 3, 214, 107, 3, 1424, 1425, 10, 1, 0, 0, 1425, 1426, 5, 22, 0, 0, 1426, 1428, 3, 214, 107, 2, 1427, 1421, 1, 0, 0, 0, 1427, 1424, 1, 0, 0, 0, 1428, 1431, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 215, 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1432, 1434, 5, 25, 0, 0, 1433, 1432, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 5, 28, 0, 0, 1436, 1437, 3, 220, 110, 0, 1437, 1438, 5, 23, 0, 0, 1438, 1439, 3, 220, 110, 0, 1439, 1516, 1, 0, 0, 0, 1440, 1442, 5, 25, 0, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 5, 24, 0, 0, 1444, 1445, 5, 304, 0, 0, 1445, 1450, 3, 212, 106, 0, 1446, 1447, 5, 306, 0, 0, 1447, 1449, 3, 212, 106, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1452, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1454, 5, 305, 0, 0, 1454, 1516, 1, 0, 0, 0, 1455, 1457, 5, 25, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 5, 24, 0, 0, 1459, 1460, 5, 304, 0, 0, 1460, 1461, 3, 156, 78, 0, 1461, 1462, 5, 305, 0, 0, 1462, 1516, 1, 0, 0, 0, 1463, 1464, 5, 27, 0, 0, 1464, 1465, 5, 304, 0, 0, 1465, 1466, 3, 156, 78, 0, 1466, 1467, 5, 305, 0, 0, 1467, 1516, 1, 0, 0, 0, 1468, 1470, 5, 25, 0, 0, 1469, 1468, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 5, 30, 0, 0, 1472, 1516, 3, 220, 110, 0, 1473, 1475, 5, 25, 0, 0, 1474, 1473, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1477, 5, 29, 0, 0, 1477, 1491, 7, 24, 0, 0, 1478, 1479, 5, 304, 0, 0, 1479, 1492, 5, 305, 0, 0, 1480, 1481, 5, 304, 0, 0, 1481, 1486, 3, 212, 106, 0, 1482, 1483, 5, 306, 0, 0, 1483, 1485, 3, 212, 106, 0, 1484, 1482, 1, 0, 0, 0, 1485, 1488, 1, 0, 0, 0, 1486, 1484, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1486, 1, 0, 0, 0, 1489, 1490, 5, 305, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1478, 1, 0, 0, 0, 1491, 1480, 1, 0, 0, 0, 1492, 1516, 1, 0, 0, 0, 1493, 1495, 5, 25, 0, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 5, 29, 0, 0, 1497, 1516, 3, 220, 110, 0, 1498, 1500, 5, 31, 0, 0, 1499, 1501, 5, 25, 0, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1516, 5, 291, 0, 0, 1503, 1505, 5, 31, 0, 0, 1504, 1506, 5, 25, 0, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1516, 7, 25, 0, 0, 1508, 1510, 5, 31, 0, 0, 1509, 1511, 5, 25, 0, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 5, 10, 0, 0, 1513, 1514, 5, 5, 0, 0, 1514, 1516, 3, 220, 110, 0, 1515, 1433, 1, 0, 0, 0, 1515, 1441, 1, 0, 0, 0, 1515, 1456, 1, 0, 0, 0, 1515, 1463, 1, 0, 0, 0, 1515, 1469, 1, 0, 0, 0, 1515, 1474, 1, 0, 0, 0, 1515, 1494, 1, 0, 0, 0, 1515, 1498, 1, 0, 0, 0, 1515, 1503, 1, 0, 0, 0, 1515, 1508, 1, 0, 0, 0, 1516, 217, 1, 0, 0, 0, 1517, 1519, 5, 25, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 5, 29, 0, 0, 1521, 1535, 7, 24, 0, 0, 1522, 1523, 5, 304, 0, 0, 1523, 1536, 5, 305, 0, 0, 1524, 1525, 5, 304, 0, 0, 1525, 1530, 3, 212, 106, 0, 1526, 1527, 5, 306, 0, 0, 1527, 1529, 3, 212, 106, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1532, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1533, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1534, 5, 305, 0, 0, 1534, 1536, 1, 0, 0, 0, 1535, 1522, 1, 0, 0, 0, 1535, 1524, 1, 0, 0, 0, 1536, 1543, 1, 0, 0, 0, 1537, 1539, 5, 25, 0, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 5, 29, 0, 0, 1541, 1543, 3, 220, 110, 0, 1542, 1518, 1, 0, 0, 0, 1542, 1538, 1, 0, 0, 0, 1543, 219, 1, 0, 0, 0, 1544, 1545, 6, 110, -1, 0, 1545, 1549, 3, 222, 111, 0, 1546, 1547, 7, 26, 0, 0, 1547, 1549, 3, 220, 110, 7, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1571, 1, 0, 0, 0, 1550, 1551, 10, 6, 0, 0, 1551, 1552, 7, 27, 0, 0, 1552, 1570, 3, 220, 110, 7, 1553, 1554, 10, 5, 0, 0, 1554, 1555, 7, 28, 0, 0, 1555, 1570, 3, 220, 110, 6, 1556, 1557, 10, 4, 0, 0, 1557, 1558, 5, 299, 0, 0, 1558, 1570, 3, 220, 110, 5, 1559, 1560, 10, 3, 0, 0, 1560, 1561, 5, 300, 0, 0, 1561, 1570, 3, 220, 110, 4, 1562, 1563, 10, 2, 0, 0, 1563, 1564, 5, 298, 0, 0, 1564, 1570, 3, 220, 110, 3, 1565, 1566, 10, 1, 0, 0, 1566, 1567, 3, 288, 144, 0, 1567, 1568, 3, 220, 110, 2, 1568, 1570, 1, 0, 0, 0, 1569, 1550, 1, 0, 0, 0, 1569, 1553, 1, 0, 0, 0, 1569, 1556, 1, 0, 0, 0, 1569, 1559, 1, 0, 0, 0, 1569, 1562, 1, 0, 0, 0, 1569, 1565, 1, 0, 0, 0, 1570, 1573, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 221, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1575, 6, 111, -1, 0, 1575, 1577, 5, 39, 0, 0, 1576, 1578, 3, 264, 132, 0, 1577, 1576, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1583, 1, 0, 0, 0, 1581, 1582, 5, 42, 0, 0, 1582, 1584, 3, 212, 106, 0, 1583, 1581, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 5, 44, 0, 0, 1586, 1666, 1, 0, 0, 0, 1587, 1588, 5, 39, 0, 0, 1588, 1590, 3, 212, 106, 0, 1589, 1591, 3, 264, 132, 0, 1590, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1590, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1595, 5, 42, 0, 0, 1595, 1597, 3, 212, 106, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 5, 44, 0, 0, 1599, 1666, 1, 0, 0, 0, 1600, 1601, 5, 94, 0, 0, 1601, 1602, 5, 304, 0, 0, 1602, 1603, 3, 212, 106, 0, 1603, 1604, 5, 7, 0, 0, 1604, 1605, 3, 54, 27, 0, 1605, 1606, 5, 305, 0, 0, 1606, 1666, 1, 0, 0, 0, 1607, 1608, 5, 67, 0, 0, 1608, 1609, 5, 304, 0, 0, 1609, 1612, 3, 212, 106, 0, 1610, 1611, 5, 124, 0, 0, 1611, 1613, 5, 34, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 5, 305, 0, 0, 1615, 1666, 1, 0, 0, 0, 1616, 1617, 5, 69, 0, 0, 1617, 1618, 5, 304, 0, 0, 1618, 1621, 3, 212, 106, 0, 1619, 1620, 5, 124, 0, 0, 1620, 1622, 5, 34, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1624, 5, 305, 0, 0, 1624, 1666, 1, 0, 0, 0, 1625, 1626, 5, 129, 0, 0, 1626, 1627, 5, 304, 0, 0, 1627, 1628, 3, 220, 110, 0, 1628, 1629, 5, 24, 0, 0, 1629, 1630, 3, 220, 110, 0, 1630, 1631, 5, 305, 0, 0, 1631, 1666, 1, 0, 0, 0, 1632, 1666, 3, 298, 149, 0, 1633, 1666, 5, 313, 0, 0, 1634, 1635, 3, 268, 134, 0, 1635, 1636, 5, 301, 0, 0, 1636, 1637, 5, 313, 0, 0, 1637, 1666, 1, 0, 0, 0, 1638, 1639, 5, 304, 0, 0, 1639, 1640, 3, 156, 78, 0, 1640, 1641, 5, 305, 0, 0, 1641, 1666, 1, 0, 0, 0, 1642, 1643, 3, 224, 112, 0, 1643, 1655, 5, 304, 0, 0, 1644, 1646, 3, 306, 153, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1652, 3, 212, 106, 0, 1648, 1649, 5, 306, 0, 0, 1649, 1651, 3, 212, 106, 0, 1650, 1648, 1, 0, 0, 0, 1651, 1654, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1656, 1, 0, 0, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1645, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 5, 305, 0, 0, 1658, 1666, 1, 0, 0, 0, 1659, 1666, 3, 256, 128, 0, 1660, 1666, 3, 226, 113, 0, 1661, 1662, 5, 304, 0, 0, 1662, 1663, 3, 212, 106, 0, 1663, 1664, 5, 305, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1574, 1, 0, 0, 0, 1665, 1587, 1, 0, 0, 0, 1665, 1600, 1, 0, 0, 0, 1665, 1607, 1, 0, 0, 0, 1665, 1616, 1, 0, 0, 0, 1665, 1625, 1, 0, 0, 0, 1665, 1632, 1, 0, 0, 0, 1665, 1633, 1, 0, 0, 0, 1665, 1634, 1, 0, 0, 0, 1665, 1638, 1, 0, 0, 0, 1665, 1642, 1, 0, 0, 0, 1665, 1659, 1, 0, 0, 0, 1665, 1660, 1, 0, 0, 0, 1665, 1661, 1, 0, 0, 0, 1666, 1674, 1, 0, 0, 0, 1667, 1668, 10, 4, 0, 0, 1668, 1669, 5, 302, 0, 0, 1669, 1670, 3, 220, 110, 0, 1670, 1671, 5, 303, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1667, 1, 0, 0, 0, 1673, 1676, 1, 0, 0, 0, 1674, 1672, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 223, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1677, 1678, 3, 268, 134, 0, 1678, 225, 1, 0, 0, 0, 1679, 1680, 3, 268, 134, 0, 1680, 227, 1, 0, 0, 0, 1681, 1682, 3, 256, 128, 0, 1682, 229, 1, 0, 0, 0, 1683, 1686, 3, 256, 128, 0, 1684, 1686, 3, 226, 113, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1684, 1, 0, 0, 0, 1686, 231, 1, 0, 0, 0, 1687, 1690, 5, 38, 0, 0, 1688, 1691, 3, 234, 117, 0, 1689, 1691, 3, 238, 119, 0, 1690, 1688, 1, 0, 0, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 233, 1, 0, 0, 0, 1692, 1694, 3, 236, 118, 0, 1693, 1695, 3, 240, 120, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 235, 1, 0, 0, 0, 1696, 1697, 3, 242, 121, 0, 1697, 1698, 3, 256, 128, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1696, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 237, 1, 0, 0, 0, 1703, 1706, 3, 240, 120, 0, 1704, 1707, 3, 236, 118, 0, 1705, 1707, 3, 240, 120, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1705, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 239, 1, 0, 0, 0, 1708, 1709, 3, 242, 121, 0, 1709, 1710, 3, 256, 128, 0, 1710, 1711, 5, 109, 0, 0, 1711, 1712, 3, 256, 128, 0, 1712, 241, 1, 0, 0, 0, 1713, 1715, 7, 29, 0, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1719, 7, 30, 0, 0, 1717, 1719, 5, 323, 0, 0, 1718, 1714, 1, 0, 0, 0, 1718, 1717, 1, 0, 0, 0, 1719, 243, 1, 0, 0, 0, 1720, 1722, 5, 7, 0, 0, 1721, 1720, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1725, 3, 258, 129, 0, 1724, 1726, 3, 252, 126, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 245, 1, 0, 0, 0, 1727, 1729, 5, 7, 0, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 3, 258, 129, 0, 1731, 1733, 3, 252, 126, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 247, 1, 0, 0, 0, 1734, 1735, 3, 256, 128, 0, 1735, 1736, 3, 250, 125, 0, 1736, 249, 1, 0, 0, 0, 1737, 1738, 5, 131, 0, 0, 1738, 1740, 3, 256, 128, 0, 1739, 1737, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1739, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1745, 1, 0, 0, 0, 1744, 1739, 1, 0, 0, 0, 1744, 1743, 1, 0, 0, 0, 1745, 251, 1, 0, 0, 0, 1746, 1747, 5, 304, 0, 0, 1747, 1748, 3, 254, 127, 0, 1748, 1749, 5, 305, 0, 0, 1749, 253, 1, 0, 0, 0, 1750, 1755, 3, 256, 128, 0, 1751, 1752, 5, 306, 0, 0, 1752, 1754, 3, 256, 128, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 255, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1761, 3, 258, 129, 0, 1759, 1761, 3, 310, 155, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1759, 1, 0, 0, 0, 1761, 257, 1, 0, 0, 0, 1762, 1767, 3, 260, 130, 0, 1763, 1767, 3, 262, 131, 0, 1764, 1767, 3, 308, 154, 0, 1765, 1767, 3, 312, 156, 0, 1766, 1762, 1, 0, 0, 0, 1766, 1763, 1, 0, 0, 0, 1766, 1764, 1, 0, 0, 0, 1766, 1765, 1, 0, 0, 0, 1767, 259, 1, 0, 0, 0, 1768, 1769, 7, 31, 0, 0, 1769, 261, 1, 0, 0, 0, 1770, 1771, 5, 323, 0, 0, 1771, 263, 1, 0, 0, 0, 1772, 1773, 5, 40, 0, 0, 1773, 1774, 3, 212, 106, 0, 1774, 1775, 5, 41, 0, 0, 1775, 1776, 3, 212, 106, 0, 1776, 265, 1, 0, 0, 0, 1777, 1782, 3, 268, 134, 0, 1778, 1779, 5, 306, 0, 0, 1779, 1781, 3, 268, 134, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 267, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1789, 5, 327, 0, 0, 1786, 1788, 5, 321, 0, 0, 1787, 1786, 1, 0, 0, 0, 1788, 1791, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 269, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1796, 7, 32, 0, 0, 1793, 1795, 7, 33, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 271, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1800, 5, 70, 0, 0, 1800, 1801, 3, 278, 139, 0, 1801, 273, 1, 0, 0, 0, 1802, 1803, 5, 128, 0, 0, 1803, 1804, 5, 25, 0, 0, 1804, 1805, 5, 27, 0, 0, 1805, 275, 1, 0, 0, 0, 1806, 1807, 5, 128, 0, 0, 1807, 1808, 5, 27, 0, 0, 1808, 277, 1, 0, 0, 0, 1809, 1810, 5, 304, 0, 0, 1810, 1815, 3, 280, 140, 0, 1811, 1812, 5, 306, 0, 0, 1812, 1814, 3, 280, 140, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 305, 0, 0, 1819, 279, 1, 0, 0, 0, 1820, 1825, 3, 282, 141, 0, 1821, 1823, 5, 293, 0, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 3, 284, 142, 0, 1825, 1822, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 281, 1, 0, 0, 0, 1827, 1831, 3, 256, 128, 0, 1828, 1831, 3, 226, 113, 0, 1829, 1831, 5, 323, 0, 0, 1830, 1827, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1829, 1, 0, 0, 0, 1831, 283, 1, 0, 0, 0, 1832, 1837, 5, 324, 0, 0, 1833, 1837, 5, 325, 0, 0, 1834, 1837, 3, 304, 152, 0, 1835, 1837, 5, 323, 0, 0, 1836, 1832, 1, 0, 0, 0, 1836, 1833, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1835, 1, 0, 0, 0, 1837, 285, 1, 0, 0, 0, 1838, 1845, 5, 23, 0, 0, 1839, 1840, 5, 299, 0, 0, 1840, 1845, 5, 299, 0, 0, 1841, 1845, 5, 22, 0, 0, 1842, 1843, 5, 298, 0, 0, 1843, 1845, 5, 298, 0, 0, 1844, 1838, 1, 0, 0, 0, 1844, 1839, 1, 0, 0, 0, 1844, 1841, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1845, 287, 1, 0, 0, 0, 1846, 1861, 5, 293, 0, 0, 1847, 1861, 5, 294, 0, 0, 1848, 1861, 5, 295, 0, 0, 1849, 1850, 5, 295, 0, 0, 1850, 1861, 5, 293, 0, 0, 1851, 1852, 5, 294, 0, 0, 1852, 1861, 5, 293, 0, 0, 1853, 1854, 5, 295, 0, 0, 1854, 1861, 5, 294, 0, 0, 1855, 1856, 5, 296, 0, 0, 1856, 1861, 5, 293, 0, 0, 1857, 1858, 5, 295, 0, 0, 1858, 1859, 5, 293, 0, 0, 1859, 1861, 5, 294, 0, 0, 1860, 1846, 1, 0, 0, 0, 1860, 1847, 1, 0, 0, 0, 1860, 1848, 1, 0, 0, 0, 1860, 1849, 1, 0, 0, 0, 1860, 1851, 1, 0, 0, 0, 1860, 1853, 1, 0, 0, 0, 1860, 1855, 1, 0, 0, 0, 1860, 1857, 1, 0, 0, 0, 1861, 289, 1, 0, 0, 0, 1862, 1863, 5, 295, 0, 0, 1863, 1870, 5, 295, 0, 0, 1864, 1865, 5, 294, 0, 0, 1865, 1870, 5, 294, 0, 0, 1866, 1870, 5, 299, 0, 0, 1867, 1870, 5, 300, 0, 0, 1868, 1870, 5, 298, 0, 0, 1869, 1862, 1, 0, 0, 0, 1869, 1864, 1, 0, 0, 0, 1869, 1866, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1868, 1, 0, 0, 0, 1870, 291, 1, 0, 0, 0, 1871, 1872, 7, 34, 0, 0, 1872, 293, 1, 0, 0, 0, 1873, 1874, 7, 35, 0, 0, 1874, 295, 1, 0, 0, 0, 1875, 1876, 3, 268, 134, 0, 1876, 297, 1, 0, 0, 0, 1877, 1890, 3, 300, 150, 0, 1878, 1890, 3, 302, 151, 0, 1879, 1890, 3, 232, 116, 0, 1880, 1881, 5, 315, 0, 0, 1881, 1890, 3, 302, 151, 0, 1882, 1890, 3, 304, 152, 0, 1883, 1890, 5, 325, 0, 0, 1884, 1890, 5, 326, 0, 0, 1885, 1887, 5, 25, 0, 0, 1886, 1885, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1890, 5, 291, 0, 0, 1889, 1877, 1, 0, 0, 0, 1889, 1878, 1, 0, 0, 0, 1889, 1879, 1, 0, 0, 0, 1889, 1880, 1, 0, 0, 0, 1889, 1882, 1, 0, 0, 0, 1889, 1883, 1, 0, 0, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1886, 1, 0, 0, 0, 1890, 299, 1, 0, 0, 0, 1891, 1892, 5, 323, 0, 0, 1892, 301, 1, 0, 0, 0, 1893, 1894, 5, 324, 0, 0, 1894, 303, 1, 0, 0, 0, 1895, 1896, 7, 25, 0, 0, 1896, 305, 1, 0, 0, 0, 1897, 1898, 7, 36, 0, 0, 1898, 307, 1, 0, 0, 0, 1899, 1900, 7, 37, 0, 0, 1900, 309, 1, 0, 0, 0, 1901, 1902, 7, 38, 0, 0, 1902, 311, 1, 0, 0, 0, 1903, 1904, 7, 39, 0, 0, 1904, 313, 1, 0, 0, 0, 226, 322, 325, 327, 342, 360, 364, 373, 378, 385, 392, 396, 405, 417, 420, 427, 435, 440, 443, 450, 458, 462, 474, 482, 486, 507, 511, 515, 519, 528, 533, 537, 541, 545, 548, 552, 557, 563, 568, 573, 576, 580, 588, 596, 600, 604, 608, 612, 616, 620, 624, 628, 630, 640, 648, 672, 679, 694, 697, 705, 717, 741, 754, 759, 763, 771, 775, 783, 793, 797, 803, 807, 811, 814, 823, 827, 834, 837, 847, 855, 863, 867, 882, 901, 912, 916, 923, 928, 934, 938, 945, 949, 953, 957, 965, 969, 974, 979, 985, 988, 992, 1003, 1012, 1025, 1037, 1048, 1051, 1055, 1058, 1060, 1065, 1069, 1072, 1076, 1085, 1095, 1100, 1112, 1115, 1118, 1121, 1125, 1133, 1136, 1140, 1143, 1154, 1163, 1166, 1169, 1174, 1176, 1178, 1183, 1186, 1190, 1193, 1196, 1208, 1215, 1226, 1247, 1252, 1264, 1276, 1288, 1300, 1313, 1318, 1330, 1335, 1340, 1348, 1356, 1366, 1369, 1378, 1381, 1384, 1390, 1394, 1400, 1417, 1419, 1427, 1429, 1433, 1441, 1450, 1456, 1469, 1474, 1486, 1491, 1494, 1500, 1505, 1510, 1515, 1518, 1530, 1535, 1538, 1542, 1548, 1569, 1571, 1579, 1583, 1592, 1596, 1612, 1621, 1645, 1652, 1655, 1665, 1674, 1685, 1690, 1694, 1701, 1706, 1714, 1718, 1721, 1725, 1728, 1732, 1741, 1744, 1755, 1760, 1766, 1782, 1789, 1796, 1815, 1822, 1825, 1830, 1836, 1844, 1860, 1869, 1886, 1889] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index eafa92c..2398474 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -254,78 +254,79 @@ CATALOGS=253 VIEWS=254 JARS=255 PRIMARY=256 -KEY=257 -PERIOD=258 -SYSTEM_TIME=259 -ENFORCED=260 -METADATA=261 -VIRTUAL=262 -ZONE=263 -STRING=264 -ARRAY=265 -MAP=266 -CHAR=267 -VARCHAR=268 -BINARY=269 -VARBINARY=270 -BYTES=271 -DECIMAL=272 -DEC=273 -NUMERIC=274 -TINYINT=275 -SMALLINT=276 -INT=277 -INTEGER=278 -BIGINT=279 -FLOAT=280 -DOUBLE=281 -DATE=282 -TIME=283 -TIMESTAMP=284 -TIMESTAMP_LTZ=285 -MULTISET=286 -BOOLEAN=287 -RAW=288 -ROW=289 -NULL=290 -DATETIME=291 -EQUAL_SYMBOL=292 -GREATER_SYMBOL=293 -LESS_SYMBOL=294 -EXCLAMATION_SYMBOL=295 -BIT_NOT_OP=296 -BIT_OR_OP=297 -BIT_AND_OP=298 -BIT_XOR_OP=299 -DOT=300 -LS_BRACKET=301 -RS_BRACKET=302 -LR_BRACKET=303 -RR_BRACKET=304 -COMMA=305 -SEMICOLON=306 -AT_SIGN=307 -SINGLE_QUOTE_SYMB=308 -DOUBLE_QUOTE_SYMB=309 -REVERSE_QUOTE_SYMB=310 -COLON_SYMB=311 -ASTERISK_SIGN=312 -UNDERLINE_SIGN=313 -HYPNEN_SIGN=314 -ADD_SIGN=315 -PENCENT_SIGN=316 -DOUBLE_VERTICAL_SIGN=317 -DOUBLE_HYPNEN_SIGN=318 -SLASH_SIGN=319 -DOT_ID=320 -PLUS_DOT_ID=321 -STRING_LITERAL=322 -DIG_LITERAL=323 -REAL_LITERAL=324 -BIT_STRING=325 -ID_LITERAL=326 -PLUS_ID_LITERAL=327 -FILE_PATH=328 +UNIQUE=257 +KEY=258 +PERIOD=259 +SYSTEM_TIME=260 +ENFORCED=261 +METADATA=262 +VIRTUAL=263 +ZONE=264 +STRING=265 +ARRAY=266 +MAP=267 +CHAR=268 +VARCHAR=269 +BINARY=270 +VARBINARY=271 +BYTES=272 +DECIMAL=273 +DEC=274 +NUMERIC=275 +TINYINT=276 +SMALLINT=277 +INT=278 +INTEGER=279 +BIGINT=280 +FLOAT=281 +DOUBLE=282 +DATE=283 +TIME=284 +TIMESTAMP=285 +TIMESTAMP_LTZ=286 +MULTISET=287 +BOOLEAN=288 +RAW=289 +ROW=290 +NULL=291 +DATETIME=292 +EQUAL_SYMBOL=293 +GREATER_SYMBOL=294 +LESS_SYMBOL=295 +EXCLAMATION_SYMBOL=296 +BIT_NOT_OP=297 +BIT_OR_OP=298 +BIT_AND_OP=299 +BIT_XOR_OP=300 +DOT=301 +LS_BRACKET=302 +RS_BRACKET=303 +LR_BRACKET=304 +RR_BRACKET=305 +COMMA=306 +SEMICOLON=307 +AT_SIGN=308 +SINGLE_QUOTE_SYMB=309 +DOUBLE_QUOTE_SYMB=310 +REVERSE_QUOTE_SYMB=311 +COLON_SYMB=312 +ASTERISK_SIGN=313 +UNDERLINE_SIGN=314 +HYPNEN_SIGN=315 +ADD_SIGN=316 +PENCENT_SIGN=317 +DOUBLE_VERTICAL_SIGN=318 +DOUBLE_HYPNEN_SIGN=319 +SLASH_SIGN=320 +DOT_ID=321 +PLUS_DOT_ID=322 +STRING_LITERAL=323 +DIG_LITERAL=324 +REAL_LITERAL=325 +BIT_STRING=326 +ID_LITERAL=327 +PLUS_ID_LITERAL=328 +FILE_PATH=329 'SELECT'=4 'FROM'=5 'ADD'=6 @@ -579,66 +580,67 @@ FILE_PATH=328 'VIEWS'=254 'JARS'=255 'PRIMARY'=256 -'KEY'=257 -'PERIOD'=258 -'SYSTEM_TIME'=259 -'ENFORCED'=260 -'METADATA'=261 -'VIRTUAL'=262 -'ZONE'=263 -'STRING'=264 -'ARRAY'=265 -'MAP'=266 -'CHAR'=267 -'VARCHAR'=268 -'BINARY'=269 -'VARBINARY'=270 -'BYTES'=271 -'DECIMAL'=272 -'DEC'=273 -'NUMERIC'=274 -'TINYINT'=275 -'SMALLINT'=276 -'INT'=277 -'INTEGER'=278 -'BIGINT'=279 -'FLOAT'=280 -'DOUBLE'=281 -'DATE'=282 -'TIME'=283 -'TIMESTAMP'=284 -'TIMESTAMP_LTZ'=285 -'MULTISET'=286 -'BOOLEAN'=287 -'RAW'=288 -'ROW'=289 -'NULL'=290 -'DATETIME'=291 -'='=292 -'>'=293 -'<'=294 -'!'=295 -'~'=296 -'|'=297 -'&'=298 -'^'=299 -'.'=300 -'['=301 -']'=302 -'('=303 -')'=304 -','=305 -';'=306 -'@'=307 -'\''=308 -'"'=309 -'`'=310 -':'=311 -'*'=312 -'_'=313 -'-'=314 -'+'=315 -'%'=316 -'||'=317 -'--'=318 -'/'=319 +'UNIQUE'=257 +'KEY'=258 +'PERIOD'=259 +'SYSTEM_TIME'=260 +'ENFORCED'=261 +'METADATA'=262 +'VIRTUAL'=263 +'ZONE'=264 +'STRING'=265 +'ARRAY'=266 +'MAP'=267 +'CHAR'=268 +'VARCHAR'=269 +'BINARY'=270 +'VARBINARY'=271 +'BYTES'=272 +'DECIMAL'=273 +'DEC'=274 +'NUMERIC'=275 +'TINYINT'=276 +'SMALLINT'=277 +'INT'=278 +'INTEGER'=279 +'BIGINT'=280 +'FLOAT'=281 +'DOUBLE'=282 +'DATE'=283 +'TIME'=284 +'TIMESTAMP'=285 +'TIMESTAMP_LTZ'=286 +'MULTISET'=287 +'BOOLEAN'=288 +'RAW'=289 +'ROW'=290 +'NULL'=291 +'DATETIME'=292 +'='=293 +'>'=294 +'<'=295 +'!'=296 +'~'=297 +'|'=298 +'&'=299 +'^'=300 +'.'=301 +'['=302 +']'=303 +'('=304 +')'=305 +','=306 +';'=307 +'@'=308 +'\''=309 +'"'=310 +'`'=311 +':'=312 +'*'=313 +'_'=314 +'-'=315 +'+'=316 +'%'=317 +'||'=318 +'--'=319 +'/'=320 diff --git a/src/lib/flinksql/FlinkSqlParser.ts b/src/lib/flinksql/FlinkSqlParser.ts index 9021647..3c78efb 100644 --- a/src/lib/flinksql/FlinkSqlParser.ts +++ b/src/lib/flinksql/FlinkSqlParser.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/ziv/github.com/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 // noinspection ES6UnusedImports,JSUnusedGlobalSymbols,JSUnusedLocalSymbols import { @@ -275,78 +275,79 @@ export default class FlinkSqlParser extends Parser { public static readonly VIEWS = 254; public static readonly JARS = 255; public static readonly PRIMARY = 256; - public static readonly KEY = 257; - public static readonly PERIOD = 258; - public static readonly SYSTEM_TIME = 259; - public static readonly ENFORCED = 260; - public static readonly METADATA = 261; - public static readonly VIRTUAL = 262; - public static readonly ZONE = 263; - public static readonly STRING = 264; - public static readonly ARRAY = 265; - public static readonly MAP = 266; - public static readonly CHAR = 267; - public static readonly VARCHAR = 268; - public static readonly BINARY = 269; - public static readonly VARBINARY = 270; - public static readonly BYTES = 271; - public static readonly DECIMAL = 272; - public static readonly DEC = 273; - public static readonly NUMERIC = 274; - public static readonly TINYINT = 275; - public static readonly SMALLINT = 276; - public static readonly INT = 277; - public static readonly INTEGER = 278; - public static readonly BIGINT = 279; - public static readonly FLOAT = 280; - public static readonly DOUBLE = 281; - public static readonly DATE = 282; - public static readonly TIME = 283; - public static readonly TIMESTAMP = 284; - public static readonly TIMESTAMP_LTZ = 285; - public static readonly MULTISET = 286; - public static readonly BOOLEAN = 287; - public static readonly RAW = 288; - public static readonly ROW = 289; - public static readonly NULL = 290; - public static readonly DATETIME = 291; - public static readonly EQUAL_SYMBOL = 292; - public static readonly GREATER_SYMBOL = 293; - public static readonly LESS_SYMBOL = 294; - public static readonly EXCLAMATION_SYMBOL = 295; - public static readonly BIT_NOT_OP = 296; - public static readonly BIT_OR_OP = 297; - public static readonly BIT_AND_OP = 298; - public static readonly BIT_XOR_OP = 299; - public static readonly DOT = 300; - public static readonly LS_BRACKET = 301; - public static readonly RS_BRACKET = 302; - public static readonly LR_BRACKET = 303; - public static readonly RR_BRACKET = 304; - public static readonly COMMA = 305; - public static readonly SEMICOLON = 306; - public static readonly AT_SIGN = 307; - public static readonly SINGLE_QUOTE_SYMB = 308; - public static readonly DOUBLE_QUOTE_SYMB = 309; - public static readonly REVERSE_QUOTE_SYMB = 310; - public static readonly COLON_SYMB = 311; - public static readonly ASTERISK_SIGN = 312; - public static readonly UNDERLINE_SIGN = 313; - public static readonly HYPNEN_SIGN = 314; - public static readonly ADD_SIGN = 315; - public static readonly PENCENT_SIGN = 316; - public static readonly DOUBLE_VERTICAL_SIGN = 317; - public static readonly DOUBLE_HYPNEN_SIGN = 318; - public static readonly SLASH_SIGN = 319; - public static readonly DOT_ID = 320; - public static readonly PLUS_DOT_ID = 321; - public static readonly STRING_LITERAL = 322; - public static readonly DIG_LITERAL = 323; - public static readonly REAL_LITERAL = 324; - public static readonly BIT_STRING = 325; - public static readonly ID_LITERAL = 326; - public static readonly PLUS_ID_LITERAL = 327; - public static readonly FILE_PATH = 328; + public static readonly UNIQUE = 257; + public static readonly KEY = 258; + public static readonly PERIOD = 259; + public static readonly SYSTEM_TIME = 260; + public static readonly ENFORCED = 261; + public static readonly METADATA = 262; + public static readonly VIRTUAL = 263; + public static readonly ZONE = 264; + public static readonly STRING = 265; + public static readonly ARRAY = 266; + public static readonly MAP = 267; + public static readonly CHAR = 268; + public static readonly VARCHAR = 269; + public static readonly BINARY = 270; + public static readonly VARBINARY = 271; + public static readonly BYTES = 272; + public static readonly DECIMAL = 273; + public static readonly DEC = 274; + public static readonly NUMERIC = 275; + public static readonly TINYINT = 276; + public static readonly SMALLINT = 277; + public static readonly INT = 278; + public static readonly INTEGER = 279; + public static readonly BIGINT = 280; + public static readonly FLOAT = 281; + public static readonly DOUBLE = 282; + public static readonly DATE = 283; + public static readonly TIME = 284; + public static readonly TIMESTAMP = 285; + public static readonly TIMESTAMP_LTZ = 286; + public static readonly MULTISET = 287; + public static readonly BOOLEAN = 288; + public static readonly RAW = 289; + public static readonly ROW = 290; + public static readonly NULL = 291; + public static readonly DATETIME = 292; + public static readonly EQUAL_SYMBOL = 293; + public static readonly GREATER_SYMBOL = 294; + public static readonly LESS_SYMBOL = 295; + public static readonly EXCLAMATION_SYMBOL = 296; + public static readonly BIT_NOT_OP = 297; + public static readonly BIT_OR_OP = 298; + public static readonly BIT_AND_OP = 299; + public static readonly BIT_XOR_OP = 300; + public static readonly DOT = 301; + public static readonly LS_BRACKET = 302; + public static readonly RS_BRACKET = 303; + public static readonly LR_BRACKET = 304; + public static readonly RR_BRACKET = 305; + public static readonly COMMA = 306; + public static readonly SEMICOLON = 307; + public static readonly AT_SIGN = 308; + public static readonly SINGLE_QUOTE_SYMB = 309; + public static readonly DOUBLE_QUOTE_SYMB = 310; + public static readonly REVERSE_QUOTE_SYMB = 311; + public static readonly COLON_SYMB = 312; + public static readonly ASTERISK_SIGN = 313; + public static readonly UNDERLINE_SIGN = 314; + public static readonly HYPNEN_SIGN = 315; + public static readonly ADD_SIGN = 316; + public static readonly PENCENT_SIGN = 317; + public static readonly DOUBLE_VERTICAL_SIGN = 318; + public static readonly DOUBLE_HYPNEN_SIGN = 319; + public static readonly SLASH_SIGN = 320; + public static readonly DOT_ID = 321; + public static readonly PLUS_DOT_ID = 322; + public static readonly STRING_LITERAL = 323; + public static readonly DIG_LITERAL = 324; + public static readonly REAL_LITERAL = 325; + public static readonly BIT_STRING = 326; + public static readonly ID_LITERAL = 327; + public static readonly PLUS_ID_LITERAL = 328; + public static readonly FILE_PATH = 329; public static readonly EOF = Token.EOF; public static readonly RULE_program = 0; public static readonly RULE_statement = 1; @@ -408,99 +409,103 @@ export default class FlinkSqlParser extends Parser { public static readonly RULE_alterTable = 57; public static readonly RULE_renameDefinition = 58; public static readonly RULE_setKeyValueDefinition = 59; - public static readonly RULE_alertView = 60; - public static readonly RULE_alterDatabase = 61; - public static readonly RULE_alterFunction = 62; - public static readonly RULE_dropCatalog = 63; - public static readonly RULE_dropTable = 64; - public static readonly RULE_dropDatabase = 65; - public static readonly RULE_dropView = 66; - public static readonly RULE_dropFunction = 67; - public static readonly RULE_insertStatement = 68; - public static readonly RULE_insertSimpleStatement = 69; - public static readonly RULE_insertPartitionDefinition = 70; - public static readonly RULE_valuesDefinition = 71; - public static readonly RULE_valuesRowDefinition = 72; - public static readonly RULE_insertMulStatement = 73; - public static readonly RULE_queryStatement = 74; - public static readonly RULE_valuesCaluse = 75; - public static readonly RULE_withItem = 76; - public static readonly RULE_withItemName = 77; - public static readonly RULE_selectStatement = 78; - public static readonly RULE_selectClause = 79; - public static readonly RULE_projectItemDefinition = 80; - public static readonly RULE_fromClause = 81; - public static readonly RULE_tableExpression = 82; - public static readonly RULE_tableReference = 83; - public static readonly RULE_tablePrimary = 84; - public static readonly RULE_tablePath = 85; - public static readonly RULE_systemTimePeriod = 86; - public static readonly RULE_dateTimeExpression = 87; - public static readonly RULE_joinCondition = 88; - public static readonly RULE_whereClause = 89; - public static readonly RULE_groupByClause = 90; - public static readonly RULE_groupItemDefinition = 91; - public static readonly RULE_havingClause = 92; - public static readonly RULE_orderByCaluse = 93; - public static readonly RULE_orderItemDefition = 94; - public static readonly RULE_limitClause = 95; - public static readonly RULE_windowClause = 96; - public static readonly RULE_namedWindow = 97; - public static readonly RULE_windowSpec = 98; - public static readonly RULE_sortItem = 99; - public static readonly RULE_windowFrame = 100; - public static readonly RULE_frameBound = 101; - public static readonly RULE_expression = 102; - public static readonly RULE_booleanExpression = 103; - public static readonly RULE_predicate = 104; - public static readonly RULE_likePredicate = 105; - public static readonly RULE_valueExpression = 106; - public static readonly RULE_primaryExpression = 107; - public static readonly RULE_functionName = 108; - public static readonly RULE_dereferenceDefinition = 109; - public static readonly RULE_correlationName = 110; - public static readonly RULE_qualifiedName = 111; - public static readonly RULE_interval = 112; - public static readonly RULE_errorCapturingMultiUnitsInterval = 113; - public static readonly RULE_multiUnitsInterval = 114; - public static readonly RULE_errorCapturingUnitToUnitInterval = 115; - public static readonly RULE_unitToUnitInterval = 116; - public static readonly RULE_intervalValue = 117; - public static readonly RULE_columnAlias = 118; - public static readonly RULE_tableAlias = 119; - public static readonly RULE_errorCapturingIdentifier = 120; - public static readonly RULE_errorCapturingIdentifierExtra = 121; - public static readonly RULE_identifierList = 122; - public static readonly RULE_identifierSeq = 123; - public static readonly RULE_identifier = 124; - public static readonly RULE_strictIdentifier = 125; - public static readonly RULE_unquotedIdentifier = 126; - public static readonly RULE_quotedIdentifier = 127; - public static readonly RULE_whenClause = 128; - public static readonly RULE_uidList = 129; - public static readonly RULE_uid = 130; - public static readonly RULE_plusUid = 131; - public static readonly RULE_withOption = 132; - public static readonly RULE_ifNotExists = 133; - public static readonly RULE_ifExists = 134; - public static readonly RULE_tablePropertyList = 135; - public static readonly RULE_tableProperty = 136; - public static readonly RULE_tablePropertyKey = 137; - public static readonly RULE_tablePropertyValue = 138; - public static readonly RULE_logicalOperator = 139; - public static readonly RULE_comparisonOperator = 140; - public static readonly RULE_bitOperator = 141; - public static readonly RULE_mathOperator = 142; - public static readonly RULE_unaryOperator = 143; - public static readonly RULE_fullColumnName = 144; - public static readonly RULE_constant = 145; - public static readonly RULE_stringLiteral = 146; - public static readonly RULE_decimalLiteral = 147; - public static readonly RULE_booleanLiteral = 148; - public static readonly RULE_setQuantifier = 149; - public static readonly RULE_ansiNonReserved = 150; - public static readonly RULE_strictNonReserved = 151; - public static readonly RULE_nonReserved = 152; + public static readonly RULE_addConstraint = 60; + public static readonly RULE_dropConstraint = 61; + public static readonly RULE_addUnique = 62; + public static readonly RULE_notForced = 63; + public static readonly RULE_alertView = 64; + public static readonly RULE_alterDatabase = 65; + public static readonly RULE_alterFunction = 66; + public static readonly RULE_dropCatalog = 67; + public static readonly RULE_dropTable = 68; + public static readonly RULE_dropDatabase = 69; + public static readonly RULE_dropView = 70; + public static readonly RULE_dropFunction = 71; + public static readonly RULE_insertStatement = 72; + public static readonly RULE_insertSimpleStatement = 73; + public static readonly RULE_insertPartitionDefinition = 74; + public static readonly RULE_valuesDefinition = 75; + public static readonly RULE_valuesRowDefinition = 76; + public static readonly RULE_insertMulStatement = 77; + public static readonly RULE_queryStatement = 78; + public static readonly RULE_valuesCaluse = 79; + public static readonly RULE_withItem = 80; + public static readonly RULE_withItemName = 81; + public static readonly RULE_selectStatement = 82; + public static readonly RULE_selectClause = 83; + public static readonly RULE_projectItemDefinition = 84; + public static readonly RULE_fromClause = 85; + public static readonly RULE_tableExpression = 86; + public static readonly RULE_tableReference = 87; + public static readonly RULE_tablePrimary = 88; + public static readonly RULE_tablePath = 89; + public static readonly RULE_systemTimePeriod = 90; + public static readonly RULE_dateTimeExpression = 91; + public static readonly RULE_joinCondition = 92; + public static readonly RULE_whereClause = 93; + public static readonly RULE_groupByClause = 94; + public static readonly RULE_groupItemDefinition = 95; + public static readonly RULE_havingClause = 96; + public static readonly RULE_orderByCaluse = 97; + public static readonly RULE_orderItemDefition = 98; + public static readonly RULE_limitClause = 99; + public static readonly RULE_windowClause = 100; + public static readonly RULE_namedWindow = 101; + public static readonly RULE_windowSpec = 102; + public static readonly RULE_sortItem = 103; + public static readonly RULE_windowFrame = 104; + public static readonly RULE_frameBound = 105; + public static readonly RULE_expression = 106; + public static readonly RULE_booleanExpression = 107; + public static readonly RULE_predicate = 108; + public static readonly RULE_likePredicate = 109; + public static readonly RULE_valueExpression = 110; + public static readonly RULE_primaryExpression = 111; + public static readonly RULE_functionName = 112; + public static readonly RULE_dereferenceDefinition = 113; + public static readonly RULE_correlationName = 114; + public static readonly RULE_qualifiedName = 115; + public static readonly RULE_interval = 116; + public static readonly RULE_errorCapturingMultiUnitsInterval = 117; + public static readonly RULE_multiUnitsInterval = 118; + public static readonly RULE_errorCapturingUnitToUnitInterval = 119; + public static readonly RULE_unitToUnitInterval = 120; + public static readonly RULE_intervalValue = 121; + public static readonly RULE_columnAlias = 122; + public static readonly RULE_tableAlias = 123; + public static readonly RULE_errorCapturingIdentifier = 124; + public static readonly RULE_errorCapturingIdentifierExtra = 125; + public static readonly RULE_identifierList = 126; + public static readonly RULE_identifierSeq = 127; + public static readonly RULE_identifier = 128; + public static readonly RULE_strictIdentifier = 129; + public static readonly RULE_unquotedIdentifier = 130; + public static readonly RULE_quotedIdentifier = 131; + public static readonly RULE_whenClause = 132; + public static readonly RULE_uidList = 133; + public static readonly RULE_uid = 134; + public static readonly RULE_plusUid = 135; + public static readonly RULE_withOption = 136; + public static readonly RULE_ifNotExists = 137; + public static readonly RULE_ifExists = 138; + public static readonly RULE_tablePropertyList = 139; + public static readonly RULE_tableProperty = 140; + public static readonly RULE_tablePropertyKey = 141; + public static readonly RULE_tablePropertyValue = 142; + public static readonly RULE_logicalOperator = 143; + public static readonly RULE_comparisonOperator = 144; + public static readonly RULE_bitOperator = 145; + public static readonly RULE_mathOperator = 146; + public static readonly RULE_unaryOperator = 147; + public static readonly RULE_fullColumnName = 148; + public static readonly RULE_constant = 149; + public static readonly RULE_stringLiteral = 150; + public static readonly RULE_decimalLiteral = 151; + public static readonly RULE_booleanLiteral = 152; + public static readonly RULE_setQuantifier = 153; + public static readonly RULE_ansiNonReserved = 154; + public static readonly RULE_strictNonReserved = 155; + public static readonly RULE_nonReserved = 156; public static readonly literalNames: (string | null)[] = [ null, null, null, null, "'SELECT'", @@ -687,6 +692,7 @@ export default class FlinkSqlParser extends Parser { "'CATALOGS'", "'VIEWS'", "'JARS'", "'PRIMARY'", + "'UNIQUE'", "'KEY'", "'PERIOD'", "'SYSTEM_TIME'", "'ENFORCED'", @@ -893,8 +899,8 @@ export default class FlinkSqlParser extends Parser { "ENGINE", "CATALOGS", "VIEWS", "JARS", "PRIMARY", - "KEY", "PERIOD", - "SYSTEM_TIME", + "UNIQUE", "KEY", + "PERIOD", "SYSTEM_TIME", "ENFORCED", "METADATA", "VIRTUAL", @@ -965,9 +971,10 @@ export default class FlinkSqlParser extends Parser { "partitionDefinition", "transformList", "transform", "transformArgument", "likeDefinition", "sourceTable", "likeOption", "createCatalog", "createDatabase", "createView", "createFunction", "usingClause", "jarFileName", "alterTable", - "renameDefinition", "setKeyValueDefinition", "alertView", "alterDatabase", - "alterFunction", "dropCatalog", "dropTable", "dropDatabase", "dropView", - "dropFunction", "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", + "renameDefinition", "setKeyValueDefinition", "addConstraint", "dropConstraint", + "addUnique", "notForced", "alertView", "alterDatabase", "alterFunction", + "dropCatalog", "dropTable", "dropDatabase", "dropView", "dropFunction", + "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", "valuesDefinition", "valuesRowDefinition", "insertMulStatement", "queryStatement", "valuesCaluse", "withItem", "withItemName", "selectStatement", "selectClause", "projectItemDefinition", "fromClause", "tableExpression", "tableReference", @@ -1009,9 +1016,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 306; + this.state = 314; this.statement(); - this.state = 307; + this.state = 315; this.match(FlinkSqlParser.EOF); } } @@ -1036,9 +1043,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 309; + this.state = 317; this.sqlStatements(); - this.state = 310; + this.state = 318; this.match(FlinkSqlParser.EOF); } } @@ -1064,12 +1071,12 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 319; + this.state = 327; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===4 || _la===6 || _la===36 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 570479885) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 12545) !== 0) || _la===212 || _la===213 || _la===303 || _la===306) { + while (_la===4 || _la===6 || _la===36 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 570479885) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 12545) !== 0) || _la===212 || _la===213 || _la===304 || _la===307) { { - this.state = 317; + this.state = 325; this._errHandler.sync(this); switch (this._input.LA(1)) { case 4: @@ -1091,25 +1098,25 @@ export default class FlinkSqlParser extends Parser { case 117: case 212: case 213: - case 303: + case 304: { - this.state = 312; + this.state = 320; this.sqlStatement(); - this.state = 314; + this.state = 322; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 0, this._ctx) ) { case 1: { - this.state = 313; + this.state = 321; this.match(FlinkSqlParser.SEMICOLON); } break; } } break; - case 306: + case 307: { - this.state = 316; + this.state = 324; this.emptyStatement(); } break; @@ -1117,7 +1124,7 @@ export default class FlinkSqlParser extends Parser { throw new NoViableAltException(this); } } - this.state = 321; + this.state = 329; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1142,90 +1149,90 @@ export default class FlinkSqlParser extends Parser { let localctx: SqlStatementContext = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 334; + this.state = 342; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 3, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 322; + this.state = 330; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 323; + this.state = 331; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 324; + this.state = 332; this.describeStatement(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 325; + this.state = 333; this.explainStatement(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 326; + this.state = 334; this.useStatement(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 327; + this.state = 335; this.showStatememt(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 328; + this.state = 336; this.loadStatement(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 329; + this.state = 337; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 330; + this.state = 338; this.setStatememt(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 331; + this.state = 339; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 332; + this.state = 340; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 333; + this.state = 341; this.dtAddStatement(); } break; @@ -1252,7 +1259,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 336; + this.state = 344; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1275,104 +1282,104 @@ export default class FlinkSqlParser extends Parser { let localctx: DdlStatementContext = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 352; + this.state = 360; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 4, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 338; + this.state = 346; this.createTable(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 339; + this.state = 347; this.createDatabase(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 340; + this.state = 348; this.createView(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 341; + this.state = 349; this.createFunction(); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 342; + this.state = 350; this.createCatalog(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 343; + this.state = 351; this.alterTable(); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 344; + this.state = 352; this.alertView(); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 345; + this.state = 353; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 346; + this.state = 354; this.alterFunction(); } break; case 10: this.enterOuterAlt(localctx, 10); { - this.state = 347; + this.state = 355; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localctx, 11); { - this.state = 348; + this.state = 356; this.dropTable(); } break; case 12: this.enterOuterAlt(localctx, 12); { - this.state = 349; + this.state = 357; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localctx, 13); { - this.state = 350; + this.state = 358; this.dropView(); } break; case 14: this.enterOuterAlt(localctx, 14); { - this.state = 351; + this.state = 359; this.dropFunction(); } break; @@ -1397,16 +1404,16 @@ export default class FlinkSqlParser extends Parser { let localctx: DmlStatementContext = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 356; + this.state = 364; this._errHandler.sync(this); switch (this._input.LA(1)) { case 4: case 70: case 72: - case 303: + case 304: this.enterOuterAlt(localctx, 1); { - this.state = 354; + this.state = 362; this.queryStatement(0); } break; @@ -1414,7 +1421,7 @@ export default class FlinkSqlParser extends Parser { case 80: this.enterOuterAlt(localctx, 2); { - this.state = 355; + this.state = 363; this.insertStatement(); } break; @@ -1444,7 +1451,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 358; + this.state = 366; _la = this._input.LA(1); if(!(_la===36 || _la===84)) { this._errHandler.recoverInline(this); @@ -1453,7 +1460,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 359; + this.state = 367; this.uid(); } } @@ -1478,24 +1485,24 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 361; + this.state = 369; this.match(FlinkSqlParser.EXPLAIN); - this.state = 365; + this.state = 373; this._errHandler.sync(this); switch (this._input.LA(1)) { case 87: case 88: case 89: { - this.state = 362; + this.state = 370; this.explainDetails(); } break; case 86: { - this.state = 363; + this.state = 371; this.match(FlinkSqlParser.PLAN); - this.state = 364; + this.state = 372; this.match(FlinkSqlParser.FOR); } break; @@ -1505,29 +1512,29 @@ export default class FlinkSqlParser extends Parser { case 78: case 79: case 80: - case 303: + case 304: break; default: break; } - this.state = 370; + this.state = 378; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 7, this._ctx) ) { case 1: { - this.state = 367; + this.state = 375; this.dmlStatement(); } break; case 2: { - this.state = 368; + this.state = 376; this.insertSimpleStatement(); } break; case 3: { - this.state = 369; + this.state = 377; this.insertMulStatement(); } break; @@ -1556,21 +1563,21 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 372; + this.state = 380; this.explainDetail(); - this.state = 377; + this.state = 385; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 373; + this.state = 381; this.match(FlinkSqlParser.COMMA); - this.state = 374; + this.state = 382; this.explainDetail(); } } - this.state = 379; + this.state = 387; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1598,7 +1605,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 380; + this.state = 388; _la = this._input.LA(1); if(!(((((_la - 87)) & ~0x1F) === 0 && ((1 << (_la - 87)) & 7) !== 0))) { this._errHandler.recoverInline(this); @@ -1629,32 +1636,32 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 22, FlinkSqlParser.RULE_useStatement); let _la: number; try { - this.state = 388; + this.state = 396; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 10, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 382; + this.state = 390; this.match(FlinkSqlParser.USE); - this.state = 384; + this.state = 392; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===239) { { - this.state = 383; + this.state = 391; this.match(FlinkSqlParser.CATALOG); } } - this.state = 386; + this.state = 394; this.uid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 387; + this.state = 395; this.useModuleStatement(); } break; @@ -1682,25 +1689,25 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 390; + this.state = 398; this.match(FlinkSqlParser.USE); - this.state = 391; + this.state = 399; this.match(FlinkSqlParser.MODULES); - this.state = 392; + this.state = 400; this.uid(); - this.state = 397; + this.state = 405; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 393; + this.state = 401; this.match(FlinkSqlParser.COMMA); - this.state = 394; + this.state = 402; this.uid(); } } - this.state = 399; + this.state = 407; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1726,15 +1733,15 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 26, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 435; + this.state = 443; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 17, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 400; + this.state = 408; this.match(FlinkSqlParser.SHOW); - this.state = 401; + this.state = 409; _la = this._input.LA(1); if(!(_la===193 || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 7) !== 0))) { this._errHandler.recoverInline(this); @@ -1748,11 +1755,11 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 402; + this.state = 410; this.match(FlinkSqlParser.SHOW); - this.state = 403; + this.state = 411; this.match(FlinkSqlParser.CURRENT); - this.state = 404; + this.state = 412; _la = this._input.LA(1); if(!(_la===192 || _la===239)) { this._errHandler.recoverInline(this); @@ -1766,16 +1773,16 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 405; + this.state = 413; this.match(FlinkSqlParser.SHOW); - this.state = 406; + this.state = 414; this.match(FlinkSqlParser.TABLES); - this.state = 409; + this.state = 417; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===5 || _la===24) { { - this.state = 407; + this.state = 415; _la = this._input.LA(1); if(!(_la===5 || _la===24)) { this._errHandler.recoverInline(this); @@ -1784,17 +1791,17 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 408; + this.state = 416; this.uid(); } } - this.state = 412; + this.state = 420; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25 || _la===29) { { - this.state = 411; + this.state = 419; this.likePredicate(); } } @@ -1804,11 +1811,11 @@ export default class FlinkSqlParser extends Parser { case 4: this.enterOuterAlt(localctx, 4); { - this.state = 414; + this.state = 422; this.match(FlinkSqlParser.SHOW); - this.state = 415; + this.state = 423; this.match(FlinkSqlParser.COLUMNS); - this.state = 416; + this.state = 424; _la = this._input.LA(1); if(!(_la===5 || _la===24)) { this._errHandler.recoverInline(this); @@ -1817,14 +1824,14 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 417; + this.state = 425; this.uid(); - this.state = 419; + this.state = 427; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25 || _la===29) { { - this.state = 418; + this.state = 426; this.likePredicate(); } } @@ -1834,11 +1841,11 @@ export default class FlinkSqlParser extends Parser { case 5: this.enterOuterAlt(localctx, 5); { - this.state = 421; + this.state = 429; this.match(FlinkSqlParser.SHOW); - this.state = 422; + this.state = 430; this.match(FlinkSqlParser.CREATE); - this.state = 423; + this.state = 431; _la = this._input.LA(1); if(!(_la===74 || _la===76)) { this._errHandler.recoverInline(this); @@ -1847,45 +1854,45 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 424; + this.state = 432; this.uid(); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 425; + this.state = 433; this.match(FlinkSqlParser.SHOW); - this.state = 427; + this.state = 435; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===53) { { - this.state = 426; + this.state = 434; this.match(FlinkSqlParser.USER); } } - this.state = 429; + this.state = 437; this.match(FlinkSqlParser.FUNCTIONS); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 430; + this.state = 438; this.match(FlinkSqlParser.SHOW); - this.state = 432; + this.state = 440; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===52) { { - this.state = 431; + this.state = 439; this.match(FlinkSqlParser.FULL); } } - this.state = 434; + this.state = 442; this.match(FlinkSqlParser.MODULES); } break; @@ -1912,20 +1919,20 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 437; + this.state = 445; this.match(FlinkSqlParser.LOAD); - this.state = 438; + this.state = 446; this.match(FlinkSqlParser.MODULE); - this.state = 439; + this.state = 447; this.uid(); - this.state = 442; + this.state = 450; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 18, this._ctx) ) { case 1: { - this.state = 440; + this.state = 448; this.match(FlinkSqlParser.WITH); - this.state = 441; + this.state = 449; this.tablePropertyList(); } break; @@ -1953,11 +1960,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 444; + this.state = 452; this.match(FlinkSqlParser.UNLOAD); - this.state = 445; + this.state = 453; this.match(FlinkSqlParser.MODULE); - this.state = 446; + this.state = 454; this.uid(); } } @@ -1982,14 +1989,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 448; + this.state = 456; this.match(FlinkSqlParser.SET); - this.state = 450; + this.state = 458; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 19, this._ctx) ) { case 1: { - this.state = 449; + this.state = 457; this.tableProperty(); } break; @@ -2017,14 +2024,14 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 452; + this.state = 460; this.match(FlinkSqlParser.RESET); - this.state = 454; + this.state = 462; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 20, this._ctx) ) { case 1: { - this.state = 453; + this.state = 461; this.tablePropertyKey(); } break; @@ -2053,7 +2060,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 456; + this.state = 464; _la = this._input.LA(1); if(!(_la===6 || _la===82)) { this._errHandler.recoverInline(this); @@ -2062,9 +2069,9 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 457; + this.state = 465; this.match(FlinkSqlParser.JAR); - this.state = 458; + this.state = 466; this.jarFileName(); } } @@ -2088,41 +2095,16 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 38, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 499; + this.state = 507; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 24, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 460; - this.match(FlinkSqlParser.ADD); - this.state = 461; - this.match(FlinkSqlParser.JAR); - this.state = 462; - this.match(FlinkSqlParser.WITH); - this.state = 463; - this.match(FlinkSqlParser.FILE_PATH); - this.state = 466; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la===7) { - { - this.state = 464; - this.match(FlinkSqlParser.AS); - this.state = 465; - this.uid(); - } - } - - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { this.state = 468; this.match(FlinkSqlParser.ADD); this.state = 469; - this.match(FlinkSqlParser.FILE); + this.match(FlinkSqlParser.JAR); this.state = 470; this.match(FlinkSqlParser.WITH); this.state = 471; @@ -2139,14 +2121,39 @@ export default class FlinkSqlParser extends Parser { } } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 476; + this.match(FlinkSqlParser.ADD); + this.state = 477; + this.match(FlinkSqlParser.FILE); this.state = 478; + this.match(FlinkSqlParser.WITH); + this.state = 479; + this.match(FlinkSqlParser.FILE_PATH); + this.state = 482; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===7) { + { + this.state = 480; + this.match(FlinkSqlParser.AS); + this.state = 481; + this.uid(); + } + } + + this.state = 486; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===113) { { - this.state = 476; + this.state = 484; this.match(FlinkSqlParser.RENAME); - this.state = 477; + this.state = 485; this.uid(); } } @@ -2156,9 +2163,9 @@ export default class FlinkSqlParser extends Parser { case 3: this.enterOuterAlt(localctx, 3); { - this.state = 480; + this.state = 488; this.match(FlinkSqlParser.ADD); - this.state = 481; + this.state = 489; _la = this._input.LA(1); if(!(((((_la - 246)) & ~0x1F) === 0 && ((1 << (_la - 246)) & 31) !== 0))) { this._errHandler.recoverInline(this); @@ -2167,47 +2174,47 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 482; + this.state = 490; this.match(FlinkSqlParser.WITH); - this.state = 483; + this.state = 491; this.match(FlinkSqlParser.FILE_PATH); - this.state = 484; + this.state = 492; this.match(FlinkSqlParser.RENAME); - this.state = 485; + this.state = 493; this.uid(); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 486; + this.state = 494; this.match(FlinkSqlParser.ADD); - this.state = 487; + this.state = 495; this.match(FlinkSqlParser.PYTHON_PARAMETER); - this.state = 488; + this.state = 496; this.match(FlinkSqlParser.FILE_PATH); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 489; - this.match(FlinkSqlParser.ADD); - this.state = 490; - this.match(FlinkSqlParser.ENGINE); - this.state = 491; - this.match(FlinkSqlParser.FILE); - this.state = 492; - this.match(FlinkSqlParser.WITH); - this.state = 493; - this.match(FlinkSqlParser.FILE_PATH); - this.state = 494; - this.match(FlinkSqlParser.RENAME); - this.state = 495; - this.uid(); - this.state = 496; - this.match(FlinkSqlParser.KEY); this.state = 497; + this.match(FlinkSqlParser.ADD); + this.state = 498; + this.match(FlinkSqlParser.ENGINE); + this.state = 499; + this.match(FlinkSqlParser.FILE); + this.state = 500; + this.match(FlinkSqlParser.WITH); + this.state = 501; + this.match(FlinkSqlParser.FILE_PATH); + this.state = 502; + this.match(FlinkSqlParser.RENAME); + this.state = 503; + this.uid(); + this.state = 504; + this.match(FlinkSqlParser.KEY); + this.state = 505; this.uid(); } break; @@ -2234,18 +2241,18 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 503; + this.state = 511; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 25, this._ctx) ) { case 1: { - this.state = 501; + this.state = 509; this.simpleCreateTable(); } break; case 2: { - this.state = 502; + this.state = 510; this.createTableAsSelect(); } break; @@ -2275,120 +2282,120 @@ export default class FlinkSqlParser extends Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 505; + this.state = 513; this.match(FlinkSqlParser.CREATE); - this.state = 507; + this.state = 515; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===166) { { - this.state = 506; + this.state = 514; this.match(FlinkSqlParser.TEMPORARY); } } - this.state = 509; + this.state = 517; this.match(FlinkSqlParser.TABLE); - this.state = 511; + this.state = 519; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 510; + this.state = 518; this.ifNotExists(); } } - this.state = 513; + this.state = 521; this.sourceTable(); - this.state = 514; + this.state = 522; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 515; + this.state = 523; this.columnOptionDefinition(); - this.state = 520; + this.state = 528; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 516; + this.state = 524; this.match(FlinkSqlParser.COMMA); - this.state = 517; + this.state = 525; this.columnOptionDefinition(); } } } - this.state = 522; + this.state = 530; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 28, this._ctx); } - this.state = 525; + this.state = 533; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 29, this._ctx) ) { case 1: { - this.state = 523; + this.state = 531; this.match(FlinkSqlParser.COMMA); - this.state = 524; + this.state = 532; this.watermarkDefinition(); } break; } - this.state = 529; + this.state = 537; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 30, this._ctx) ) { case 1: { - this.state = 527; + this.state = 535; this.match(FlinkSqlParser.COMMA); - this.state = 528; + this.state = 536; this.tableConstraint(); } break; } - this.state = 533; + this.state = 541; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===305) { + if (_la===306) { { - this.state = 531; + this.state = 539; this.match(FlinkSqlParser.COMMA); - this.state = 532; + this.state = 540; this.selfDefinitionClause(); } } - this.state = 535; + this.state = 543; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 537; + this.state = 545; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===115) { { - this.state = 536; + this.state = 544; this.commentSpec(); } } - this.state = 540; + this.state = 548; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===200) { { - this.state = 539; + this.state = 547; this.partitionDefinition(); } } - this.state = 542; + this.state = 550; this.withOption(); - this.state = 544; + this.state = 552; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===29) { { - this.state = 543; + this.state = 551; this.likeDefinition(); } } @@ -2417,32 +2424,32 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 546; + this.state = 554; this.match(FlinkSqlParser.CREATE); - this.state = 547; + this.state = 555; this.match(FlinkSqlParser.TABLE); - this.state = 549; + this.state = 557; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 548; + this.state = 556; this.ifNotExists(); } } - this.state = 551; + this.state = 559; this.sourceTable(); - this.state = 552; + this.state = 560; this.withOption(); - this.state = 555; + this.state = 563; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===7) { { - this.state = 553; + this.state = 561; this.match(FlinkSqlParser.AS); - this.state = 554; + this.state = 562; this.queryStatement(0); } } @@ -2468,27 +2475,27 @@ export default class FlinkSqlParser extends Parser { let localctx: ColumnOptionDefinitionContext = new ColumnOptionDefinitionContext(this, this._ctx, this.state); this.enterRule(localctx, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 560; + this.state = 568; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 37, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 557; + this.state = 565; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 558; + this.state = 566; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 559; + this.state = 567; this.computedColumnDefinition(); } break; @@ -2516,26 +2523,26 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 562; + this.state = 570; this.columnName(); - this.state = 563; + this.state = 571; this.columnType(); - this.state = 565; + this.state = 573; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185 || _la===256) { { - this.state = 564; + this.state = 572; this.columnConstraint(); } } - this.state = 568; + this.state = 576; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===115) { { - this.state = 567; + this.state = 575; this.commentSpec(); } } @@ -2561,20 +2568,20 @@ export default class FlinkSqlParser extends Parser { let localctx: ColumnNameContext = new ColumnNameContext(this, this._ctx, this.state); this.enterRule(localctx, 50, FlinkSqlParser.RULE_columnName); try { - this.state = 572; + this.state = 580; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 40, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 570; + this.state = 578; this.plusUid(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 571; + this.state = 579; this.expression(); } break; @@ -2602,27 +2609,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 574; + this.state = 582; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 575; + this.state = 583; this.columnName(); - this.state = 580; + this.state = 588; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 576; + this.state = 584; this.match(FlinkSqlParser.COMMA); - this.state = 577; + this.state = 585; this.columnName(); } } - this.state = 582; + this.state = 590; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 583; + this.state = 591; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2646,18 +2653,18 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 54, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 622; + this.state = 630; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 282: - case 287: - case 290: + case 283: + case 288: + case 291: this.enterOuterAlt(localctx, 1); { - this.state = 585; + this.state = 593; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 289) !== 0))) { + if(!(((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 289) !== 0))) { localctx._typeName = this._errHandler.recoverInline(this); } else { @@ -2666,65 +2673,65 @@ export default class FlinkSqlParser extends Parser { } } break; - case 264: - case 267: + case 265: case 268: case 269: case 270: case 271: - case 275: + case 272: case 276: case 277: case 278: case 279: - case 283: - case 285: - case 291: + case 280: + case 284: + case 286: + case 292: this.enterOuterAlt(localctx, 2); { - this.state = 586; + this.state = 594; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 136902905) !== 0))) { + if(!(((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 136902905) !== 0))) { localctx._typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 588; + this.state = 596; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 587; + this.state = 595; this.lengthOneDimension(); } } } break; - case 284: + case 285: this.enterOuterAlt(localctx, 3); { - this.state = 590; + this.state = 598; localctx._typeName = this.match(FlinkSqlParser.TIMESTAMP); - this.state = 592; + this.state = 600; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 591; + this.state = 599; this.lengthOneDimension(); } } - this.state = 600; + this.state = 608; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===70 || _la===71) { { - this.state = 594; + this.state = 602; _la = this._input.LA(1); if(!(_la===70 || _la===71)) { this._errHandler.recoverInline(this); @@ -2733,125 +2740,125 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 596; + this.state = 604; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===224) { { - this.state = 595; + this.state = 603; this.match(FlinkSqlParser.LOCAL); } } - this.state = 598; + this.state = 606; this.match(FlinkSqlParser.TIME); - this.state = 599; + this.state = 607; this.match(FlinkSqlParser.ZONE); } } } break; - case 272: case 273: case 274: - case 280: + case 275: case 281: + case 282: this.enterOuterAlt(localctx, 4); { - this.state = 602; + this.state = 610; localctx._typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 775) !== 0))) { + if(!(((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 775) !== 0))) { localctx._typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 604; + this.state = 612; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 603; + this.state = 611; this.lengthTwoOptionalDimension(); } } } break; - case 265: - case 286: + case 266: + case 287: this.enterOuterAlt(localctx, 5); { - this.state = 606; + this.state = 614; localctx._type_ = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===265 || _la===286)) { + if(!(_la===266 || _la===287)) { localctx._type_ = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 608; + this.state = 616; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===295) { { - this.state = 607; + this.state = 615; this.lengthOneTypeDimension(); } } } break; - case 266: + case 267: this.enterOuterAlt(localctx, 6); { - this.state = 610; + this.state = 618; localctx._type_ = this.match(FlinkSqlParser.MAP); - this.state = 612; + this.state = 620; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===295) { { - this.state = 611; + this.state = 619; this.mapTypeDimension(); } } } break; - case 289: + case 290: this.enterOuterAlt(localctx, 7); { - this.state = 614; + this.state = 622; localctx._type_ = this.match(FlinkSqlParser.ROW); - this.state = 616; + this.state = 624; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===294) { + if (_la===295) { { - this.state = 615; + this.state = 623; this.rowTypeDimension(); } } } break; - case 288: + case 289: this.enterOuterAlt(localctx, 8); { - this.state = 618; + this.state = 626; localctx._type_ = this.match(FlinkSqlParser.RAW); - this.state = 620; + this.state = 628; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 619; + this.state = 627; this.lengthTwoStringDimension(); } } @@ -2883,11 +2890,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 624; + this.state = 632; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 625; + this.state = 633; this.decimalLiteral(); - this.state = 626; + this.state = 634; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2913,23 +2920,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 628; + this.state = 636; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 629; + this.state = 637; this.decimalLiteral(); - this.state = 632; + this.state = 640; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===305) { + if (_la===306) { { - this.state = 630; + this.state = 638; this.match(FlinkSqlParser.COMMA); - this.state = 631; + this.state = 639; this.decimalLiteral(); } } - this.state = 634; + this.state = 642; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2955,23 +2962,23 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 636; + this.state = 644; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 637; + this.state = 645; this.stringLiteral(); - this.state = 640; + this.state = 648; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===305) { + if (_la===306) { { - this.state = 638; + this.state = 646; this.match(FlinkSqlParser.COMMA); - this.state = 639; + this.state = 647; this.stringLiteral(); } } - this.state = 642; + this.state = 650; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2996,11 +3003,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 644; + this.state = 652; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 645; + this.state = 653; this.columnType(); - this.state = 646; + this.state = 654; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3025,17 +3032,17 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 648; + this.state = 656; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 649; + this.state = 657; this.columnType(); { - this.state = 650; + this.state = 658; this.match(FlinkSqlParser.COMMA); - this.state = 651; + this.state = 659; this.columnType(); } - this.state = 653; + this.state = 661; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3061,31 +3068,31 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 655; + this.state = 663; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 656; - this.columnName(); - this.state = 657; - this.columnType(); this.state = 664; + this.columnName(); + this.state = 665; + this.columnType(); + this.state = 672; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 658; + this.state = 666; this.match(FlinkSqlParser.COMMA); - this.state = 659; + this.state = 667; this.columnName(); - this.state = 660; + this.state = 668; this.columnType(); } } - this.state = 666; + this.state = 674; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 667; + this.state = 675; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3111,25 +3118,25 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 671; + this.state = 679; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 669; + this.state = 677; this.match(FlinkSqlParser.CONSTRAINT); - this.state = 670; + this.state = 678; this.constraintName(); } } - this.state = 673; + this.state = 681; this.match(FlinkSqlParser.PRIMARY); - this.state = 674; + this.state = 682; this.match(FlinkSqlParser.KEY); - this.state = 675; + this.state = 683; this.match(FlinkSqlParser.NOT); - this.state = 676; + this.state = 684; this.match(FlinkSqlParser.ENFORCED); } } @@ -3154,9 +3161,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 678; + this.state = 686; this.match(FlinkSqlParser.COMMENT); - this.state = 679; + this.state = 687; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3182,30 +3189,30 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 681; + this.state = 689; this.columnName(); - this.state = 682; + this.state = 690; this.columnType(); - this.state = 683; + this.state = 691; this.match(FlinkSqlParser.METADATA); - this.state = 686; + this.state = 694; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===5) { { - this.state = 684; + this.state = 692; this.match(FlinkSqlParser.FROM); - this.state = 685; + this.state = 693; this.metadataKey(); } } - this.state = 689; + this.state = 697; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===262) { + if (_la===263) { { - this.state = 688; + this.state = 696; this.match(FlinkSqlParser.VIRTUAL); } } @@ -3233,7 +3240,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 691; + this.state = 699; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3259,18 +3266,18 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 693; + this.state = 701; this.columnName(); - this.state = 694; + this.state = 702; this.match(FlinkSqlParser.AS); - this.state = 695; + this.state = 703; this.computedColumnExpression(); - this.state = 697; + this.state = 705; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===115) { { - this.state = 696; + this.state = 704; this.commentSpec(); } } @@ -3298,7 +3305,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 699; + this.state = 707; this.expression(); } } @@ -3323,15 +3330,15 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 701; + this.state = 709; this.match(FlinkSqlParser.WATERMARK); - this.state = 702; + this.state = 710; this.match(FlinkSqlParser.FOR); - this.state = 703; + this.state = 711; this.expression(); - this.state = 704; + this.state = 712; this.match(FlinkSqlParser.AS); - this.state = 705; + this.state = 713; this.expression(); } } @@ -3357,27 +3364,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 709; + this.state = 717; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===185) { { - this.state = 707; + this.state = 715; this.match(FlinkSqlParser.CONSTRAINT); - this.state = 708; + this.state = 716; this.constraintName(); } } - this.state = 711; + this.state = 719; this.match(FlinkSqlParser.PRIMARY); - this.state = 712; + this.state = 720; this.match(FlinkSqlParser.KEY); - this.state = 713; + this.state = 721; this.columnNameList(); - this.state = 714; + this.state = 722; this.match(FlinkSqlParser.NOT); - this.state = 715; + this.state = 723; this.match(FlinkSqlParser.ENFORCED); } } @@ -3402,7 +3409,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 717; + this.state = 725; this.identifier(); } } @@ -3427,11 +3434,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 719; + this.state = 727; this.match(FlinkSqlParser.PERIOD); - this.state = 720; + this.state = 728; this.match(FlinkSqlParser.FOR); - this.state = 721; + this.state = 729; this.match(FlinkSqlParser.SYSTEM_TIME); } } @@ -3456,11 +3463,11 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 723; + this.state = 731; this.match(FlinkSqlParser.PARTITIONED); - this.state = 724; + this.state = 732; this.match(FlinkSqlParser.BY); - this.state = 725; + this.state = 733; this.transformList(); } } @@ -3486,27 +3493,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 727; + this.state = 735; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 728; + this.state = 736; this.transform(); - this.state = 733; + this.state = 741; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 729; + this.state = 737; this.match(FlinkSqlParser.COMMA); - this.state = 730; + this.state = 738; this.transform(); } } - this.state = 735; + this.state = 743; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 736; + this.state = 744; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3530,14 +3537,14 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 92, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 751; + this.state = 759; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 62, this._ctx) ) { case 1: localctx = new IdentityTransformContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 738; + this.state = 746; this.qualifiedName(); } break; @@ -3545,29 +3552,29 @@ export default class FlinkSqlParser extends Parser { localctx = new ApplyTransformContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 739; + this.state = 747; (localctx as ApplyTransformContext)._transformName = this.identifier(); - this.state = 740; + this.state = 748; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 741; + this.state = 749; this.transformArgument(); - this.state = 746; + this.state = 754; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 742; + this.state = 750; this.match(FlinkSqlParser.COMMA); - this.state = 743; + this.state = 751; this.transformArgument(); } } - this.state = 748; + this.state = 756; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 749; + this.state = 757; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3592,20 +3599,20 @@ export default class FlinkSqlParser extends Parser { let localctx: TransformArgumentContext = new TransformArgumentContext(this, this._ctx, this.state); this.enterRule(localctx, 94, FlinkSqlParser.RULE_transformArgument); try { - this.state = 755; + this.state = 763; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 63, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 753; + this.state = 761; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 754; + this.state = 762; this.constant(); } break; @@ -3633,32 +3640,32 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 757; + this.state = 765; this.match(FlinkSqlParser.LIKE); - this.state = 758; + this.state = 766; this.sourceTable(); - this.state = 767; + this.state = 775; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 65, this._ctx) ) { case 1: { - this.state = 759; + this.state = 767; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 763; + this.state = 771; this._errHandler.sync(this); _la = this._input.LA(1); while (((((_la - 233)) & ~0x1F) === 0 && ((1 << (_la - 233)) & 7) !== 0)) { { { - this.state = 760; + this.state = 768; this.likeOption(); } } - this.state = 765; + this.state = 773; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 766; + this.state = 774; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3686,7 +3693,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 769; + this.state = 777; this.uid(); } } @@ -3710,14 +3717,14 @@ export default class FlinkSqlParser extends Parser { this.enterRule(localctx, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 775; + this.state = 783; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 66, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 771; + this.state = 779; _la = this._input.LA(1); if(!(_la===233 || _la===234)) { this._errHandler.recoverInline(this); @@ -3726,7 +3733,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 772; + this.state = 780; _la = this._input.LA(1); if(!(_la===8 || _la===102 || _la===236)) { this._errHandler.recoverInline(this); @@ -3742,7 +3749,7 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 773; + this.state = 781; _la = this._input.LA(1); if(!(((((_la - 233)) & ~0x1F) === 0 && ((1 << (_la - 233)) & 7) !== 0))) { this._errHandler.recoverInline(this); @@ -3751,7 +3758,7 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 774; + this.state = 782; _la = this._input.LA(1); if(!(_la===167 || _la===237 || _la===238)) { this._errHandler.recoverInline(this); @@ -3786,13 +3793,13 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 777; + this.state = 785; this.match(FlinkSqlParser.CREATE); - this.state = 778; + this.state = 786; this.match(FlinkSqlParser.CATALOG); - this.state = 779; + this.state = 787; this.uid(); - this.state = 780; + this.state = 788; this.withOption(); } } @@ -3818,33 +3825,33 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 782; + this.state = 790; this.match(FlinkSqlParser.CREATE); - this.state = 783; + this.state = 791; this.match(FlinkSqlParser.DATABASE); - this.state = 785; + this.state = 793; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 784; + this.state = 792; this.ifNotExists(); } } - this.state = 787; + this.state = 795; this.uid(); - this.state = 789; + this.state = 797; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===115) { { - this.state = 788; + this.state = 796; this.commentSpec(); } } - this.state = 791; + this.state = 799; this.withOption(); } } @@ -3870,55 +3877,55 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 793; + this.state = 801; this.match(FlinkSqlParser.CREATE); - this.state = 795; + this.state = 803; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===166) { { - this.state = 794; + this.state = 802; this.match(FlinkSqlParser.TEMPORARY); } } - this.state = 797; + this.state = 805; this.match(FlinkSqlParser.VIEW); - this.state = 799; + this.state = 807; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 798; + this.state = 806; this.ifNotExists(); } } - this.state = 801; + this.state = 809; this.uid(); - this.state = 803; + this.state = 811; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 802; + this.state = 810; this.columnNameList(); } } - this.state = 806; + this.state = 814; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===115) { { - this.state = 805; + this.state = 813; this.commentSpec(); } } - this.state = 808; + this.state = 816; this.match(FlinkSqlParser.AS); - this.state = 809; + this.state = 817; this.queryStatement(0); } } @@ -3944,52 +3951,52 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 811; + this.state = 819; this.match(FlinkSqlParser.CREATE); - this.state = 815; + this.state = 823; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 73, this._ctx) ) { case 1: { - this.state = 812; + this.state = 820; this.match(FlinkSqlParser.TEMPORARY); } break; case 2: { - this.state = 813; + this.state = 821; this.match(FlinkSqlParser.TEMPORARY); - this.state = 814; + this.state = 822; this.match(FlinkSqlParser.SYSTEM); } break; } - this.state = 817; + this.state = 825; this.match(FlinkSqlParser.FUNCTION); - this.state = 819; + this.state = 827; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 818; + this.state = 826; this.ifNotExists(); } } - this.state = 821; + this.state = 829; this.uid(); - this.state = 822; + this.state = 830; this.match(FlinkSqlParser.AS); - this.state = 823; + this.state = 831; this.identifier(); - this.state = 826; + this.state = 834; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===240) { { - this.state = 824; + this.state = 832; this.match(FlinkSqlParser.LANGUAGE); - this.state = 825; + this.state = 833; _la = this._input.LA(1); if(!(((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 7) !== 0))) { this._errHandler.recoverInline(this); @@ -4001,12 +4008,12 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 829; + this.state = 837; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===143) { { - this.state = 828; + this.state = 836; this.usingClause(); } } @@ -4035,27 +4042,27 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 831; - this.match(FlinkSqlParser.USING); - this.state = 832; - this.match(FlinkSqlParser.JAR); - this.state = 833; - this.jarFileName(); this.state = 839; + this.match(FlinkSqlParser.USING); + this.state = 840; + this.match(FlinkSqlParser.JAR); + this.state = 841; + this.jarFileName(); + this.state = 847; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 834; + this.state = 842; this.match(FlinkSqlParser.COMMA); - this.state = 835; + this.state = 843; this.match(FlinkSqlParser.JAR); - this.state = 836; + this.state = 844; this.jarFileName(); } } - this.state = 841; + this.state = 849; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -4082,7 +4089,7 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 842; + this.state = 850; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4104,32 +4111,59 @@ export default class FlinkSqlParser extends Parser { public alterTable(): AlterTableContext { let localctx: AlterTableContext = new AlterTableContext(this, this._ctx, this.state); this.enterRule(localctx, 114, FlinkSqlParser.RULE_alterTable); + let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 844; + this.state = 852; this.match(FlinkSqlParser.ALTER); - this.state = 845; + this.state = 853; this.match(FlinkSqlParser.TABLE); - this.state = 846; - this.uid(); - this.state = 849; + this.state = 855; this._errHandler.sync(this); - switch (this._input.LA(1)) { - case 113: + _la = this._input.LA(1); + if (_la===128) { { - this.state = 847; + this.state = 854; + this.ifExists(); + } + } + + this.state = 857; + this.uid(); + this.state = 863; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 79, this._ctx) ) { + case 1: + { + this.state = 858; this.renameDefinition(); } break; - case 116: + case 2: { - this.state = 848; + this.state = 859; this.setKeyValueDefinition(); } break; - default: - throw new NoViableAltException(this); + case 3: + { + this.state = 860; + this.addConstraint(); + } + break; + case 4: + { + this.state = 861; + this.dropConstraint(); + } + break; + case 5: + { + this.state = 862; + this.addUnique(); + } + break; } } } @@ -4151,14 +4185,25 @@ export default class FlinkSqlParser extends Parser { public renameDefinition(): RenameDefinitionContext { let localctx: RenameDefinitionContext = new RenameDefinitionContext(this, this._ctx, this.state); this.enterRule(localctx, 116, FlinkSqlParser.RULE_renameDefinition); + let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 851; + this.state = 865; this.match(FlinkSqlParser.RENAME); - this.state = 852; + this.state = 867; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===327) { + { + this.state = 866; + this.uid(); + } + } + + this.state = 869; this.match(FlinkSqlParser.TO); - this.state = 853; + this.state = 870; this.uid(); } } @@ -4183,9 +4228,9 @@ export default class FlinkSqlParser extends Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 855; + this.state = 872; this.match(FlinkSqlParser.SET); - this.state = 856; + this.state = 873; this.tablePropertyList(); } } @@ -4204,32 +4249,163 @@ export default class FlinkSqlParser extends Parser { return localctx; } // @RuleVersion(0) + public addConstraint(): AddConstraintContext { + let localctx: AddConstraintContext = new AddConstraintContext(this, this._ctx, this.state); + this.enterRule(localctx, 120, FlinkSqlParser.RULE_addConstraint); + let _la: number; + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 875; + this.match(FlinkSqlParser.ADD); + this.state = 876; + this.match(FlinkSqlParser.CONSTRAINT); + this.state = 877; + this.constraintName(); + this.state = 878; + this.match(FlinkSqlParser.PRIMARY); + this.state = 879; + this.match(FlinkSqlParser.KEY); + this.state = 880; + this.columnNameList(); + this.state = 882; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===25) { + { + this.state = 881; + this.notForced(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + // @RuleVersion(0) + public dropConstraint(): DropConstraintContext { + let localctx: DropConstraintContext = new DropConstraintContext(this, this._ctx, this.state); + this.enterRule(localctx, 122, FlinkSqlParser.RULE_dropConstraint); + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 884; + this.match(FlinkSqlParser.DROP); + this.state = 885; + this.match(FlinkSqlParser.CONSTRAINT); + this.state = 886; + this.constraintName(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + // @RuleVersion(0) + public addUnique(): AddUniqueContext { + let localctx: AddUniqueContext = new AddUniqueContext(this, this._ctx, this.state); + this.enterRule(localctx, 124, FlinkSqlParser.RULE_addUnique); + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 888; + this.match(FlinkSqlParser.ADD); + this.state = 889; + this.match(FlinkSqlParser.UNIQUE); + this.state = 890; + this.columnNameList(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + // @RuleVersion(0) + public notForced(): NotForcedContext { + let localctx: NotForcedContext = new NotForcedContext(this, this._ctx, this.state); + this.enterRule(localctx, 126, FlinkSqlParser.RULE_notForced); + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 892; + this.match(FlinkSqlParser.NOT); + this.state = 893; + this.match(FlinkSqlParser.ENFORCED); + } + } + catch (re) { + if (re instanceof RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + // @RuleVersion(0) public alertView(): AlertViewContext { let localctx: AlertViewContext = new AlertViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 120, FlinkSqlParser.RULE_alertView); + this.enterRule(localctx, 128, FlinkSqlParser.RULE_alertView); try { this.enterOuterAlt(localctx, 1); { - this.state = 858; + this.state = 895; this.match(FlinkSqlParser.ALTER); - this.state = 859; + this.state = 896; this.match(FlinkSqlParser.VIEW); - this.state = 860; + this.state = 897; this.uid(); - this.state = 864; + this.state = 901; this._errHandler.sync(this); switch (this._input.LA(1)) { case 113: { - this.state = 861; + this.state = 898; this.renameDefinition(); } break; case 7: { - this.state = 862; + this.state = 899; this.match(FlinkSqlParser.AS); - this.state = 863; + this.state = 900; this.queryStatement(0); } break; @@ -4255,17 +4431,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alterDatabase(): AlterDatabaseContext { let localctx: AlterDatabaseContext = new AlterDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localctx, 130, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); { - this.state = 866; + this.state = 903; this.match(FlinkSqlParser.ALTER); - this.state = 867; + this.state = 904; this.match(FlinkSqlParser.DATABASE); - this.state = 868; + this.state = 905; this.uid(); - this.state = 869; + this.state = 906; this.setKeyValueDefinition(); } } @@ -4286,57 +4462,57 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public alterFunction(): AlterFunctionContext { let localctx: AlterFunctionContext = new AlterFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localctx, 132, FlinkSqlParser.RULE_alterFunction); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 871; + this.state = 908; this.match(FlinkSqlParser.ALTER); - this.state = 875; + this.state = 912; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 80, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 83, this._ctx) ) { case 1: { - this.state = 872; + this.state = 909; this.match(FlinkSqlParser.TEMPORARY); } break; case 2: { - this.state = 873; + this.state = 910; this.match(FlinkSqlParser.TEMPORARY); - this.state = 874; + this.state = 911; this.match(FlinkSqlParser.SYSTEM); } break; } - this.state = 877; + this.state = 914; this.match(FlinkSqlParser.FUNCTION); - this.state = 879; + this.state = 916; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 878; + this.state = 915; this.ifExists(); } } - this.state = 881; + this.state = 918; this.uid(); - this.state = 882; + this.state = 919; this.match(FlinkSqlParser.AS); - this.state = 883; + this.state = 920; this.identifier(); - this.state = 886; + this.state = 923; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===240) { { - this.state = 884; + this.state = 921; this.match(FlinkSqlParser.LANGUAGE); - this.state = 885; + this.state = 922; _la = this._input.LA(1); if(!(((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 7) !== 0))) { this._errHandler.recoverInline(this); @@ -4367,26 +4543,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropCatalog(): DropCatalogContext { let localctx: DropCatalogContext = new DropCatalogContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParser.RULE_dropCatalog); + this.enterRule(localctx, 134, FlinkSqlParser.RULE_dropCatalog); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 888; + this.state = 925; this.match(FlinkSqlParser.DROP); - this.state = 889; + this.state = 926; this.match(FlinkSqlParser.CATALOG); - this.state = 891; + this.state = 928; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 890; + this.state = 927; this.ifExists(); } } - this.state = 893; + this.state = 930; this.uid(); } } @@ -4407,36 +4583,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropTable(): DropTableContext { let localctx: DropTableContext = new DropTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParser.RULE_dropTable); + this.enterRule(localctx, 136, FlinkSqlParser.RULE_dropTable); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 895; + this.state = 932; this.match(FlinkSqlParser.DROP); - this.state = 897; + this.state = 934; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===166) { { - this.state = 896; + this.state = 933; this.match(FlinkSqlParser.TEMPORARY); } } - this.state = 899; + this.state = 936; this.match(FlinkSqlParser.TABLE); - this.state = 901; + this.state = 938; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 900; + this.state = 937; this.ifExists(); } } - this.state = 903; + this.state = 940; this.uid(); } } @@ -4457,33 +4633,33 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropDatabase(): DropDatabaseContext { let localctx: DropDatabaseContext = new DropDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 130, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localctx, 138, FlinkSqlParser.RULE_dropDatabase); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 905; + this.state = 942; this.match(FlinkSqlParser.DROP); - this.state = 906; + this.state = 943; this.match(FlinkSqlParser.DATABASE); - this.state = 908; + this.state = 945; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 907; + this.state = 944; this.ifExists(); } } - this.state = 910; + this.state = 947; this.uid(); - this.state = 912; + this.state = 949; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===184 || _la===186) { { - this.state = 911; + this.state = 948; localctx._dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===184 || _la===186)) { @@ -4515,36 +4691,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropView(): DropViewContext { let localctx: DropViewContext = new DropViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 132, FlinkSqlParser.RULE_dropView); + this.enterRule(localctx, 140, FlinkSqlParser.RULE_dropView); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 914; + this.state = 951; this.match(FlinkSqlParser.DROP); - this.state = 916; + this.state = 953; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===166) { { - this.state = 915; + this.state = 952; this.match(FlinkSqlParser.TEMPORARY); } } - this.state = 918; + this.state = 955; this.match(FlinkSqlParser.VIEW); - this.state = 920; + this.state = 957; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 919; + this.state = 956; this.ifExists(); } } - this.state = 922; + this.state = 959; this.uid(); } } @@ -4565,44 +4741,44 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dropFunction(): DropFunctionContext { let localctx: DropFunctionContext = new DropFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 134, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localctx, 142, FlinkSqlParser.RULE_dropFunction); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 924; + this.state = 961; this.match(FlinkSqlParser.DROP); - this.state = 928; + this.state = 965; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 90, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 93, this._ctx) ) { case 1: { - this.state = 925; + this.state = 962; this.match(FlinkSqlParser.TEMPORARY); } break; case 2: { - this.state = 926; + this.state = 963; this.match(FlinkSqlParser.TEMPORARY); - this.state = 927; + this.state = 964; this.match(FlinkSqlParser.SYSTEM); } break; } - this.state = 930; + this.state = 967; this.match(FlinkSqlParser.FUNCTION); - this.state = 932; + this.state = 969; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===128) { { - this.state = 931; + this.state = 968; this.ifExists(); } } - this.state = 934; + this.state = 971; this.uid(); } } @@ -4623,27 +4799,27 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertStatement(): InsertStatementContext { let localctx: InsertStatementContext = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 136, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localctx, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 942; + this.state = 979; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 93, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 96, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { { - this.state = 937; + this.state = 974; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===78) { { - this.state = 936; + this.state = 973; this.match(FlinkSqlParser.EXECUTE); } } - this.state = 939; + this.state = 976; this.insertSimpleStatement(); } } @@ -4652,9 +4828,9 @@ export default class FlinkSqlParser extends Parser { this.enterOuterAlt(localctx, 2); { { - this.state = 940; + this.state = 977; this.match(FlinkSqlParser.EXECUTE); - this.state = 941; + this.state = 978; this.insertMulStatement(); } } @@ -4678,14 +4854,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertSimpleStatement(): InsertSimpleStatementContext { let localctx: InsertSimpleStatementContext = new InsertSimpleStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 138, FlinkSqlParser.RULE_insertSimpleStatement); + this.enterRule(localctx, 146, FlinkSqlParser.RULE_insertSimpleStatement); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 944; + this.state = 981; this.match(FlinkSqlParser.INSERT); - this.state = 945; + this.state = 982; _la = this._input.LA(1); if(!(_la===83 || _la===140)) { this._errHandler.recoverInline(this); @@ -4694,40 +4870,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 946; + this.state = 983; this.uid(); - this.state = 955; + this.state = 992; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 96, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 99, this._ctx) ) { case 1: { - this.state = 948; + this.state = 985; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===60) { { - this.state = 947; + this.state = 984; this.insertPartitionDefinition(); } } - this.state = 951; + this.state = 988; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 95, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 98, this._ctx) ) { case 1: { - this.state = 950; + this.state = 987; this.columnNameList(); } break; } - this.state = 953; + this.state = 990; this.queryStatement(0); } break; case 2: { - this.state = 954; + this.state = 991; this.valuesDefinition(); } break; @@ -4751,13 +4927,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertPartitionDefinition(): InsertPartitionDefinitionContext { let localctx: InsertPartitionDefinitionContext = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 140, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 148, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 957; + this.state = 994; this.match(FlinkSqlParser.PARTITION); - this.state = 958; + this.state = 995; this.tablePropertyList(); } } @@ -4778,28 +4954,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesDefinition(): ValuesDefinitionContext { let localctx: ValuesDefinitionContext = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 142, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localctx, 150, FlinkSqlParser.RULE_valuesDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 960; + this.state = 997; this.match(FlinkSqlParser.VALUES); - this.state = 961; + this.state = 998; this.valuesRowDefinition(); - this.state = 966; + this.state = 1003; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 962; + this.state = 999; this.match(FlinkSqlParser.COMMA); - this.state = 963; + this.state = 1000; this.valuesRowDefinition(); } } - this.state = 968; + this.state = 1005; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -4822,32 +4998,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesRowDefinition(): ValuesRowDefinitionContext { let localctx: ValuesRowDefinitionContext = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 144, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 152, FlinkSqlParser.RULE_valuesRowDefinition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 969; + this.state = 1006; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 970; + this.state = 1007; this.constant(); - this.state = 975; + this.state = 1012; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 971; + this.state = 1008; this.match(FlinkSqlParser.COMMA); - this.state = 972; + this.state = 1009; this.constant(); } } - this.state = 977; + this.state = 1014; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 978; + this.state = 1015; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -4868,34 +5044,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public insertMulStatement(): InsertMulStatementContext { let localctx: InsertMulStatementContext = new InsertMulStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 146, FlinkSqlParser.RULE_insertMulStatement); + this.enterRule(localctx, 154, FlinkSqlParser.RULE_insertMulStatement); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 980; + this.state = 1017; this.match(FlinkSqlParser.STATEMENT); - this.state = 981; + this.state = 1018; this.match(FlinkSqlParser.SET); - this.state = 982; + this.state = 1019; this.match(FlinkSqlParser.BEGIN); - this.state = 986; + this.state = 1023; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 983; + this.state = 1020; this.insertSimpleStatement(); - this.state = 984; + this.state = 1021; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 988; + this.state = 1025; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===80); - this.state = 990; + this.state = 1027; this.match(FlinkSqlParser.END); } } @@ -4926,78 +5102,78 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: QueryStatementContext = new QueryStatementContext(this, this._ctx, _parentState); let _prevctx: QueryStatementContext = localctx; - let _startState: number = 148; - this.enterRecursionRule(localctx, 148, FlinkSqlParser.RULE_queryStatement, _p); + let _startState: number = 156; + this.enterRecursionRule(localctx, 156, FlinkSqlParser.RULE_queryStatement, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1023; + this.state = 1060; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 105, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 108, this._ctx) ) { case 1: { - this.state = 993; + this.state = 1030; this.valuesCaluse(); } break; case 2: { - this.state = 994; + this.state = 1031; this.match(FlinkSqlParser.WITH); - this.state = 995; + this.state = 1032; this.withItem(); - this.state = 1000; + this.state = 1037; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 996; + this.state = 1033; this.match(FlinkSqlParser.COMMA); - this.state = 997; + this.state = 1034; this.withItem(); } } - this.state = 1002; + this.state = 1039; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1003; + this.state = 1040; this.queryStatement(5); } break; case 3: { - this.state = 1005; + this.state = 1042; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1006; + this.state = 1043; this.queryStatement(0); - this.state = 1007; + this.state = 1044; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1009; + this.state = 1046; this.selectClause(); - this.state = 1011; + this.state = 1048; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 101, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 104, this._ctx) ) { case 1: { - this.state = 1010; + this.state = 1047; this.orderByCaluse(); } break; } - this.state = 1014; + this.state = 1051; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 102, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 105, this._ctx) ) { case 1: { - this.state = 1013; + this.state = 1050; this.limitClause(); } break; @@ -5006,24 +5182,24 @@ export default class FlinkSqlParser extends Parser { break; case 5: { - this.state = 1016; + this.state = 1053; this.selectStatement(); - this.state = 1018; + this.state = 1055; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 103, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 106, this._ctx) ) { case 1: { - this.state = 1017; + this.state = 1054; this.orderByCaluse(); } break; } - this.state = 1021; + this.state = 1058; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 104, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 107, this._ctx) ) { case 1: { - this.state = 1020; + this.state = 1057; this.limitClause(); } break; @@ -5032,9 +5208,9 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1039; + this.state = 1076; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 109, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 112, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -5046,11 +5222,11 @@ export default class FlinkSqlParser extends Parser { localctx = new QueryStatementContext(this, _parentctx, _parentState); localctx._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1025; + this.state = 1062; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1026; + this.state = 1063; localctx._operator = this._input.LT(1); _la = this._input.LA(1); if(!(((((_la - 105)) & ~0x1F) === 0 && ((1 << (_la - 105)) & 11) !== 0))) { @@ -5060,34 +5236,34 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1028; + this.state = 1065; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===8) { { - this.state = 1027; + this.state = 1064; this.match(FlinkSqlParser.ALL); } } - this.state = 1030; + this.state = 1067; localctx._right = this.queryStatement(0); - this.state = 1032; + this.state = 1069; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 107, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 110, this._ctx) ) { case 1: { - this.state = 1031; + this.state = 1068; this.orderByCaluse(); } break; } - this.state = 1035; + this.state = 1072; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 108, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 111, this._ctx) ) { case 1: { - this.state = 1034; + this.state = 1071; this.limitClause(); } break; @@ -5095,9 +5271,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1041; + this.state = 1078; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 109, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 112, this._ctx); } } } @@ -5118,32 +5294,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public valuesCaluse(): ValuesCaluseContext { let localctx: ValuesCaluseContext = new ValuesCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 150, FlinkSqlParser.RULE_valuesCaluse); + this.enterRule(localctx, 158, FlinkSqlParser.RULE_valuesCaluse); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1042; + this.state = 1079; this.match(FlinkSqlParser.VALUES); - this.state = 1043; + this.state = 1080; this.expression(); - this.state = 1048; + this.state = 1085; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 110, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 113, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1044; + this.state = 1081; this.match(FlinkSqlParser.COMMA); - this.state = 1045; + this.state = 1082; this.expression(); } } } - this.state = 1050; + this.state = 1087; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 110, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 113, this._ctx); } } } @@ -5164,50 +5340,50 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withItem(): WithItemContext { let localctx: WithItemContext = new WithItemContext(this, this._ctx, this.state); - this.enterRule(localctx, 152, FlinkSqlParser.RULE_withItem); + this.enterRule(localctx, 160, FlinkSqlParser.RULE_withItem); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1051; + this.state = 1088; this.withItemName(); - this.state = 1063; + this.state = 1100; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 1052; + this.state = 1089; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1053; + this.state = 1090; this.columnName(); - this.state = 1058; + this.state = 1095; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1054; + this.state = 1091; this.match(FlinkSqlParser.COMMA); - this.state = 1055; + this.state = 1092; this.columnName(); } } - this.state = 1060; + this.state = 1097; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1061; + this.state = 1098; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1065; + this.state = 1102; this.match(FlinkSqlParser.AS); - this.state = 1066; + this.state = 1103; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1067; + this.state = 1104; this.queryStatement(0); - this.state = 1068; + this.state = 1105; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5228,11 +5404,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withItemName(): WithItemNameContext { let localctx: WithItemNameContext = new WithItemNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 154, FlinkSqlParser.RULE_withItemName); + this.enterRule(localctx, 162, FlinkSqlParser.RULE_withItemName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1070; + this.state = 1107; this.identifier(); } } @@ -5253,50 +5429,50 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public selectStatement(): SelectStatementContext { let localctx: SelectStatementContext = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 156, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localctx, 164, FlinkSqlParser.RULE_selectStatement); try { this.enterOuterAlt(localctx, 1); { - this.state = 1072; + this.state = 1109; this.selectClause(); - this.state = 1073; + this.state = 1110; this.fromClause(); - this.state = 1075; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 113, this._ctx) ) { - case 1: - { - this.state = 1074; - this.whereClause(); - } - break; - } - this.state = 1078; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 114, this._ctx) ) { - case 1: - { - this.state = 1077; - this.groupByClause(); - } - break; - } - this.state = 1081; - this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 115, this._ctx) ) { - case 1: - { - this.state = 1080; - this.havingClause(); - } - break; - } - this.state = 1084; + this.state = 1112; this._errHandler.sync(this); switch ( this._interp.adaptivePredict(this._input, 116, this._ctx) ) { case 1: { - this.state = 1083; + this.state = 1111; + this.whereClause(); + } + break; + } + this.state = 1115; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 117, this._ctx) ) { + case 1: + { + this.state = 1114; + this.groupByClause(); + } + break; + } + this.state = 1118; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 118, this._ctx) ) { + case 1: + { + this.state = 1117; + this.havingClause(); + } + break; + } + this.state = 1121; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 119, this._ctx) ) { + case 1: + { + this.state = 1120; this.windowClause(); } break; @@ -5320,53 +5496,53 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public selectClause(): SelectClauseContext { let localctx: SelectClauseContext = new SelectClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 158, FlinkSqlParser.RULE_selectClause); + this.enterRule(localctx, 166, FlinkSqlParser.RULE_selectClause); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1086; + this.state = 1123; this.match(FlinkSqlParser.SELECT); - this.state = 1088; + this.state = 1125; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 117, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 120, this._ctx) ) { case 1: { - this.state = 1087; + this.state = 1124; this.setQuantifier(); } break; } - this.state = 1099; + this.state = 1136; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 119, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 122, this._ctx) ) { case 1: { - this.state = 1090; + this.state = 1127; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1091; + this.state = 1128; this.projectItemDefinition(); - this.state = 1096; + this.state = 1133; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 118, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 121, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1092; + this.state = 1129; this.match(FlinkSqlParser.COMMA); - this.state = 1093; + this.state = 1130; this.projectItemDefinition(); } } } - this.state = 1098; + this.state = 1135; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 118, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 121, this._ctx); } } break; @@ -5390,28 +5566,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public projectItemDefinition(): ProjectItemDefinitionContext { let localctx: ProjectItemDefinitionContext = new ProjectItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 160, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localctx, 168, FlinkSqlParser.RULE_projectItemDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 1101; + this.state = 1138; this.expression(); - this.state = 1106; + this.state = 1143; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 121, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 124, this._ctx) ) { case 1: { - this.state = 1103; + this.state = 1140; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 120, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 123, this._ctx) ) { case 1: { - this.state = 1102; + this.state = 1139; this.match(FlinkSqlParser.AS); } break; } - this.state = 1105; + this.state = 1142; this.expression(); } break; @@ -5435,13 +5611,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public fromClause(): FromClauseContext { let localctx: FromClauseContext = new FromClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 162, FlinkSqlParser.RULE_fromClause); + this.enterRule(localctx, 170, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1108; + this.state = 1145; this.match(FlinkSqlParser.FROM); - this.state = 1109; + this.state = 1146; this.tableExpression(0); } } @@ -5472,39 +5648,39 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: TableExpressionContext = new TableExpressionContext(this, this._ctx, _parentState); let _prevctx: TableExpressionContext = localctx; - let _startState: number = 164; - this.enterRecursionRule(localctx, 164, FlinkSqlParser.RULE_tableExpression, _p); + let _startState: number = 172; + this.enterRecursionRule(localctx, 172, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { { - this.state = 1112; + this.state = 1149; this.tableReference(); - this.state = 1117; + this.state = 1154; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 122, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 125, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1113; + this.state = 1150; this.match(FlinkSqlParser.COMMA); - this.state = 1114; + this.state = 1151; this.tableReference(); } } } - this.state = 1119; + this.state = 1156; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 122, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 125, this._ctx); } } this._ctx.stop = this._input.LT(-1); - this.state = 1141; + this.state = 1178; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 128, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 131, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -5512,22 +5688,22 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1139; + this.state = 1176; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 127, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 130, this._ctx) ) { case 1: { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1120; + this.state = 1157; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1121; + this.state = 1158; this.match(FlinkSqlParser.CROSS); - this.state = 1122; + this.state = 1159; this.match(FlinkSqlParser.JOIN); - this.state = 1123; + this.state = 1160; this.tableExpression(2); } break; @@ -5535,26 +5711,26 @@ export default class FlinkSqlParser extends Parser { { localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1124; + this.state = 1161; if (!(this.precpred(this._ctx, 2))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - this.state = 1126; + this.state = 1163; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===54) { { - this.state = 1125; + this.state = 1162; this.match(FlinkSqlParser.NATURAL); } } - this.state = 1129; + this.state = 1166; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & 27) !== 0)) { { - this.state = 1128; + this.state = 1165; _la = this._input.LA(1); if(!(((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & 27) !== 0))) { this._errHandler.recoverInline(this); @@ -5566,26 +5742,26 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1132; + this.state = 1169; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===47) { { - this.state = 1131; + this.state = 1168; this.match(FlinkSqlParser.OUTER); } } - this.state = 1134; + this.state = 1171; this.match(FlinkSqlParser.JOIN); - this.state = 1135; + this.state = 1172; this.tableExpression(0); - this.state = 1137; + this.state = 1174; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 126, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 129, this._ctx) ) { case 1: { - this.state = 1136; + this.state = 1173; this.joinCondition(); } break; @@ -5595,9 +5771,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1143; + this.state = 1180; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 128, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 131, this._ctx); } } } @@ -5618,18 +5794,18 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableReference(): TableReferenceContext { let localctx: TableReferenceContext = new TableReferenceContext(this, this._ctx, this.state); - this.enterRule(localctx, 166, FlinkSqlParser.RULE_tableReference); + this.enterRule(localctx, 174, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localctx, 1); { - this.state = 1144; + this.state = 1181; this.tablePrimary(); - this.state = 1146; + this.state = 1183; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 129, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 132, this._ctx) ) { case 1: { - this.state = 1145; + this.state = 1182; this.tableAlias(); } break; @@ -5653,53 +5829,53 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePrimary(): TablePrimaryContext { let localctx: TablePrimaryContext = new TablePrimaryContext(this, this._ctx, this.state); - this.enterRule(localctx, 168, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localctx, 176, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1189; + this.state = 1226; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 136, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 139, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1149; + this.state = 1186; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===74) { { - this.state = 1148; + this.state = 1185; this.match(FlinkSqlParser.TABLE); } } - this.state = 1151; + this.state = 1188; this.tablePath(); - this.state = 1153; + this.state = 1190; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 131, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 134, this._ctx) ) { case 1: { - this.state = 1152; + this.state = 1189; this.systemTimePeriod(); } break; } - this.state = 1159; + this.state = 1196; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 133, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 136, this._ctx) ) { case 1: { - this.state = 1156; + this.state = 1193; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 132, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 135, this._ctx) ) { case 1: { - this.state = 1155; + this.state = 1192; this.match(FlinkSqlParser.AS); } break; } - this.state = 1158; + this.state = 1195; this.correlationName(); } break; @@ -5709,71 +5885,71 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1161; + this.state = 1198; this.match(FlinkSqlParser.LATERAL); - this.state = 1162; + this.state = 1199; this.match(FlinkSqlParser.TABLE); - this.state = 1163; + this.state = 1200; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1164; + this.state = 1201; this.functionName(); - this.state = 1165; + this.state = 1202; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1166; + this.state = 1203; this.expression(); - this.state = 1171; + this.state = 1208; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1167; + this.state = 1204; this.match(FlinkSqlParser.COMMA); - this.state = 1168; + this.state = 1205; this.expression(); } } - this.state = 1173; + this.state = 1210; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1174; + this.state = 1211; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1175; + this.state = 1212; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1178; + this.state = 1215; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===57) { { - this.state = 1177; + this.state = 1214; this.match(FlinkSqlParser.LATERAL); } } - this.state = 1180; + this.state = 1217; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1181; + this.state = 1218; this.queryStatement(0); - this.state = 1182; + this.state = 1219; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1184; + this.state = 1221; this.match(FlinkSqlParser.UNNEST); - this.state = 1185; + this.state = 1222; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1186; + this.state = 1223; this.expression(); - this.state = 1187; + this.state = 1224; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -5796,11 +5972,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePath(): TablePathContext { let localctx: TablePathContext = new TablePathContext(this, this._ctx, this.state); - this.enterRule(localctx, 170, FlinkSqlParser.RULE_tablePath); + this.enterRule(localctx, 178, FlinkSqlParser.RULE_tablePath); try { this.enterOuterAlt(localctx, 1); { - this.state = 1191; + this.state = 1228; this.uid(); } } @@ -5821,19 +5997,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public systemTimePeriod(): SystemTimePeriodContext { let localctx: SystemTimePeriodContext = new SystemTimePeriodContext(this, this._ctx, this.state); - this.enterRule(localctx, 172, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localctx, 180, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localctx, 1); { - this.state = 1193; + this.state = 1230; this.match(FlinkSqlParser.FOR); - this.state = 1194; + this.state = 1231; this.match(FlinkSqlParser.SYSTEM_TIME); - this.state = 1195; + this.state = 1232; this.match(FlinkSqlParser.AS); - this.state = 1196; + this.state = 1233; this.match(FlinkSqlParser.OF); - this.state = 1197; + this.state = 1234; this.dateTimeExpression(); } } @@ -5854,11 +6030,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dateTimeExpression(): DateTimeExpressionContext { let localctx: DateTimeExpressionContext = new DateTimeExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 174, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localctx, 182, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localctx, 1); { - this.state = 1199; + this.state = 1236; this.expression(); } } @@ -5879,47 +6055,47 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public joinCondition(): JoinConditionContext { let localctx: JoinConditionContext = new JoinConditionContext(this, this._ctx, this.state); - this.enterRule(localctx, 176, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localctx, 184, FlinkSqlParser.RULE_joinCondition); let _la: number; try { - this.state = 1215; + this.state = 1252; this._errHandler.sync(this); switch (this._input.LA(1)) { case 55: this.enterOuterAlt(localctx, 1); { - this.state = 1201; + this.state = 1238; this.match(FlinkSqlParser.ON); - this.state = 1202; + this.state = 1239; this.booleanExpression(0); } break; case 143: this.enterOuterAlt(localctx, 2); { - this.state = 1203; + this.state = 1240; this.match(FlinkSqlParser.USING); - this.state = 1204; + this.state = 1241; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1205; + this.state = 1242; this.uid(); - this.state = 1210; + this.state = 1247; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1206; + this.state = 1243; this.match(FlinkSqlParser.COMMA); - this.state = 1207; + this.state = 1244; this.uid(); } } - this.state = 1212; + this.state = 1249; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1213; + this.state = 1250; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -5944,13 +6120,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public whereClause(): WhereClauseContext { let localctx: WhereClauseContext = new WhereClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 178, FlinkSqlParser.RULE_whereClause); + this.enterRule(localctx, 186, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1217; + this.state = 1254; this.match(FlinkSqlParser.WHERE); - this.state = 1218; + this.state = 1255; this.booleanExpression(0); } } @@ -5971,34 +6147,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupByClause(): GroupByClauseContext { let localctx: GroupByClauseContext = new GroupByClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 180, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localctx, 188, FlinkSqlParser.RULE_groupByClause); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1220; + this.state = 1257; this.match(FlinkSqlParser.GROUP); - this.state = 1221; + this.state = 1258; this.match(FlinkSqlParser.BY); - this.state = 1222; + this.state = 1259; this.groupItemDefinition(); - this.state = 1227; + this.state = 1264; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 142, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1223; + this.state = 1260; this.match(FlinkSqlParser.COMMA); - this.state = 1224; + this.state = 1261; this.groupItemDefinition(); } } } - this.state = 1229; + this.state = 1266; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 139, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 142, this._ctx); } } } @@ -6019,134 +6195,45 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public groupItemDefinition(): GroupItemDefinitionContext { let localctx: GroupItemDefinitionContext = new GroupItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 182, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localctx, 190, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1281; + this.state = 1318; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 144, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 147, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1230; + this.state = 1267; this.expression(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1231; + this.state = 1268; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1232; + this.state = 1269; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1233; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1234; - this.expression(); - this.state = 1239; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la===305) { - { - { - this.state = 1235; - this.match(FlinkSqlParser.COMMA); - this.state = 1236; - this.expression(); - } - } - this.state = 1241; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 1242; - this.match(FlinkSqlParser.RR_BRACKET); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1244; - this.match(FlinkSqlParser.CUBE); - this.state = 1245; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1246; - this.expression(); - this.state = 1251; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la===305) { - { - { - this.state = 1247; - this.match(FlinkSqlParser.COMMA); - this.state = 1248; - this.expression(); - } - } - this.state = 1253; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 1254; - this.match(FlinkSqlParser.RR_BRACKET); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1256; - this.match(FlinkSqlParser.ROLLUP); - this.state = 1257; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1258; - this.expression(); - this.state = 1263; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la===305) { - { - { - this.state = 1259; - this.match(FlinkSqlParser.COMMA); - this.state = 1260; - this.expression(); - } - } - this.state = 1265; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 1266; - this.match(FlinkSqlParser.RR_BRACKET); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 1268; - this.match(FlinkSqlParser.GROUPING); - this.state = 1269; - this.match(FlinkSqlParser.SETS); this.state = 1270; this.match(FlinkSqlParser.LR_BRACKET); this.state = 1271; - this.groupItemDefinition(); + this.expression(); this.state = 1276; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { this.state = 1272; this.match(FlinkSqlParser.COMMA); this.state = 1273; - this.groupItemDefinition(); + this.expression(); } } this.state = 1278; @@ -6157,6 +6244,95 @@ export default class FlinkSqlParser extends Parser { this.match(FlinkSqlParser.RR_BRACKET); } break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1281; + this.match(FlinkSqlParser.CUBE); + this.state = 1282; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1283; + this.expression(); + this.state = 1288; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===306) { + { + { + this.state = 1284; + this.match(FlinkSqlParser.COMMA); + this.state = 1285; + this.expression(); + } + } + this.state = 1290; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1291; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1293; + this.match(FlinkSqlParser.ROLLUP); + this.state = 1294; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1295; + this.expression(); + this.state = 1300; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===306) { + { + { + this.state = 1296; + this.match(FlinkSqlParser.COMMA); + this.state = 1297; + this.expression(); + } + } + this.state = 1302; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1303; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 1305; + this.match(FlinkSqlParser.GROUPING); + this.state = 1306; + this.match(FlinkSqlParser.SETS); + this.state = 1307; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1308; + this.groupItemDefinition(); + this.state = 1313; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===306) { + { + { + this.state = 1309; + this.match(FlinkSqlParser.COMMA); + this.state = 1310; + this.groupItemDefinition(); + } + } + this.state = 1315; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1316; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; } } catch (re) { @@ -6176,13 +6352,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public havingClause(): HavingClauseContext { let localctx: HavingClauseContext = new HavingClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 184, FlinkSqlParser.RULE_havingClause); + this.enterRule(localctx, 192, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1283; + this.state = 1320; this.match(FlinkSqlParser.HAVING); - this.state = 1284; + this.state = 1321; this.booleanExpression(0); } } @@ -6203,34 +6379,34 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public orderByCaluse(): OrderByCaluseContext { let localctx: OrderByCaluseContext = new OrderByCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 186, FlinkSqlParser.RULE_orderByCaluse); + this.enterRule(localctx, 194, FlinkSqlParser.RULE_orderByCaluse); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1286; + this.state = 1323; this.match(FlinkSqlParser.ORDER); - this.state = 1287; + this.state = 1324; this.match(FlinkSqlParser.BY); - this.state = 1288; + this.state = 1325; this.orderItemDefition(); - this.state = 1293; + this.state = 1330; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 145, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 148, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1289; + this.state = 1326; this.match(FlinkSqlParser.COMMA); - this.state = 1290; + this.state = 1327; this.orderItemDefition(); } } } - this.state = 1295; + this.state = 1332; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 145, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 148, this._ctx); } } } @@ -6251,19 +6427,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public orderItemDefition(): OrderItemDefitionContext { let localctx: OrderItemDefitionContext = new OrderItemDefitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 188, FlinkSqlParser.RULE_orderItemDefition); + this.enterRule(localctx, 196, FlinkSqlParser.RULE_orderItemDefition); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1296; + this.state = 1333; this.expression(); - this.state = 1298; + this.state = 1335; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 146, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 149, this._ctx) ) { case 1: { - this.state = 1297; + this.state = 1334; _la = this._input.LA(1); if(!(_la===35 || _la===36)) { this._errHandler.recoverInline(this); @@ -6294,24 +6470,24 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public limitClause(): LimitClauseContext { let localctx: LimitClauseContext = new LimitClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 190, FlinkSqlParser.RULE_limitClause); + this.enterRule(localctx, 198, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1300; + this.state = 1337; this.match(FlinkSqlParser.LIMIT); - this.state = 1303; + this.state = 1340; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 147, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 150, this._ctx) ) { case 1: { - this.state = 1301; + this.state = 1338; this.match(FlinkSqlParser.ALL); } break; case 2: { - this.state = 1302; + this.state = 1339; localctx._limit = this.expression(); } break; @@ -6335,32 +6511,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowClause(): WindowClauseContext { let localctx: WindowClauseContext = new WindowClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 192, FlinkSqlParser.RULE_windowClause); + this.enterRule(localctx, 200, FlinkSqlParser.RULE_windowClause); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1305; + this.state = 1342; this.match(FlinkSqlParser.WINDOW); - this.state = 1306; + this.state = 1343; this.namedWindow(); - this.state = 1311; + this.state = 1348; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 148, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 151, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 1307; + this.state = 1344; this.match(FlinkSqlParser.COMMA); - this.state = 1308; + this.state = 1345; this.namedWindow(); } } } - this.state = 1313; + this.state = 1350; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 148, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 151, this._ctx); } } } @@ -6381,15 +6557,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public namedWindow(): NamedWindowContext { let localctx: NamedWindowContext = new NamedWindowContext(this, this._ctx, this.state); - this.enterRule(localctx, 194, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localctx, 202, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localctx, 1); { - this.state = 1314; + this.state = 1351; localctx._name = this.errorCapturingIdentifier(); - this.state = 1315; + this.state = 1352; this.match(FlinkSqlParser.AS); - this.state = 1316; + this.state = 1353; this.windowSpec(); } } @@ -6410,94 +6586,94 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowSpec(): WindowSpecContext { let localctx: WindowSpecContext = new WindowSpecContext(this, this._ctx, this.state); - this.enterRule(localctx, 196, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localctx, 204, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1319; + this.state = 1356; this._errHandler.sync(this); _la = this._input.LA(1); - if (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294967167) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967295) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294967295) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294967295) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4294934527) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1031800543) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 266320383) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 19) !== 0)) { + if (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294967167) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967295) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294967295) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294967295) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4294934527) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1971324639) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 266320383) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 19) !== 0)) { { - this.state = 1318; + this.state = 1355; localctx._name = this.errorCapturingIdentifier(); } } - this.state = 1321; + this.state = 1358; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1332; + this.state = 1369; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===18) { { - this.state = 1322; + this.state = 1359; this.match(FlinkSqlParser.ORDER); - this.state = 1323; + this.state = 1360; this.match(FlinkSqlParser.BY); - this.state = 1324; + this.state = 1361; this.sortItem(); - this.state = 1329; + this.state = 1366; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1325; + this.state = 1362; this.match(FlinkSqlParser.COMMA); - this.state = 1326; + this.state = 1363; this.sortItem(); } } - this.state = 1331; + this.state = 1368; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 1344; + this.state = 1381; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===60) { { - this.state = 1334; + this.state = 1371; this.match(FlinkSqlParser.PARTITION); - this.state = 1335; + this.state = 1372; this.match(FlinkSqlParser.BY); - this.state = 1336; + this.state = 1373; this.expression(); - this.state = 1341; + this.state = 1378; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1337; + this.state = 1374; this.match(FlinkSqlParser.COMMA); - this.state = 1338; + this.state = 1375; this.expression(); } } - this.state = 1343; + this.state = 1380; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 1347; + this.state = 1384; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===61 || _la===62) { { - this.state = 1346; + this.state = 1383; this.windowFrame(); } } - this.state = 1349; + this.state = 1386; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6518,19 +6694,19 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public sortItem(): SortItemContext { let localctx: SortItemContext = new SortItemContext(this, this._ctx, this.state); - this.enterRule(localctx, 198, FlinkSqlParser.RULE_sortItem); + this.enterRule(localctx, 206, FlinkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1351; + this.state = 1388; this.expression(); - this.state = 1353; + this.state = 1390; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===35 || _la===36) { { - this.state = 1352; + this.state = 1389; localctx._ordering = this._input.LT(1); _la = this._input.LA(1); if(!(_la===35 || _la===36)) { @@ -6543,14 +6719,14 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1357; + this.state = 1394; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===34) { { - this.state = 1355; + this.state = 1392; this.match(FlinkSqlParser.NULLS); - this.state = 1356; + this.state = 1393; localctx._nullOrder = this._input.LT(1); _la = this._input.LA(1); if(!(_la===67 || _la===69)) { @@ -6582,26 +6758,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public windowFrame(): WindowFrameContext { let localctx: WindowFrameContext = new WindowFrameContext(this, this._ctx, this.state); - this.enterRule(localctx, 200, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localctx, 208, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1363; + this.state = 1400; this._errHandler.sync(this); switch (this._input.LA(1)) { case 61: this.enterOuterAlt(localctx, 1); { - this.state = 1359; + this.state = 1396; this.match(FlinkSqlParser.RANGE); - this.state = 1360; + this.state = 1397; this.frameBound(); } break; case 62: this.enterOuterAlt(localctx, 2); { - this.state = 1361; + this.state = 1398; this.match(FlinkSqlParser.ROWS); - this.state = 1362; + this.state = 1399; this.frameBound(); } break; @@ -6626,13 +6802,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public frameBound(): FrameBoundContext { let localctx: FrameBoundContext = new FrameBoundContext(this, this._ctx, this.state); - this.enterRule(localctx, 202, FlinkSqlParser.RULE_frameBound); + this.enterRule(localctx, 210, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localctx, 1); { - this.state = 1365; + this.state = 1402; this.expression(); - this.state = 1366; + this.state = 1403; this.match(FlinkSqlParser.PRECEDING); } } @@ -6653,11 +6829,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public expression(): ExpressionContext { let localctx: ExpressionContext = new ExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 204, FlinkSqlParser.RULE_expression); + this.enterRule(localctx, 212, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localctx, 1); { - this.state = 1368; + this.state = 1405; this.booleanExpression(0); } } @@ -6688,24 +6864,24 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: BooleanExpressionContext = new BooleanExpressionContext(this, this._ctx, _parentState); let _prevctx: BooleanExpressionContext = localctx; - let _startState: number = 206; - this.enterRecursionRule(localctx, 206, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState: number = 214; + this.enterRecursionRule(localctx, 214, FlinkSqlParser.RULE_booleanExpression, _p); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1382; + this.state = 1419; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 159, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 162, this._ctx) ) { case 1: { localctx = new LogicalNotContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1371; + this.state = 1408; this.match(FlinkSqlParser.NOT); - this.state = 1372; + this.state = 1409; this.booleanExpression(5); } break; @@ -6714,13 +6890,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ExistsContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1373; + this.state = 1410; this.match(FlinkSqlParser.EXISTS); - this.state = 1374; + this.state = 1411; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1375; + this.state = 1412; this.queryStatement(0); - this.state = 1376; + this.state = 1413; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6729,14 +6905,14 @@ export default class FlinkSqlParser extends Parser { localctx = new PredicatedContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1378; + this.state = 1415; this.valueExpression(0); - this.state = 1380; + this.state = 1417; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 158, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 161, this._ctx) ) { case 1: { - this.state = 1379; + this.state = 1416; this.predicate(); } break; @@ -6745,9 +6921,9 @@ export default class FlinkSqlParser extends Parser { break; } this._ctx.stop = this._input.LT(-1); - this.state = 1392; + this.state = 1429; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 161, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 164, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -6755,21 +6931,21 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1390; + this.state = 1427; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 160, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 163, this._ctx) ) { case 1: { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); (localctx as LogicalBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1384; + this.state = 1421; if (!(this.precpred(this._ctx, 2))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - this.state = 1385; + this.state = 1422; (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.AND); - this.state = 1386; + this.state = 1423; (localctx as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -6778,22 +6954,22 @@ export default class FlinkSqlParser extends Parser { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); (localctx as LogicalBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1387; + this.state = 1424; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1388; + this.state = 1425; (localctx as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.OR); - this.state = 1389; + this.state = 1426; (localctx as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 1394; + this.state = 1431; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 161, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 164, this._ctx); } } } @@ -6814,145 +6990,145 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public predicate(): PredicateContext { let localctx: PredicateContext = new PredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 208, FlinkSqlParser.RULE_predicate); + this.enterRule(localctx, 216, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1478; + this.state = 1515; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 174, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 177, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1396; + this.state = 1433; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1395; + this.state = 1432; this.match(FlinkSqlParser.NOT); } } - this.state = 1398; + this.state = 1435; localctx._kind = this.match(FlinkSqlParser.BETWEEN); - this.state = 1399; + this.state = 1436; localctx._lower = this.valueExpression(0); - this.state = 1400; + this.state = 1437; this.match(FlinkSqlParser.AND); - this.state = 1401; + this.state = 1438; localctx._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1404; + this.state = 1441; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1403; + this.state = 1440; this.match(FlinkSqlParser.NOT); } } - this.state = 1406; + this.state = 1443; localctx._kind = this.match(FlinkSqlParser.IN); - this.state = 1407; + this.state = 1444; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1408; + this.state = 1445; this.expression(); - this.state = 1413; + this.state = 1450; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1409; + this.state = 1446; this.match(FlinkSqlParser.COMMA); - this.state = 1410; + this.state = 1447; this.expression(); } } - this.state = 1415; + this.state = 1452; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1416; + this.state = 1453; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1419; + this.state = 1456; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1418; + this.state = 1455; this.match(FlinkSqlParser.NOT); } } - this.state = 1421; + this.state = 1458; localctx._kind = this.match(FlinkSqlParser.IN); - this.state = 1422; + this.state = 1459; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1423; + this.state = 1460; this.queryStatement(0); - this.state = 1424; + this.state = 1461; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1426; + this.state = 1463; localctx._kind = this.match(FlinkSqlParser.EXISTS); - this.state = 1427; + this.state = 1464; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1428; + this.state = 1465; this.queryStatement(0); - this.state = 1429; + this.state = 1466; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1432; + this.state = 1469; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1431; + this.state = 1468; this.match(FlinkSqlParser.NOT); } } - this.state = 1434; + this.state = 1471; localctx._kind = this.match(FlinkSqlParser.RLIKE); - this.state = 1435; + this.state = 1472; localctx._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1437; + this.state = 1474; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1436; + this.state = 1473; this.match(FlinkSqlParser.NOT); } } - this.state = 1439; + this.state = 1476; localctx._kind = this.match(FlinkSqlParser.LIKE); - this.state = 1440; + this.state = 1477; localctx._quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===8 || _la===9)) { @@ -6962,40 +7138,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1454; + this.state = 1491; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 169, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 172, this._ctx) ) { case 1: { - this.state = 1441; + this.state = 1478; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1442; + this.state = 1479; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1443; + this.state = 1480; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1444; + this.state = 1481; this.expression(); - this.state = 1449; + this.state = 1486; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1445; + this.state = 1482; this.match(FlinkSqlParser.COMMA); - this.state = 1446; + this.state = 1483; this.expression(); } } - this.state = 1451; + this.state = 1488; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1452; + this.state = 1489; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7005,57 +7181,57 @@ export default class FlinkSqlParser extends Parser { case 7: this.enterOuterAlt(localctx, 7); { - this.state = 1457; + this.state = 1494; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1456; + this.state = 1493; this.match(FlinkSqlParser.NOT); } } - this.state = 1459; + this.state = 1496; localctx._kind = this.match(FlinkSqlParser.LIKE); - this.state = 1460; + this.state = 1497; localctx._pattern = this.valueExpression(0); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 1461; + this.state = 1498; this.match(FlinkSqlParser.IS); - this.state = 1463; + this.state = 1500; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1462; + this.state = 1499; this.match(FlinkSqlParser.NOT); } } - this.state = 1465; + this.state = 1502; localctx._kind = this.match(FlinkSqlParser.NULL); } break; case 9: this.enterOuterAlt(localctx, 9); { - this.state = 1466; + this.state = 1503; this.match(FlinkSqlParser.IS); - this.state = 1468; + this.state = 1505; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1467; + this.state = 1504; this.match(FlinkSqlParser.NOT); } } - this.state = 1470; + this.state = 1507; localctx._kind = this._input.LT(1); _la = this._input.LA(1); if(!(_la===32 || _la===33)) { @@ -7070,23 +7246,23 @@ export default class FlinkSqlParser extends Parser { case 10: this.enterOuterAlt(localctx, 10); { - this.state = 1471; + this.state = 1508; this.match(FlinkSqlParser.IS); - this.state = 1473; + this.state = 1510; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1472; + this.state = 1509; this.match(FlinkSqlParser.NOT); } } - this.state = 1475; + this.state = 1512; localctx._kind = this.match(FlinkSqlParser.DISTINCT); - this.state = 1476; + this.state = 1513; this.match(FlinkSqlParser.FROM); - this.state = 1477; + this.state = 1514; localctx._right = this.valueExpression(0); } break; @@ -7109,28 +7285,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public likePredicate(): LikePredicateContext { let localctx: LikePredicateContext = new LikePredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 210, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localctx, 218, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1505; + this.state = 1542; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 179, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 182, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1481; + this.state = 1518; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1480; + this.state = 1517; this.match(FlinkSqlParser.NOT); } } - this.state = 1483; + this.state = 1520; localctx._kind = this.match(FlinkSqlParser.LIKE); - this.state = 1484; + this.state = 1521; localctx._quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===8 || _la===9)) { @@ -7140,40 +7316,40 @@ export default class FlinkSqlParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1498; + this.state = 1535; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 177, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 180, this._ctx) ) { case 1: { - this.state = 1485; + this.state = 1522; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1486; + this.state = 1523; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1487; + this.state = 1524; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1488; + this.state = 1525; this.expression(); - this.state = 1493; + this.state = 1530; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1489; + this.state = 1526; this.match(FlinkSqlParser.COMMA); - this.state = 1490; + this.state = 1527; this.expression(); } } - this.state = 1495; + this.state = 1532; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1496; + this.state = 1533; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7183,19 +7359,19 @@ export default class FlinkSqlParser extends Parser { case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1501; + this.state = 1538; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1500; + this.state = 1537; this.match(FlinkSqlParser.NOT); } } - this.state = 1503; + this.state = 1540; localctx._kind = this.match(FlinkSqlParser.LIKE); - this.state = 1504; + this.state = 1541; localctx._pattern = this.valueExpression(0); } break; @@ -7228,23 +7404,23 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: ValueExpressionContext = new ValueExpressionContext(this, this._ctx, _parentState); let _prevctx: ValueExpressionContext = localctx; - let _startState: number = 212; - this.enterRecursionRule(localctx, 212, FlinkSqlParser.RULE_valueExpression, _p); + let _startState: number = 220; + this.enterRecursionRule(localctx, 220, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1511; + this.state = 1548; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 180, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 183, this._ctx) ) { case 1: { localctx = new ValueExpressionDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1508; + this.state = 1545; this.primaryExpression(0); } break; @@ -7253,25 +7429,25 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticUnaryContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1509; + this.state = 1546; (localctx as ArithmeticUnaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 786433) !== 0))) { + if(!(((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 786433) !== 0))) { (localctx as ArithmeticUnaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1510; + this.state = 1547; this.valueExpression(7); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1534; + this.state = 1571; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 182, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 185, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -7279,29 +7455,29 @@ export default class FlinkSqlParser extends Parser { } _prevctx = localctx; { - this.state = 1532; + this.state = 1569; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 181, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 184, this._ctx) ) { case 1: { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1513; + this.state = 1550; if (!(this.precpred(this._ctx, 6))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 6)"); } - this.state = 1514; + this.state = 1551; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===132 || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 145) !== 0))) { + if(!(_la===132 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 145) !== 0))) { (localctx as ArithmeticBinaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1515; + this.state = 1552; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -7310,21 +7486,21 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1516; + this.state = 1553; if (!(this.precpred(this._ctx, 5))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); } - this.state = 1517; + this.state = 1554; (localctx as ArithmeticBinaryContext)._operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 11) !== 0))) { + if(!(((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 11) !== 0))) { (localctx as ArithmeticBinaryContext)._operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1518; + this.state = 1555; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -7333,13 +7509,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1519; + this.state = 1556; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1520; + this.state = 1557; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1521; + this.state = 1558; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -7348,13 +7524,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1522; + this.state = 1559; if (!(this.precpred(this._ctx, 3))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - this.state = 1523; + this.state = 1560; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1524; + this.state = 1561; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -7363,13 +7539,13 @@ export default class FlinkSqlParser extends Parser { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ArithmeticBinaryContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1525; + this.state = 1562; if (!(this.precpred(this._ctx, 2))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - this.state = 1526; + this.state = 1563; (localctx as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1527; + this.state = 1564; (localctx as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -7378,22 +7554,22 @@ export default class FlinkSqlParser extends Parser { localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); (localctx as ComparisonContext)._left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1528; + this.state = 1565; if (!(this.precpred(this._ctx, 1))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - this.state = 1529; + this.state = 1566; this.comparisonOperator(); - this.state = 1530; + this.state = 1567; (localctx as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1536; + this.state = 1573; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 182, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 185, this._ctx); } } } @@ -7424,51 +7600,51 @@ export default class FlinkSqlParser extends Parser { let _parentState: number = this.state; let localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this, this._ctx, _parentState); let _prevctx: PrimaryExpressionContext = localctx; - let _startState: number = 214; - this.enterRecursionRule(localctx, 214, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState: number = 222; + this.enterRecursionRule(localctx, 222, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1628; + this.state = 1665; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 192, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 195, this._ctx) ) { case 1: { localctx = new SearchedCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1538; + this.state = 1575; this.match(FlinkSqlParser.CASE); - this.state = 1540; + this.state = 1577; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1539; + this.state = 1576; this.whenClause(); } } - this.state = 1542; + this.state = 1579; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===40); - this.state = 1546; + this.state = 1583; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===42) { { - this.state = 1544; + this.state = 1581; this.match(FlinkSqlParser.ELSE); - this.state = 1545; + this.state = 1582; (localctx as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1548; + this.state = 1585; this.match(FlinkSqlParser.END); } break; @@ -7477,37 +7653,37 @@ export default class FlinkSqlParser extends Parser { localctx = new SimpleCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1550; + this.state = 1587; this.match(FlinkSqlParser.CASE); - this.state = 1551; + this.state = 1588; (localctx as SimpleCaseContext)._value = this.expression(); - this.state = 1553; + this.state = 1590; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1552; + this.state = 1589; this.whenClause(); } } - this.state = 1555; + this.state = 1592; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===40); - this.state = 1559; + this.state = 1596; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===42) { { - this.state = 1557; + this.state = 1594; this.match(FlinkSqlParser.ELSE); - this.state = 1558; + this.state = 1595; (localctx as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1561; + this.state = 1598; this.match(FlinkSqlParser.END); } break; @@ -7516,17 +7692,17 @@ export default class FlinkSqlParser extends Parser { localctx = new CastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1563; + this.state = 1600; this.match(FlinkSqlParser.CAST); - this.state = 1564; + this.state = 1601; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1565; + this.state = 1602; this.expression(); - this.state = 1566; + this.state = 1603; this.match(FlinkSqlParser.AS); - this.state = 1567; + this.state = 1604; this.columnType(); - this.state = 1568; + this.state = 1605; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7535,25 +7711,25 @@ export default class FlinkSqlParser extends Parser { localctx = new FirstContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1570; + this.state = 1607; this.match(FlinkSqlParser.FIRST); - this.state = 1571; + this.state = 1608; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1572; + this.state = 1609; this.expression(); - this.state = 1575; + this.state = 1612; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===124) { { - this.state = 1573; + this.state = 1610; this.match(FlinkSqlParser.IGNORE); - this.state = 1574; + this.state = 1611; this.match(FlinkSqlParser.NULLS); } } - this.state = 1577; + this.state = 1614; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7562,25 +7738,25 @@ export default class FlinkSqlParser extends Parser { localctx = new LastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1579; + this.state = 1616; this.match(FlinkSqlParser.LAST); - this.state = 1580; + this.state = 1617; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1581; + this.state = 1618; this.expression(); - this.state = 1584; + this.state = 1621; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===124) { { - this.state = 1582; + this.state = 1619; this.match(FlinkSqlParser.IGNORE); - this.state = 1583; + this.state = 1620; this.match(FlinkSqlParser.NULLS); } } - this.state = 1586; + this.state = 1623; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7589,17 +7765,17 @@ export default class FlinkSqlParser extends Parser { localctx = new PositionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1588; + this.state = 1625; this.match(FlinkSqlParser.POSITION); - this.state = 1589; + this.state = 1626; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1590; + this.state = 1627; (localctx as PositionContext)._substr = this.valueExpression(0); - this.state = 1591; + this.state = 1628; this.match(FlinkSqlParser.IN); - this.state = 1592; + this.state = 1629; (localctx as PositionContext)._str = this.valueExpression(0); - this.state = 1593; + this.state = 1630; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7608,7 +7784,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ConstantDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1595; + this.state = 1632; this.constant(); } break; @@ -7617,7 +7793,7 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1596; + this.state = 1633; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -7626,11 +7802,11 @@ export default class FlinkSqlParser extends Parser { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1597; + this.state = 1634; this.uid(); - this.state = 1598; + this.state = 1635; this.match(FlinkSqlParser.DOT); - this.state = 1599; + this.state = 1636; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -7639,11 +7815,11 @@ export default class FlinkSqlParser extends Parser { localctx = new SubqueryExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1601; + this.state = 1638; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1602; + this.state = 1639; this.queryStatement(0); - this.state = 1603; + this.state = 1640; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7652,47 +7828,47 @@ export default class FlinkSqlParser extends Parser { localctx = new FunctionCallContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1605; + this.state = 1642; this.functionName(); - this.state = 1606; + this.state = 1643; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1618; + this.state = 1655; this._errHandler.sync(this); _la = this._input.LA(1); - if (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294967167) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967295) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294967295) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294967295) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4294934527) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1031800543) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 266320383) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 2081226881) !== 0)) { + if (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294967167) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967295) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294967295) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294967295) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4294934527) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1971324639) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 266320383) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 2081226881) !== 0)) { { - this.state = 1608; + this.state = 1645; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 189, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 192, this._ctx) ) { case 1: { - this.state = 1607; + this.state = 1644; this.setQuantifier(); } break; } - this.state = 1610; + this.state = 1647; this.expression(); - this.state = 1615; + this.state = 1652; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1611; + this.state = 1648; this.match(FlinkSqlParser.COMMA); - this.state = 1612; + this.state = 1649; this.expression(); } } - this.state = 1617; + this.state = 1654; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 1620; + this.state = 1657; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -7701,7 +7877,7 @@ export default class FlinkSqlParser extends Parser { localctx = new ColumnReferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1622; + this.state = 1659; this.identifier(); } break; @@ -7710,7 +7886,7 @@ export default class FlinkSqlParser extends Parser { localctx = new DereferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1623; + this.state = 1660; this.dereferenceDefinition(); } break; @@ -7719,19 +7895,19 @@ export default class FlinkSqlParser extends Parser { localctx = new ParenthesizedExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1624; + this.state = 1661; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1625; + this.state = 1662; this.expression(); - this.state = 1626; + this.state = 1663; this.match(FlinkSqlParser.RR_BRACKET); } break; } this._ctx.stop = this._input.LT(-1); - this.state = 1637; + this.state = 1674; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 193, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 196, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -7743,22 +7919,22 @@ export default class FlinkSqlParser extends Parser { localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); (localctx as SubscriptContext)._value = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1630; + this.state = 1667; if (!(this.precpred(this._ctx, 4))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); } - this.state = 1631; + this.state = 1668; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1632; + this.state = 1669; (localctx as SubscriptContext)._index = this.valueExpression(0); - this.state = 1633; + this.state = 1670; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1639; + this.state = 1676; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 193, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 196, this._ctx); } } } @@ -7779,11 +7955,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public functionName(): FunctionNameContext { let localctx: FunctionNameContext = new FunctionNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 216, FlinkSqlParser.RULE_functionName); + this.enterRule(localctx, 224, FlinkSqlParser.RULE_functionName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1640; + this.state = 1677; this.uid(); } } @@ -7804,11 +7980,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public dereferenceDefinition(): DereferenceDefinitionContext { let localctx: DereferenceDefinitionContext = new DereferenceDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 218, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localctx, 226, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localctx, 1); { - this.state = 1642; + this.state = 1679; this.uid(); } } @@ -7829,11 +8005,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public correlationName(): CorrelationNameContext { let localctx: CorrelationNameContext = new CorrelationNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 220, FlinkSqlParser.RULE_correlationName); + this.enterRule(localctx, 228, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1644; + this.state = 1681; this.identifier(); } } @@ -7854,22 +8030,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public qualifiedName(): QualifiedNameContext { let localctx: QualifiedNameContext = new QualifiedNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 222, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localctx, 230, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 1648; + this.state = 1685; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 194, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 197, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1646; + this.state = 1683; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1647; + this.state = 1684; this.dereferenceDefinition(); } break; @@ -7892,24 +8068,24 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public interval(): IntervalContext { let localctx: IntervalContext = new IntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 224, FlinkSqlParser.RULE_interval); + this.enterRule(localctx, 232, FlinkSqlParser.RULE_interval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1650; + this.state = 1687; this.match(FlinkSqlParser.INTERVAL); - this.state = 1653; + this.state = 1690; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 195, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 198, this._ctx) ) { case 1: { - this.state = 1651; + this.state = 1688; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 1652; + this.state = 1689; this.errorCapturingUnitToUnitInterval(); } break; @@ -7933,18 +8109,18 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localctx: ErrorCapturingMultiUnitsIntervalContext = new ErrorCapturingMultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 226, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localctx, 234, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1655; + this.state = 1692; this.multiUnitsInterval(); - this.state = 1657; + this.state = 1694; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 196, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 199, this._ctx) ) { case 1: { - this.state = 1656; + this.state = 1693; this.unitToUnitInterval(); } break; @@ -7968,12 +8144,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public multiUnitsInterval(): MultiUnitsIntervalContext { let localctx: MultiUnitsIntervalContext = new MultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 228, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localctx, 236, FlinkSqlParser.RULE_multiUnitsInterval); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1662; + this.state = 1699; this._errHandler.sync(this); _alt = 1; do { @@ -7981,9 +8157,9 @@ export default class FlinkSqlParser extends Parser { case 1: { { - this.state = 1659; + this.state = 1696; this.intervalValue(); - this.state = 1660; + this.state = 1697; this.identifier(); } } @@ -7991,9 +8167,9 @@ export default class FlinkSqlParser extends Parser { default: throw new NoViableAltException(this); } - this.state = 1664; + this.state = 1701; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 197, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 200, this._ctx); } while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER); } } @@ -8014,24 +8190,24 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localctx: ErrorCapturingUnitToUnitIntervalContext = new ErrorCapturingUnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 230, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localctx, 238, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1666; + this.state = 1703; localctx._body = this.unitToUnitInterval(); - this.state = 1669; + this.state = 1706; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 198, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 201, this._ctx) ) { case 1: { - this.state = 1667; + this.state = 1704; localctx._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 1668; + this.state = 1705; localctx._error2 = this.unitToUnitInterval(); } break; @@ -8055,17 +8231,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unitToUnitInterval(): UnitToUnitIntervalContext { let localctx: UnitToUnitIntervalContext = new UnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 232, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localctx, 240, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localctx, 1); { - this.state = 1671; + this.state = 1708; localctx._value = this.intervalValue(); - this.state = 1672; + this.state = 1709; localctx._from_ = this.identifier(); - this.state = 1673; + this.state = 1710; this.match(FlinkSqlParser.TO); - this.state = 1674; + this.state = 1711; localctx._to = this.identifier(); } } @@ -8086,26 +8262,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public intervalValue(): IntervalValueContext { let localctx: IntervalValueContext = new IntervalValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 234, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localctx, 242, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 1681; + this.state = 1718; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 314: case 315: - case 323: + case 316: case 324: + case 325: this.enterOuterAlt(localctx, 1); { - this.state = 1677; + this.state = 1714; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===314 || _la===315) { + if (_la===315 || _la===316) { { - this.state = 1676; + this.state = 1713; _la = this._input.LA(1); - if(!(_la===314 || _la===315)) { + if(!(_la===315 || _la===316)) { this._errHandler.recoverInline(this); } else { @@ -8115,9 +8291,9 @@ export default class FlinkSqlParser extends Parser { } } - this.state = 1679; + this.state = 1716; _la = this._input.LA(1); - if(!(_la===323 || _la===324)) { + if(!(_la===324 || _la===325)) { this._errHandler.recoverInline(this); } else { @@ -8126,10 +8302,10 @@ export default class FlinkSqlParser extends Parser { } } break; - case 322: + case 323: this.enterOuterAlt(localctx, 2); { - this.state = 1680; + this.state = 1717; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -8154,29 +8330,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public columnAlias(): ColumnAliasContext { let localctx: ColumnAliasContext = new ColumnAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 236, FlinkSqlParser.RULE_columnAlias); + this.enterRule(localctx, 244, FlinkSqlParser.RULE_columnAlias); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1684; + this.state = 1721; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 201, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 204, this._ctx) ) { case 1: { - this.state = 1683; + this.state = 1720; this.match(FlinkSqlParser.AS); } break; } - this.state = 1686; + this.state = 1723; this.strictIdentifier(); - this.state = 1688; + this.state = 1725; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===303) { + if (_la===304) { { - this.state = 1687; + this.state = 1724; this.identifierList(); } } @@ -8200,28 +8376,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableAlias(): TableAliasContext { let localctx: TableAliasContext = new TableAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 238, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localctx, 246, FlinkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localctx, 1); { - this.state = 1691; + this.state = 1728; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 203, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 206, this._ctx) ) { case 1: { - this.state = 1690; + this.state = 1727; this.match(FlinkSqlParser.AS); } break; } - this.state = 1693; + this.state = 1730; this.strictIdentifier(); - this.state = 1695; + this.state = 1732; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 204, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 207, this._ctx) ) { case 1: { - this.state = 1694; + this.state = 1731; this.identifierList(); } break; @@ -8245,13 +8421,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localctx: ErrorCapturingIdentifierContext = new ErrorCapturingIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 240, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localctx, 248, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localctx, 1); { - this.state = 1697; + this.state = 1734; this.identifier(); - this.state = 1698; + this.state = 1735; this.errorCapturingIdentifierExtra(); } } @@ -8272,36 +8448,36 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localctx: ErrorCapturingIdentifierExtraContext = new ErrorCapturingIdentifierExtraContext(this, this._ctx, this.state); - this.enterRule(localctx, 242, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localctx, 250, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 1707; + this.state = 1744; this._errHandler.sync(this); switch (this._input.LA(1)) { case 131: localctx = new ErrorIdentContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 1702; + this.state = 1739; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 1700; + this.state = 1737; this.match(FlinkSqlParser.MINUS); - this.state = 1701; + this.state = 1738; this.identifier(); } } - this.state = 1704; + this.state = 1741; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la===131); } break; case 7: - case 303: + case 304: localctx = new RealIdentContext(this, localctx); this.enterOuterAlt(localctx, 2); // tslint:disable-next-line:no-empty @@ -8329,15 +8505,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifierList(): IdentifierListContext { let localctx: IdentifierListContext = new IdentifierListContext(this, this._ctx, this.state); - this.enterRule(localctx, 244, FlinkSqlParser.RULE_identifierList); + this.enterRule(localctx, 252, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localctx, 1); { - this.state = 1709; + this.state = 1746; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1710; + this.state = 1747; this.identifierSeq(); - this.state = 1711; + this.state = 1748; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -8358,26 +8534,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifierSeq(): IdentifierSeqContext { let localctx: IdentifierSeqContext = new IdentifierSeqContext(this, this._ctx, this.state); - this.enterRule(localctx, 246, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localctx, 254, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1713; + this.state = 1750; this.identifier(); - this.state = 1718; + this.state = 1755; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1714; + this.state = 1751; this.match(FlinkSqlParser.COMMA); - this.state = 1715; + this.state = 1752; this.identifier(); } } - this.state = 1720; + this.state = 1757; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8400,22 +8576,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public identifier(): IdentifierContext { let localctx: IdentifierContext = new IdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 248, FlinkSqlParser.RULE_identifier); + this.enterRule(localctx, 256, FlinkSqlParser.RULE_identifier); try { - this.state = 1723; + this.state = 1760; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 208, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 211, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1721; + this.state = 1758; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1722; + this.state = 1759; this.strictNonReserved(); } break; @@ -8438,16 +8614,16 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public strictIdentifier(): StrictIdentifierContext { let localctx: StrictIdentifierContext = new StrictIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 250, FlinkSqlParser.RULE_strictIdentifier); + this.enterRule(localctx, 258, FlinkSqlParser.RULE_strictIdentifier); try { - this.state = 1729; + this.state = 1766; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 209, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 212, this._ctx) ) { case 1: localctx = new UnquotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 1); { - this.state = 1725; + this.state = 1762; this.unquotedIdentifier(); } break; @@ -8455,7 +8631,7 @@ export default class FlinkSqlParser extends Parser { localctx = new QuotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 2); { - this.state = 1726; + this.state = 1763; this.quotedIdentifier(); } break; @@ -8463,7 +8639,7 @@ export default class FlinkSqlParser extends Parser { localctx = new AnsiNonReservedKeywordsContext(this, localctx); this.enterOuterAlt(localctx, 3); { - this.state = 1727; + this.state = 1764; this.ansiNonReserved(); } break; @@ -8471,7 +8647,7 @@ export default class FlinkSqlParser extends Parser { localctx = new NonReservedKeywordsContext(this, localctx); this.enterOuterAlt(localctx, 4); { - this.state = 1728; + this.state = 1765; this.nonReserved(); } break; @@ -8494,14 +8670,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unquotedIdentifier(): UnquotedIdentifierContext { let localctx: UnquotedIdentifierContext = new UnquotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 252, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localctx, 260, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1731; + this.state = 1768; _la = this._input.LA(1); - if(!(_la===323 || _la===326)) { + if(!(_la===324 || _la===327)) { this._errHandler.recoverInline(this); } else { @@ -8527,11 +8703,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public quotedIdentifier(): QuotedIdentifierContext { let localctx: QuotedIdentifierContext = new QuotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 254, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localctx, 262, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localctx, 1); { - this.state = 1733; + this.state = 1770; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -8552,17 +8728,17 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public whenClause(): WhenClauseContext { let localctx: WhenClauseContext = new WhenClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 256, FlinkSqlParser.RULE_whenClause); + this.enterRule(localctx, 264, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localctx, 1); { - this.state = 1735; + this.state = 1772; this.match(FlinkSqlParser.WHEN); - this.state = 1736; + this.state = 1773; localctx._condition = this.expression(); - this.state = 1737; + this.state = 1774; this.match(FlinkSqlParser.THEN); - this.state = 1738; + this.state = 1775; localctx._result = this.expression(); } } @@ -8583,26 +8759,26 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public uidList(): UidListContext { let localctx: UidListContext = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 258, FlinkSqlParser.RULE_uidList); + this.enterRule(localctx, 266, FlinkSqlParser.RULE_uidList); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1740; + this.state = 1777; this.uid(); - this.state = 1745; + this.state = 1782; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1741; + this.state = 1778; this.match(FlinkSqlParser.COMMA); - this.state = 1742; + this.state = 1779; this.uid(); } } - this.state = 1747; + this.state = 1784; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -8625,28 +8801,28 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public uid(): UidContext { let localctx: UidContext = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 260, FlinkSqlParser.RULE_uid); + this.enterRule(localctx, 268, FlinkSqlParser.RULE_uid); try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1748; + this.state = 1785; this.match(FlinkSqlParser.ID_LITERAL); - this.state = 1752; + this.state = 1789; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 211, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 214, this._ctx); while (_alt !== 1 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1 + 1) { { { - this.state = 1749; + this.state = 1786; this.match(FlinkSqlParser.DOT_ID); } } } - this.state = 1754; + this.state = 1791; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 211, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 214, this._ctx); } } } @@ -8667,31 +8843,31 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public plusUid(): PlusUidContext { let localctx: PlusUidContext = new PlusUidContext(this, this._ctx, this.state); - this.enterRule(localctx, 262, FlinkSqlParser.RULE_plusUid); + this.enterRule(localctx, 270, FlinkSqlParser.RULE_plusUid); let _la: number; try { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1755; + this.state = 1792; _la = this._input.LA(1); - if(!(_la===326 || _la===327)) { + if(!(_la===327 || _la===328)) { this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 1759; + this.state = 1796; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 212, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 215, this._ctx); while (_alt !== 1 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1 + 1) { { { - this.state = 1756; + this.state = 1793; _la = this._input.LA(1); - if(!(_la===320 || _la===321)) { + if(!(_la===321 || _la===322)) { this._errHandler.recoverInline(this); } else { @@ -8701,9 +8877,9 @@ export default class FlinkSqlParser extends Parser { } } } - this.state = 1761; + this.state = 1798; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 212, this._ctx); + _alt = this._interp.adaptivePredict(this._input, 215, this._ctx); } } } @@ -8724,13 +8900,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public withOption(): WithOptionContext { let localctx: WithOptionContext = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 264, FlinkSqlParser.RULE_withOption); + this.enterRule(localctx, 272, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localctx, 1); { - this.state = 1762; + this.state = 1799; this.match(FlinkSqlParser.WITH); - this.state = 1763; + this.state = 1800; this.tablePropertyList(); } } @@ -8751,15 +8927,15 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public ifNotExists(): IfNotExistsContext { let localctx: IfNotExistsContext = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 266, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localctx, 274, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); { - this.state = 1765; + this.state = 1802; this.match(FlinkSqlParser.IF); - this.state = 1766; + this.state = 1803; this.match(FlinkSqlParser.NOT); - this.state = 1767; + this.state = 1804; this.match(FlinkSqlParser.EXISTS); } } @@ -8780,13 +8956,13 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public ifExists(): IfExistsContext { let localctx: IfExistsContext = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 268, FlinkSqlParser.RULE_ifExists); + this.enterRule(localctx, 276, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); { - this.state = 1769; + this.state = 1806; this.match(FlinkSqlParser.IF); - this.state = 1770; + this.state = 1807; this.match(FlinkSqlParser.EXISTS); } } @@ -8807,32 +8983,32 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyList(): TablePropertyListContext { let localctx: TablePropertyListContext = new TablePropertyListContext(this, this._ctx, this.state); - this.enterRule(localctx, 270, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localctx, 278, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1772; + this.state = 1809; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1773; + this.state = 1810; this.tableProperty(); - this.state = 1778; + this.state = 1815; this._errHandler.sync(this); _la = this._input.LA(1); - while (_la===305) { + while (_la===306) { { { - this.state = 1774; + this.state = 1811; this.match(FlinkSqlParser.COMMA); - this.state = 1775; + this.state = 1812; this.tableProperty(); } } - this.state = 1780; + this.state = 1817; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1781; + this.state = 1818; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -8853,29 +9029,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tableProperty(): TablePropertyContext { let localctx: TablePropertyContext = new TablePropertyContext(this, this._ctx, this.state); - this.enterRule(localctx, 272, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localctx, 280, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1783; + this.state = 1820; localctx._key = this.tablePropertyKey(); - this.state = 1788; + this.state = 1825; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===32 || _la===33 || ((((_la - 292)) & ~0x1F) === 0 && ((1 << (_la - 292)) & 3221225473) !== 0) || _la===324) { + if (_la===32 || _la===33 || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 3221225473) !== 0) || _la===325) { { - this.state = 1785; + this.state = 1822; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la===292) { + if (_la===293) { { - this.state = 1784; + this.state = 1821; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 1787; + this.state = 1824; localctx._value = this.tablePropertyValue(); } } @@ -8899,29 +9075,29 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyKey(): TablePropertyKeyContext { let localctx: TablePropertyKeyContext = new TablePropertyKeyContext(this, this._ctx, this.state); - this.enterRule(localctx, 274, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localctx, 282, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 1793; + this.state = 1830; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 216, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 219, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1790; + this.state = 1827; this.identifier(); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1791; + this.state = 1828; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1792; + this.state = 1829; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -8944,22 +9120,22 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public tablePropertyValue(): TablePropertyValueContext { let localctx: TablePropertyValueContext = new TablePropertyValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 276, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localctx, 284, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 1799; + this.state = 1836; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 323: + case 324: this.enterOuterAlt(localctx, 1); { - this.state = 1795; + this.state = 1832; this.match(FlinkSqlParser.DIG_LITERAL); } break; - case 324: + case 325: this.enterOuterAlt(localctx, 2); { - this.state = 1796; + this.state = 1833; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -8967,14 +9143,14 @@ export default class FlinkSqlParser extends Parser { case 33: this.enterOuterAlt(localctx, 3); { - this.state = 1797; + this.state = 1834; this.booleanLiteral(); } break; - case 322: + case 323: this.enterOuterAlt(localctx, 4); { - this.state = 1798; + this.state = 1835; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -8999,40 +9175,40 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public logicalOperator(): LogicalOperatorContext { let localctx: LogicalOperatorContext = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 278, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localctx, 286, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 1807; + this.state = 1844; this._errHandler.sync(this); switch (this._input.LA(1)) { case 23: this.enterOuterAlt(localctx, 1); { - this.state = 1801; + this.state = 1838; this.match(FlinkSqlParser.AND); } break; - case 298: + case 299: this.enterOuterAlt(localctx, 2); { - this.state = 1802; + this.state = 1839; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1803; + this.state = 1840; this.match(FlinkSqlParser.BIT_AND_OP); } break; case 22: this.enterOuterAlt(localctx, 3); { - this.state = 1804; + this.state = 1841; this.match(FlinkSqlParser.OR); } break; - case 297: + case 298: this.enterOuterAlt(localctx, 4); { - this.state = 1805; + this.state = 1842; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1806; + this.state = 1843; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -9057,76 +9233,76 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public comparisonOperator(): ComparisonOperatorContext { let localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 280, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localctx, 288, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 1823; + this.state = 1860; this._errHandler.sync(this); - switch ( this._interp.adaptivePredict(this._input, 219, this._ctx) ) { + switch ( this._interp.adaptivePredict(this._input, 222, this._ctx) ) { case 1: this.enterOuterAlt(localctx, 1); { - this.state = 1809; + this.state = 1846; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localctx, 2); { - this.state = 1810; + this.state = 1847; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localctx, 3); { - this.state = 1811; + this.state = 1848; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localctx, 4); { - this.state = 1812; + this.state = 1849; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1813; + this.state = 1850; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localctx, 5); { - this.state = 1814; + this.state = 1851; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 1815; + this.state = 1852; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localctx, 6); { - this.state = 1816; + this.state = 1853; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1817; + this.state = 1854; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localctx, 7); { - this.state = 1818; + this.state = 1855; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 1819; + this.state = 1856; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localctx, 8); { - this.state = 1820; + this.state = 1857; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1821; + this.state = 1858; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 1822; + this.state = 1859; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -9149,47 +9325,47 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public bitOperator(): BitOperatorContext { let localctx: BitOperatorContext = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 282, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localctx, 290, FlinkSqlParser.RULE_bitOperator); try { - this.state = 1832; + this.state = 1869; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 294: + case 295: this.enterOuterAlt(localctx, 1); { - this.state = 1825; + this.state = 1862; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1826; + this.state = 1863; this.match(FlinkSqlParser.LESS_SYMBOL); } break; - case 293: + case 294: this.enterOuterAlt(localctx, 2); { - this.state = 1827; + this.state = 1864; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 1828; + this.state = 1865; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; - case 298: - this.enterOuterAlt(localctx, 3); - { - this.state = 1829; - this.match(FlinkSqlParser.BIT_AND_OP); - } - break; case 299: + this.enterOuterAlt(localctx, 3); + { + this.state = 1866; + this.match(FlinkSqlParser.BIT_AND_OP); + } + break; + case 300: this.enterOuterAlt(localctx, 4); { - this.state = 1830; + this.state = 1867; this.match(FlinkSqlParser.BIT_XOR_OP); } break; - case 297: + case 298: this.enterOuterAlt(localctx, 5); { - this.state = 1831; + this.state = 1868; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -9214,14 +9390,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public mathOperator(): MathOperatorContext { let localctx: MathOperatorContext = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 284, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localctx, 292, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1834; + this.state = 1871; _la = this._input.LA(1); - if(!(_la===132 || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 221) !== 0))) { + if(!(_la===132 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 221) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9247,14 +9423,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public unaryOperator(): UnaryOperatorContext { let localctx: UnaryOperatorContext = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 286, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localctx, 294, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1836; + this.state = 1873; _la = this._input.LA(1); - if(!(_la===25 || ((((_la - 295)) & ~0x1F) === 0 && ((1 << (_la - 295)) & 1572867) !== 0))) { + if(!(_la===25 || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 1572867) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9280,11 +9456,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public fullColumnName(): FullColumnNameContext { let localctx: FullColumnNameContext = new FullColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 288, FlinkSqlParser.RULE_fullColumnName); + this.enterRule(localctx, 296, FlinkSqlParser.RULE_fullColumnName); try { this.enterOuterAlt(localctx, 1); { - this.state = 1838; + this.state = 1875; this.uid(); } } @@ -9305,39 +9481,39 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public constant(): ConstantContext { let localctx: ConstantContext = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 290, FlinkSqlParser.RULE_constant); + this.enterRule(localctx, 298, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 1852; + this.state = 1889; this._errHandler.sync(this); switch (this._input.LA(1)) { - case 322: + case 323: this.enterOuterAlt(localctx, 1); { - this.state = 1840; + this.state = 1877; this.stringLiteral(); } break; - case 323: + case 324: this.enterOuterAlt(localctx, 2); { - this.state = 1841; + this.state = 1878; this.decimalLiteral(); } break; case 38: this.enterOuterAlt(localctx, 3); { - this.state = 1842; + this.state = 1879; this.interval(); } break; - case 314: + case 315: this.enterOuterAlt(localctx, 4); { - this.state = 1843; + this.state = 1880; this.match(FlinkSqlParser.HYPNEN_SIGN); - this.state = 1844; + this.state = 1881; this.decimalLiteral(); } break; @@ -9345,39 +9521,39 @@ export default class FlinkSqlParser extends Parser { case 33: this.enterOuterAlt(localctx, 5); { - this.state = 1845; + this.state = 1882; this.booleanLiteral(); } break; - case 324: + case 325: this.enterOuterAlt(localctx, 6); { - this.state = 1846; + this.state = 1883; this.match(FlinkSqlParser.REAL_LITERAL); } break; - case 325: + case 326: this.enterOuterAlt(localctx, 7); { - this.state = 1847; + this.state = 1884; this.match(FlinkSqlParser.BIT_STRING); } break; case 25: - case 290: + case 291: this.enterOuterAlt(localctx, 8); { - this.state = 1849; + this.state = 1886; this._errHandler.sync(this); _la = this._input.LA(1); if (_la===25) { { - this.state = 1848; + this.state = 1885; this.match(FlinkSqlParser.NOT); } } - this.state = 1851; + this.state = 1888; this.match(FlinkSqlParser.NULL); } break; @@ -9402,11 +9578,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public stringLiteral(): StringLiteralContext { let localctx: StringLiteralContext = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 292, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localctx, 300, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); { - this.state = 1854; + this.state = 1891; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -9427,11 +9603,11 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public decimalLiteral(): DecimalLiteralContext { let localctx: DecimalLiteralContext = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 294, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localctx, 302, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localctx, 1); { - this.state = 1856; + this.state = 1893; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -9452,12 +9628,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public booleanLiteral(): BooleanLiteralContext { let localctx: BooleanLiteralContext = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 296, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localctx, 304, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1858; + this.state = 1895; _la = this._input.LA(1); if(!(_la===32 || _la===33)) { this._errHandler.recoverInline(this); @@ -9485,12 +9661,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public setQuantifier(): SetQuantifierContext { let localctx: SetQuantifierContext = new SetQuantifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 298, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localctx, 306, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1860; + this.state = 1897; _la = this._input.LA(1); if(!(_la===8 || _la===10)) { this._errHandler.recoverInline(this); @@ -9518,14 +9694,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public ansiNonReserved(): AnsiNonReservedContext { let localctx: AnsiNonReservedContext = new AnsiNonReservedContext(this, this._ctx, this.state); - this.enterRule(localctx, 300, FlinkSqlParser.RULE_ansiNonReserved); + this.enterRule(localctx, 308, FlinkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1862; + this.state = 1899; _la = this._input.LA(1); - if(!(((((_la - 6)) & ~0x1F) === 0 && ((1 << (_la - 6)) & 1978716033) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 4294709249) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 3418108729) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 4280287177) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & 4294967167) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 4294836223) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 4294959087) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 241172919) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 266320383) !== 0))) { + if(!(((((_la - 6)) & ~0x1F) === 0 && ((1 << (_la - 6)) & 1978716033) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 4294709249) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 3418108729) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 4280287177) !== 0) || ((((_la - 136)) & ~0x1F) === 0 && ((1 << (_la - 136)) & 4294967167) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 4294836223) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 4294959087) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 476053943) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 266320383) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9551,12 +9727,12 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public strictNonReserved(): StrictNonReservedContext { let localctx: StrictNonReservedContext = new StrictNonReservedContext(this, this._ctx, this.state); - this.enterRule(localctx, 302, FlinkSqlParser.RULE_strictNonReserved); + this.enterRule(localctx, 310, FlinkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1864; + this.state = 1901; _la = this._input.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 1787) !== 0) || ((((_la - 105)) & ~0x1F) === 0 && ((1 << (_la - 105)) & 15) !== 0) || _la===143 || _la===223)) { this._errHandler.recoverInline(this); @@ -9584,14 +9760,14 @@ export default class FlinkSqlParser extends Parser { // @RuleVersion(0) public nonReserved(): NonReservedContext { let localctx: NonReservedContext = new NonReservedContext(this, this._ctx, this.state); - this.enterRule(localctx, 304, FlinkSqlParser.RULE_nonReserved); + this.enterRule(localctx, 312, FlinkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localctx, 1); { - this.state = 1866; + this.state = 1903; _la = this._input.LA(1); - if(!(((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294052223) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967175) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294966783) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294965247) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4261380095) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1031800543) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 266320383) !== 0))) { + if(!(((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 4294967295) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 4294052223) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 4291015671) !== 0) || ((((_la - 102)) & ~0x1F) === 0 && ((1 << (_la - 102)) & 4294967175) !== 0) || ((((_la - 134)) & ~0x1F) === 0 && ((1 << (_la - 134)) & 4294966783) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 4294965247) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4261380095) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 1971324639) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 266320383) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9617,15 +9793,15 @@ export default class FlinkSqlParser extends Parser { public sempred(localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 74: + case 78: return this.queryStatement_sempred(localctx as QueryStatementContext, predIndex); - case 82: + case 86: return this.tableExpression_sempred(localctx as TableExpressionContext, predIndex); - case 103: - return this.booleanExpression_sempred(localctx as BooleanExpressionContext, predIndex); - case 106: - return this.valueExpression_sempred(localctx as ValueExpressionContext, predIndex); case 107: + return this.booleanExpression_sempred(localctx as BooleanExpressionContext, predIndex); + case 110: + return this.valueExpression_sempred(localctx as ValueExpressionContext, predIndex); + case 111: return this.primaryExpression_sempred(localctx as PrimaryExpressionContext, predIndex); } return true; @@ -9680,7 +9856,7 @@ export default class FlinkSqlParser extends Parser { return true; } - public static readonly _serializedATN: number[] = [4,1,328,1869,2,0,7,0, + public static readonly _serializedATN: number[] = [4,1,329,1906,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, @@ -9703,683 +9879,698 @@ export default class FlinkSqlParser extends Parser { 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,1,0,1,0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,315,8,2,1,2,5,2,318, - 8,2,10,2,12,2,321,9,2,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3, - 3,335,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,3,5,353,8,5,1,6,1,6,3,6,357,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,3,8,366,8, - 8,1,8,1,8,1,8,3,8,371,8,8,1,9,1,9,1,9,5,9,376,8,9,10,9,12,9,379,9,9,1,10, - 1,10,1,11,1,11,3,11,385,8,11,1,11,1,11,3,11,389,8,11,1,12,1,12,1,12,1,12, - 1,12,5,12,396,8,12,10,12,12,12,399,9,12,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,3,13,410,8,13,1,13,3,13,413,8,13,1,13,1,13,1,13,1,13,1,13, - 3,13,420,8,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,428,8,13,1,13,1,13,1,13, - 3,13,433,8,13,1,13,3,13,436,8,13,1,14,1,14,1,14,1,14,1,14,3,14,443,8,14, - 1,15,1,15,1,15,1,15,1,16,1,16,3,16,451,8,16,1,17,1,17,3,17,455,8,17,1,18, - 1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,3,19,467,8,19,1,19,1,19,1, - 19,1,19,1,19,1,19,3,19,475,8,19,1,19,1,19,3,19,479,8,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,500,8,19,1,20,1,20,3,20,504,8,20,1,21,1,21,3,21,508,8,21,1, - 21,1,21,3,21,512,8,21,1,21,1,21,1,21,1,21,1,21,5,21,519,8,21,10,21,12,21, - 522,9,21,1,21,1,21,3,21,526,8,21,1,21,1,21,3,21,530,8,21,1,21,1,21,3,21, - 534,8,21,1,21,1,21,3,21,538,8,21,1,21,3,21,541,8,21,1,21,1,21,3,21,545, - 8,21,1,22,1,22,1,22,3,22,550,8,22,1,22,1,22,1,22,1,22,3,22,556,8,22,1,23, - 1,23,1,23,3,23,561,8,23,1,24,1,24,1,24,3,24,566,8,24,1,24,3,24,569,8,24, - 1,25,1,25,3,25,573,8,25,1,26,1,26,1,26,1,26,5,26,579,8,26,10,26,12,26,582, - 9,26,1,26,1,26,1,27,1,27,1,27,3,27,589,8,27,1,27,1,27,3,27,593,8,27,1,27, - 1,27,3,27,597,8,27,1,27,1,27,3,27,601,8,27,1,27,1,27,3,27,605,8,27,1,27, - 1,27,3,27,609,8,27,1,27,1,27,3,27,613,8,27,1,27,1,27,3,27,617,8,27,1,27, - 1,27,3,27,621,8,27,3,27,623,8,27,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29, - 3,29,633,8,29,1,29,1,29,1,30,1,30,1,30,1,30,3,30,641,8,30,1,30,1,30,1,31, - 1,31,1,31,1,31,1,32,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,5,33,663,8,33,10,33,12,33,666,9,33,1,33,1,33,1,34,1,34,3,34, - 672,8,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1, - 36,3,36,687,8,36,1,36,3,36,690,8,36,1,37,1,37,1,38,1,38,1,38,1,38,3,38, - 698,8,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41,710,8,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1, - 44,1,44,1,45,1,45,1,45,1,45,5,45,732,8,45,10,45,12,45,735,9,45,1,45,1,45, - 1,46,1,46,1,46,1,46,1,46,1,46,5,46,745,8,46,10,46,12,46,748,9,46,1,46,1, - 46,3,46,752,8,46,1,47,1,47,3,47,756,8,47,1,48,1,48,1,48,1,48,5,48,762,8, - 48,10,48,12,48,765,9,48,1,48,3,48,768,8,48,1,49,1,49,1,50,1,50,1,50,1,50, - 3,50,776,8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,786,8,52,1,52, - 1,52,3,52,790,8,52,1,52,1,52,1,53,1,53,3,53,796,8,53,1,53,1,53,3,53,800, - 8,53,1,53,1,53,3,53,804,8,53,1,53,3,53,807,8,53,1,53,1,53,1,53,1,54,1,54, - 1,54,1,54,3,54,816,8,54,1,54,1,54,3,54,820,8,54,1,54,1,54,1,54,1,54,1,54, - 3,54,827,8,54,1,54,3,54,830,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,838, - 8,55,10,55,12,55,841,9,55,1,56,1,56,1,57,1,57,1,57,1,57,1,57,3,57,850,8, - 57,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,3,60, - 865,8,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,3,62,876,8,62,1,62, - 1,62,3,62,880,8,62,1,62,1,62,1,62,1,62,1,62,3,62,887,8,62,1,63,1,63,1,63, - 3,63,892,8,63,1,63,1,63,1,64,1,64,3,64,898,8,64,1,64,1,64,3,64,902,8,64, - 1,64,1,64,1,65,1,65,1,65,3,65,909,8,65,1,65,1,65,3,65,913,8,65,1,66,1,66, - 3,66,917,8,66,1,66,1,66,3,66,921,8,66,1,66,1,66,1,67,1,67,1,67,1,67,3,67, - 929,8,67,1,67,1,67,3,67,933,8,67,1,67,1,67,1,68,3,68,938,8,68,1,68,1,68, - 1,68,3,68,943,8,68,1,69,1,69,1,69,1,69,3,69,949,8,69,1,69,3,69,952,8,69, - 1,69,1,69,3,69,956,8,69,1,70,1,70,1,70,1,71,1,71,1,71,1,71,5,71,965,8,71, - 10,71,12,71,968,9,71,1,72,1,72,1,72,1,72,5,72,974,8,72,10,72,12,72,977, - 9,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,4,73,987,8,73,11,73,12,73, - 988,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,999,8,74,10,74,12,74,1002, - 9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1012,8,74,1,74,3,74,1015, - 8,74,1,74,1,74,3,74,1019,8,74,1,74,3,74,1022,8,74,3,74,1024,8,74,1,74,1, - 74,1,74,3,74,1029,8,74,1,74,1,74,3,74,1033,8,74,1,74,3,74,1036,8,74,5,74, - 1038,8,74,10,74,12,74,1041,9,74,1,75,1,75,1,75,1,75,5,75,1047,8,75,10,75, - 12,75,1050,9,75,1,76,1,76,1,76,1,76,1,76,5,76,1057,8,76,10,76,12,76,1060, - 9,76,1,76,1,76,3,76,1064,8,76,1,76,1,76,1,76,1,76,1,76,1,77,1,77,1,78,1, - 78,1,78,3,78,1076,8,78,1,78,3,78,1079,8,78,1,78,3,78,1082,8,78,1,78,3,78, - 1085,8,78,1,79,1,79,3,79,1089,8,79,1,79,1,79,1,79,1,79,5,79,1095,8,79,10, - 79,12,79,1098,9,79,3,79,1100,8,79,1,80,1,80,3,80,1104,8,80,1,80,3,80,1107, - 8,80,1,81,1,81,1,81,1,82,1,82,1,82,1,82,5,82,1116,8,82,10,82,12,82,1119, - 9,82,1,82,1,82,1,82,1,82,1,82,1,82,3,82,1127,8,82,1,82,3,82,1130,8,82,1, - 82,3,82,1133,8,82,1,82,1,82,1,82,3,82,1138,8,82,5,82,1140,8,82,10,82,12, - 82,1143,9,82,1,83,1,83,3,83,1147,8,83,1,84,3,84,1150,8,84,1,84,1,84,3,84, - 1154,8,84,1,84,3,84,1157,8,84,1,84,3,84,1160,8,84,1,84,1,84,1,84,1,84,1, - 84,1,84,1,84,1,84,5,84,1170,8,84,10,84,12,84,1173,9,84,1,84,1,84,1,84,1, - 84,3,84,1179,8,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,3,84,1190, - 8,84,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,88,1, - 88,1,88,1,88,1,88,5,88,1209,8,88,10,88,12,88,1212,9,88,1,88,1,88,3,88,1216, - 8,88,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,5,90,1226,8,90,10,90,12,90, - 1229,9,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1238,8,91,10,91,12,91, - 1241,9,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1250,8,91,10,91,12,91, - 1253,9,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1262,8,91,10,91,12,91, - 1265,9,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,5,91,1275,8,91,10,91, - 12,91,1278,9,91,1,91,1,91,3,91,1282,8,91,1,92,1,92,1,92,1,93,1,93,1,93, - 1,93,1,93,5,93,1292,8,93,10,93,12,93,1295,9,93,1,94,1,94,3,94,1299,8,94, - 1,95,1,95,1,95,3,95,1304,8,95,1,96,1,96,1,96,1,96,5,96,1310,8,96,10,96, - 12,96,1313,9,96,1,97,1,97,1,97,1,97,1,98,3,98,1320,8,98,1,98,1,98,1,98, - 1,98,1,98,1,98,5,98,1328,8,98,10,98,12,98,1331,9,98,3,98,1333,8,98,1,98, - 1,98,1,98,1,98,1,98,5,98,1340,8,98,10,98,12,98,1343,9,98,3,98,1345,8,98, - 1,98,3,98,1348,8,98,1,98,1,98,1,99,1,99,3,99,1354,8,99,1,99,1,99,3,99,1358, - 8,99,1,100,1,100,1,100,1,100,3,100,1364,8,100,1,101,1,101,1,101,1,102,1, - 102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,1381, - 8,103,3,103,1383,8,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103,1391,8, - 103,10,103,12,103,1394,9,103,1,104,3,104,1397,8,104,1,104,1,104,1,104,1, - 104,1,104,1,104,3,104,1405,8,104,1,104,1,104,1,104,1,104,1,104,5,104,1412, - 8,104,10,104,12,104,1415,9,104,1,104,1,104,1,104,3,104,1420,8,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,1433, - 8,104,1,104,1,104,1,104,3,104,1438,8,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,5,104,1448,8,104,10,104,12,104,1451,9,104,1,104,1,104, - 3,104,1455,8,104,1,104,3,104,1458,8,104,1,104,1,104,1,104,1,104,3,104,1464, - 8,104,1,104,1,104,1,104,3,104,1469,8,104,1,104,1,104,1,104,3,104,1474,8, - 104,1,104,1,104,1,104,3,104,1479,8,104,1,105,3,105,1482,8,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,1,105,5,105,1492,8,105,10,105,12,105,1495, - 9,105,1,105,1,105,3,105,1499,8,105,1,105,3,105,1502,8,105,1,105,1,105,3, - 105,1506,8,105,1,106,1,106,1,106,1,106,3,106,1512,8,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,5,106,1533,8,106,10,106,12,106,1536,9,106,1,107, - 1,107,1,107,4,107,1541,8,107,11,107,12,107,1542,1,107,1,107,3,107,1547, - 8,107,1,107,1,107,1,107,1,107,1,107,4,107,1554,8,107,11,107,12,107,1555, - 1,107,1,107,3,107,1560,8,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,1,107,1,107,3,107,1576,8,107,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,3,107,1585,8,107,1,107,1,107,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,1,107,3,107,1609,8,107,1,107,1,107,1,107, - 5,107,1614,8,107,10,107,12,107,1617,9,107,3,107,1619,8,107,1,107,1,107, - 1,107,1,107,1,107,1,107,1,107,1,107,3,107,1629,8,107,1,107,1,107,1,107, - 1,107,1,107,5,107,1636,8,107,10,107,12,107,1639,9,107,1,108,1,108,1,109, - 1,109,1,110,1,110,1,111,1,111,3,111,1649,8,111,1,112,1,112,1,112,3,112, - 1654,8,112,1,113,1,113,3,113,1658,8,113,1,114,1,114,1,114,4,114,1663,8, - 114,11,114,12,114,1664,1,115,1,115,1,115,3,115,1670,8,115,1,116,1,116,1, - 116,1,116,1,116,1,117,3,117,1678,8,117,1,117,1,117,3,117,1682,8,117,1,118, - 3,118,1685,8,118,1,118,1,118,3,118,1689,8,118,1,119,3,119,1692,8,119,1, - 119,1,119,3,119,1696,8,119,1,120,1,120,1,120,1,121,1,121,4,121,1703,8,121, - 11,121,12,121,1704,1,121,3,121,1708,8,121,1,122,1,122,1,122,1,122,1,123, - 1,123,1,123,5,123,1717,8,123,10,123,12,123,1720,9,123,1,124,1,124,3,124, - 1724,8,124,1,125,1,125,1,125,1,125,3,125,1730,8,125,1,126,1,126,1,127,1, - 127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129,5,129,1744,8,129,10, - 129,12,129,1747,9,129,1,130,1,130,5,130,1751,8,130,10,130,12,130,1754,9, - 130,1,131,1,131,5,131,1758,8,131,10,131,12,131,1761,9,131,1,132,1,132,1, - 132,1,133,1,133,1,133,1,133,1,134,1,134,1,134,1,135,1,135,1,135,1,135,5, - 135,1777,8,135,10,135,12,135,1780,9,135,1,135,1,135,1,136,1,136,3,136,1786, - 8,136,1,136,3,136,1789,8,136,1,137,1,137,1,137,3,137,1794,8,137,1,138,1, - 138,1,138,1,138,3,138,1800,8,138,1,139,1,139,1,139,1,139,1,139,1,139,3, - 139,1808,8,139,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,3,140,1824,8,140,1,141,1,141,1,141,1,141,1, - 141,1,141,1,141,3,141,1833,8,141,1,142,1,142,1,143,1,143,1,144,1,144,1, - 145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145,1850,8,145,1, - 145,3,145,1853,8,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149,1, - 150,1,150,1,151,1,151,1,152,1,152,1,152,2,1752,1759,5,148,164,206,212,214, - 153,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46, + 7,151,2,152,7,152,2,153,7,153,2,154,7,154,2,155,7,155,2,156,7,156,1,0,1, + 0,1,0,1,1,1,1,1,1,1,2,1,2,3,2,323,8,2,1,2,5,2,326,8,2,10,2,12,2,329,9,2, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,343,8,3,1,4,1,4,1,5, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,361,8,5,1,6,1,6, + 3,6,365,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,3,8,374,8,8,1,8,1,8,1,8,3,8,379, + 8,8,1,9,1,9,1,9,5,9,384,8,9,10,9,12,9,387,9,9,1,10,1,10,1,11,1,11,3,11, + 393,8,11,1,11,1,11,3,11,397,8,11,1,12,1,12,1,12,1,12,1,12,5,12,404,8,12, + 10,12,12,12,407,9,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13, + 418,8,13,1,13,3,13,421,8,13,1,13,1,13,1,13,1,13,1,13,3,13,428,8,13,1,13, + 1,13,1,13,1,13,1,13,1,13,3,13,436,8,13,1,13,1,13,1,13,3,13,441,8,13,1,13, + 3,13,444,8,13,1,14,1,14,1,14,1,14,1,14,3,14,451,8,14,1,15,1,15,1,15,1,15, + 1,16,1,16,3,16,459,8,16,1,17,1,17,3,17,463,8,17,1,18,1,18,1,18,1,18,1,19, + 1,19,1,19,1,19,1,19,1,19,3,19,475,8,19,1,19,1,19,1,19,1,19,1,19,1,19,3, + 19,483,8,19,1,19,1,19,3,19,487,8,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,508,8, + 19,1,20,1,20,3,20,512,8,20,1,21,1,21,3,21,516,8,21,1,21,1,21,3,21,520,8, + 21,1,21,1,21,1,21,1,21,1,21,5,21,527,8,21,10,21,12,21,530,9,21,1,21,1,21, + 3,21,534,8,21,1,21,1,21,3,21,538,8,21,1,21,1,21,3,21,542,8,21,1,21,1,21, + 3,21,546,8,21,1,21,3,21,549,8,21,1,21,1,21,3,21,553,8,21,1,22,1,22,1,22, + 3,22,558,8,22,1,22,1,22,1,22,1,22,3,22,564,8,22,1,23,1,23,1,23,3,23,569, + 8,23,1,24,1,24,1,24,3,24,574,8,24,1,24,3,24,577,8,24,1,25,1,25,3,25,581, + 8,25,1,26,1,26,1,26,1,26,5,26,587,8,26,10,26,12,26,590,9,26,1,26,1,26,1, + 27,1,27,1,27,3,27,597,8,27,1,27,1,27,3,27,601,8,27,1,27,1,27,3,27,605,8, + 27,1,27,1,27,3,27,609,8,27,1,27,1,27,3,27,613,8,27,1,27,1,27,3,27,617,8, + 27,1,27,1,27,3,27,621,8,27,1,27,1,27,3,27,625,8,27,1,27,1,27,3,27,629,8, + 27,3,27,631,8,27,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,3,29,641,8,29, + 1,29,1,29,1,30,1,30,1,30,1,30,3,30,649,8,30,1,30,1,30,1,31,1,31,1,31,1, + 31,1,32,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, + 5,33,671,8,33,10,33,12,33,674,9,33,1,33,1,33,1,34,1,34,3,34,680,8,34,1, + 34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,3,36,695, + 8,36,1,36,3,36,698,8,36,1,37,1,37,1,38,1,38,1,38,1,38,3,38,706,8,38,1,39, + 1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41,718,8,41,1,41,1,41,1, + 41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45, + 1,45,1,45,1,45,5,45,740,8,45,10,45,12,45,743,9,45,1,45,1,45,1,46,1,46,1, + 46,1,46,1,46,1,46,5,46,753,8,46,10,46,12,46,756,9,46,1,46,1,46,3,46,760, + 8,46,1,47,1,47,3,47,764,8,47,1,48,1,48,1,48,1,48,5,48,770,8,48,10,48,12, + 48,773,9,48,1,48,3,48,776,8,48,1,49,1,49,1,50,1,50,1,50,1,50,3,50,784,8, + 50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,794,8,52,1,52,1,52,3,52, + 798,8,52,1,52,1,52,1,53,1,53,3,53,804,8,53,1,53,1,53,3,53,808,8,53,1,53, + 1,53,3,53,812,8,53,1,53,3,53,815,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54, + 3,54,824,8,54,1,54,1,54,3,54,828,8,54,1,54,1,54,1,54,1,54,1,54,3,54,835, + 8,54,1,54,3,54,838,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,846,8,55,10, + 55,12,55,849,9,55,1,56,1,56,1,57,1,57,1,57,3,57,856,8,57,1,57,1,57,1,57, + 1,57,1,57,1,57,3,57,864,8,57,1,58,1,58,3,58,868,8,58,1,58,1,58,1,58,1,59, + 1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,883,8,60,1,61,1,61,1, + 61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64, + 3,64,902,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,913,8,66, + 1,66,1,66,3,66,917,8,66,1,66,1,66,1,66,1,66,1,66,3,66,924,8,66,1,67,1,67, + 1,67,3,67,929,8,67,1,67,1,67,1,68,1,68,3,68,935,8,68,1,68,1,68,3,68,939, + 8,68,1,68,1,68,1,69,1,69,1,69,3,69,946,8,69,1,69,1,69,3,69,950,8,69,1,70, + 1,70,3,70,954,8,70,1,70,1,70,3,70,958,8,70,1,70,1,70,1,71,1,71,1,71,1,71, + 3,71,966,8,71,1,71,1,71,3,71,970,8,71,1,71,1,71,1,72,3,72,975,8,72,1,72, + 1,72,1,72,3,72,980,8,72,1,73,1,73,1,73,1,73,3,73,986,8,73,1,73,3,73,989, + 8,73,1,73,1,73,3,73,993,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1002, + 8,75,10,75,12,75,1005,9,75,1,76,1,76,1,76,1,76,5,76,1011,8,76,10,76,12, + 76,1014,9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1024,8,77,11, + 77,12,77,1025,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,5,78,1036,8,78,10, + 78,12,78,1039,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1049,8, + 78,1,78,3,78,1052,8,78,1,78,1,78,3,78,1056,8,78,1,78,3,78,1059,8,78,3,78, + 1061,8,78,1,78,1,78,1,78,3,78,1066,8,78,1,78,1,78,3,78,1070,8,78,1,78,3, + 78,1073,8,78,5,78,1075,8,78,10,78,12,78,1078,9,78,1,79,1,79,1,79,1,79,5, + 79,1084,8,79,10,79,12,79,1087,9,79,1,80,1,80,1,80,1,80,1,80,5,80,1094,8, + 80,10,80,12,80,1097,9,80,1,80,1,80,3,80,1101,8,80,1,80,1,80,1,80,1,80,1, + 80,1,81,1,81,1,82,1,82,1,82,3,82,1113,8,82,1,82,3,82,1116,8,82,1,82,3,82, + 1119,8,82,1,82,3,82,1122,8,82,1,83,1,83,3,83,1126,8,83,1,83,1,83,1,83,1, + 83,5,83,1132,8,83,10,83,12,83,1135,9,83,3,83,1137,8,83,1,84,1,84,3,84,1141, + 8,84,1,84,3,84,1144,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,5,86,1153,8, + 86,10,86,12,86,1156,9,86,1,86,1,86,1,86,1,86,1,86,1,86,3,86,1164,8,86,1, + 86,3,86,1167,8,86,1,86,3,86,1170,8,86,1,86,1,86,1,86,3,86,1175,8,86,5,86, + 1177,8,86,10,86,12,86,1180,9,86,1,87,1,87,3,87,1184,8,87,1,88,3,88,1187, + 8,88,1,88,1,88,3,88,1191,8,88,1,88,3,88,1194,8,88,1,88,3,88,1197,8,88,1, + 88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,1207,8,88,10,88,12,88,1210,9, + 88,1,88,1,88,1,88,1,88,3,88,1216,8,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88, + 1,88,1,88,3,88,1227,8,88,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,1,91,1, + 91,1,92,1,92,1,92,1,92,1,92,1,92,1,92,5,92,1246,8,92,10,92,12,92,1249,9, + 92,1,92,1,92,3,92,1253,8,92,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,5,94, + 1263,8,94,10,94,12,94,1266,9,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,5,95, + 1275,8,95,10,95,12,95,1278,9,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,5,95, + 1287,8,95,10,95,12,95,1290,9,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,5,95, + 1299,8,95,10,95,12,95,1302,9,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, + 5,95,1312,8,95,10,95,12,95,1315,9,95,1,95,1,95,3,95,1319,8,95,1,96,1,96, + 1,96,1,97,1,97,1,97,1,97,1,97,5,97,1329,8,97,10,97,12,97,1332,9,97,1,98, + 1,98,3,98,1336,8,98,1,99,1,99,1,99,3,99,1341,8,99,1,100,1,100,1,100,1,100, + 5,100,1347,8,100,10,100,12,100,1350,9,100,1,101,1,101,1,101,1,101,1,102, + 3,102,1357,8,102,1,102,1,102,1,102,1,102,1,102,1,102,5,102,1365,8,102,10, + 102,12,102,1368,9,102,3,102,1370,8,102,1,102,1,102,1,102,1,102,1,102,5, + 102,1377,8,102,10,102,12,102,1380,9,102,3,102,1382,8,102,1,102,3,102,1385, + 8,102,1,102,1,102,1,103,1,103,3,103,1391,8,103,1,103,1,103,3,103,1395,8, + 103,1,104,1,104,1,104,1,104,3,104,1401,8,104,1,105,1,105,1,105,1,106,1, + 106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,3,107,1418, + 8,107,3,107,1420,8,107,1,107,1,107,1,107,1,107,1,107,1,107,5,107,1428,8, + 107,10,107,12,107,1431,9,107,1,108,3,108,1434,8,108,1,108,1,108,1,108,1, + 108,1,108,1,108,3,108,1442,8,108,1,108,1,108,1,108,1,108,1,108,5,108,1449, + 8,108,10,108,12,108,1452,9,108,1,108,1,108,1,108,3,108,1457,8,108,1,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,3,108,1470, + 8,108,1,108,1,108,1,108,3,108,1475,8,108,1,108,1,108,1,108,1,108,1,108, + 1,108,1,108,1,108,5,108,1485,8,108,10,108,12,108,1488,9,108,1,108,1,108, + 3,108,1492,8,108,1,108,3,108,1495,8,108,1,108,1,108,1,108,1,108,3,108,1501, + 8,108,1,108,1,108,1,108,3,108,1506,8,108,1,108,1,108,1,108,3,108,1511,8, + 108,1,108,1,108,1,108,3,108,1516,8,108,1,109,3,109,1519,8,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,5,109,1529,8,109,10,109,12,109,1532, + 9,109,1,109,1,109,3,109,1536,8,109,1,109,3,109,1539,8,109,1,109,1,109,3, + 109,1543,8,109,1,110,1,110,1,110,1,110,3,110,1549,8,110,1,110,1,110,1,110, + 1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110, + 1,110,1,110,1,110,1,110,5,110,1570,8,110,10,110,12,110,1573,9,110,1,111, + 1,111,1,111,4,111,1578,8,111,11,111,12,111,1579,1,111,1,111,3,111,1584, + 8,111,1,111,1,111,1,111,1,111,1,111,4,111,1591,8,111,11,111,12,111,1592, + 1,111,1,111,3,111,1597,8,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,3,111,1613,8,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,3,111,1622,8,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,3,111,1646,8,111,1,111,1,111,1,111, + 5,111,1651,8,111,10,111,12,111,1654,9,111,3,111,1656,8,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,3,111,1666,8,111,1,111,1,111,1,111, + 1,111,1,111,5,111,1673,8,111,10,111,12,111,1676,9,111,1,112,1,112,1,113, + 1,113,1,114,1,114,1,115,1,115,3,115,1686,8,115,1,116,1,116,1,116,3,116, + 1691,8,116,1,117,1,117,3,117,1695,8,117,1,118,1,118,1,118,4,118,1700,8, + 118,11,118,12,118,1701,1,119,1,119,1,119,3,119,1707,8,119,1,120,1,120,1, + 120,1,120,1,120,1,121,3,121,1715,8,121,1,121,1,121,3,121,1719,8,121,1,122, + 3,122,1722,8,122,1,122,1,122,3,122,1726,8,122,1,123,3,123,1729,8,123,1, + 123,1,123,3,123,1733,8,123,1,124,1,124,1,124,1,125,1,125,4,125,1740,8,125, + 11,125,12,125,1741,1,125,3,125,1745,8,125,1,126,1,126,1,126,1,126,1,127, + 1,127,1,127,5,127,1754,8,127,10,127,12,127,1757,9,127,1,128,1,128,3,128, + 1761,8,128,1,129,1,129,1,129,1,129,3,129,1767,8,129,1,130,1,130,1,131,1, + 131,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,5,133,1781,8,133,10, + 133,12,133,1784,9,133,1,134,1,134,5,134,1788,8,134,10,134,12,134,1791,9, + 134,1,135,1,135,5,135,1795,8,135,10,135,12,135,1798,9,135,1,136,1,136,1, + 136,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,139,1,139,1,139,1,139,5, + 139,1814,8,139,10,139,12,139,1817,9,139,1,139,1,139,1,140,1,140,3,140,1823, + 8,140,1,140,3,140,1826,8,140,1,141,1,141,1,141,3,141,1831,8,141,1,142,1, + 142,1,142,1,142,3,142,1837,8,142,1,143,1,143,1,143,1,143,1,143,1,143,3, + 143,1845,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1, + 144,1,144,1,144,1,144,1,144,3,144,1861,8,144,1,145,1,145,1,145,1,145,1, + 145,1,145,1,145,3,145,1870,8,145,1,146,1,146,1,147,1,147,1,148,1,148,1, + 149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,1887,8,149,1, + 149,3,149,1890,8,149,1,150,1,150,1,151,1,151,1,152,1,152,1,153,1,153,1, + 154,1,154,1,155,1,155,1,156,1,156,1,156,2,1789,1796,5,156,172,214,220,222, + 157,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46, 48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94, 96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168, 170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204, 206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,0,40,2,0,36,36, - 84,84,1,0,87,89,2,0,193,193,253,255,2,0,192,192,239,239,2,0,5,5,24,24,2, - 0,74,74,76,76,2,0,6,6,82,82,1,0,246,250,3,0,282,282,287,287,290,290,6,0, - 264,264,267,271,275,279,283,283,285,285,291,291,1,0,70,71,2,0,272,274,280, - 281,2,0,265,265,286,286,1,0,233,234,3,0,8,8,102,102,236,236,1,0,233,235, - 2,0,167,167,237,238,1,0,241,243,2,0,184,184,186,186,2,0,83,83,140,140,2, - 0,105,106,108,108,2,0,48,49,51,52,1,0,35,36,2,0,67,67,69,69,1,0,8,9,1,0, - 32,33,2,0,296,296,314,315,4,0,132,132,312,312,316,316,319,319,2,0,314,315, - 317,317,1,0,314,315,1,0,323,324,2,0,323,323,326,326,1,0,326,327,1,0,320, - 321,4,0,132,132,312,312,314,316,318,319,3,0,25,25,295,296,314,315,2,0,8, - 8,10,10,32,0,6,6,13,17,20,21,26,30,32,32,34,36,38,38,50,50,56,69,72,72, - 75,77,80,81,84,85,90,93,95,97,99,99,102,104,107,107,110,124,128,142,144, - 184,186,203,205,212,214,234,236,237,239,240,253,254,257,259,264,272,275, - 277,279,284,286,291,6,0,45,46,48,52,54,55,105,108,143,143,223,223,23,0, - 4,42,44,44,47,47,53,53,56,70,72,77,80,81,83,85,90,99,102,104,109,142,144, - 176,178,212,214,222,224,234,236,237,239,240,253,254,256,259,264,272,275, - 277,279,284,286,291,2038,0,306,1,0,0,0,2,309,1,0,0,0,4,319,1,0,0,0,6,334, - 1,0,0,0,8,336,1,0,0,0,10,352,1,0,0,0,12,356,1,0,0,0,14,358,1,0,0,0,16,361, - 1,0,0,0,18,372,1,0,0,0,20,380,1,0,0,0,22,388,1,0,0,0,24,390,1,0,0,0,26, - 435,1,0,0,0,28,437,1,0,0,0,30,444,1,0,0,0,32,448,1,0,0,0,34,452,1,0,0,0, - 36,456,1,0,0,0,38,499,1,0,0,0,40,503,1,0,0,0,42,505,1,0,0,0,44,546,1,0, - 0,0,46,560,1,0,0,0,48,562,1,0,0,0,50,572,1,0,0,0,52,574,1,0,0,0,54,622, - 1,0,0,0,56,624,1,0,0,0,58,628,1,0,0,0,60,636,1,0,0,0,62,644,1,0,0,0,64, - 648,1,0,0,0,66,655,1,0,0,0,68,671,1,0,0,0,70,678,1,0,0,0,72,681,1,0,0,0, - 74,691,1,0,0,0,76,693,1,0,0,0,78,699,1,0,0,0,80,701,1,0,0,0,82,709,1,0, - 0,0,84,717,1,0,0,0,86,719,1,0,0,0,88,723,1,0,0,0,90,727,1,0,0,0,92,751, - 1,0,0,0,94,755,1,0,0,0,96,757,1,0,0,0,98,769,1,0,0,0,100,775,1,0,0,0,102, - 777,1,0,0,0,104,782,1,0,0,0,106,793,1,0,0,0,108,811,1,0,0,0,110,831,1,0, - 0,0,112,842,1,0,0,0,114,844,1,0,0,0,116,851,1,0,0,0,118,855,1,0,0,0,120, - 858,1,0,0,0,122,866,1,0,0,0,124,871,1,0,0,0,126,888,1,0,0,0,128,895,1,0, - 0,0,130,905,1,0,0,0,132,914,1,0,0,0,134,924,1,0,0,0,136,942,1,0,0,0,138, - 944,1,0,0,0,140,957,1,0,0,0,142,960,1,0,0,0,144,969,1,0,0,0,146,980,1,0, - 0,0,148,1023,1,0,0,0,150,1042,1,0,0,0,152,1051,1,0,0,0,154,1070,1,0,0,0, - 156,1072,1,0,0,0,158,1086,1,0,0,0,160,1101,1,0,0,0,162,1108,1,0,0,0,164, - 1111,1,0,0,0,166,1144,1,0,0,0,168,1189,1,0,0,0,170,1191,1,0,0,0,172,1193, - 1,0,0,0,174,1199,1,0,0,0,176,1215,1,0,0,0,178,1217,1,0,0,0,180,1220,1,0, - 0,0,182,1281,1,0,0,0,184,1283,1,0,0,0,186,1286,1,0,0,0,188,1296,1,0,0,0, - 190,1300,1,0,0,0,192,1305,1,0,0,0,194,1314,1,0,0,0,196,1319,1,0,0,0,198, - 1351,1,0,0,0,200,1363,1,0,0,0,202,1365,1,0,0,0,204,1368,1,0,0,0,206,1382, - 1,0,0,0,208,1478,1,0,0,0,210,1505,1,0,0,0,212,1511,1,0,0,0,214,1628,1,0, - 0,0,216,1640,1,0,0,0,218,1642,1,0,0,0,220,1644,1,0,0,0,222,1648,1,0,0,0, - 224,1650,1,0,0,0,226,1655,1,0,0,0,228,1662,1,0,0,0,230,1666,1,0,0,0,232, - 1671,1,0,0,0,234,1681,1,0,0,0,236,1684,1,0,0,0,238,1691,1,0,0,0,240,1697, - 1,0,0,0,242,1707,1,0,0,0,244,1709,1,0,0,0,246,1713,1,0,0,0,248,1723,1,0, - 0,0,250,1729,1,0,0,0,252,1731,1,0,0,0,254,1733,1,0,0,0,256,1735,1,0,0,0, - 258,1740,1,0,0,0,260,1748,1,0,0,0,262,1755,1,0,0,0,264,1762,1,0,0,0,266, - 1765,1,0,0,0,268,1769,1,0,0,0,270,1772,1,0,0,0,272,1783,1,0,0,0,274,1793, - 1,0,0,0,276,1799,1,0,0,0,278,1807,1,0,0,0,280,1823,1,0,0,0,282,1832,1,0, - 0,0,284,1834,1,0,0,0,286,1836,1,0,0,0,288,1838,1,0,0,0,290,1852,1,0,0,0, - 292,1854,1,0,0,0,294,1856,1,0,0,0,296,1858,1,0,0,0,298,1860,1,0,0,0,300, - 1862,1,0,0,0,302,1864,1,0,0,0,304,1866,1,0,0,0,306,307,3,2,1,0,307,308, - 5,0,0,1,308,1,1,0,0,0,309,310,3,4,2,0,310,311,5,0,0,1,311,3,1,0,0,0,312, - 314,3,6,3,0,313,315,5,306,0,0,314,313,1,0,0,0,314,315,1,0,0,0,315,318,1, - 0,0,0,316,318,3,8,4,0,317,312,1,0,0,0,317,316,1,0,0,0,318,321,1,0,0,0,319, - 317,1,0,0,0,319,320,1,0,0,0,320,5,1,0,0,0,321,319,1,0,0,0,322,335,3,10, - 5,0,323,335,3,12,6,0,324,335,3,14,7,0,325,335,3,16,8,0,326,335,3,22,11, - 0,327,335,3,26,13,0,328,335,3,28,14,0,329,335,3,30,15,0,330,335,3,32,16, - 0,331,335,3,34,17,0,332,335,3,36,18,0,333,335,3,38,19,0,334,322,1,0,0,0, - 334,323,1,0,0,0,334,324,1,0,0,0,334,325,1,0,0,0,334,326,1,0,0,0,334,327, - 1,0,0,0,334,328,1,0,0,0,334,329,1,0,0,0,334,330,1,0,0,0,334,331,1,0,0,0, - 334,332,1,0,0,0,334,333,1,0,0,0,335,7,1,0,0,0,336,337,5,306,0,0,337,9,1, - 0,0,0,338,353,3,40,20,0,339,353,3,104,52,0,340,353,3,106,53,0,341,353,3, - 108,54,0,342,353,3,102,51,0,343,353,3,114,57,0,344,353,3,120,60,0,345,353, - 3,122,61,0,346,353,3,124,62,0,347,353,3,126,63,0,348,353,3,128,64,0,349, - 353,3,130,65,0,350,353,3,132,66,0,351,353,3,134,67,0,352,338,1,0,0,0,352, - 339,1,0,0,0,352,340,1,0,0,0,352,341,1,0,0,0,352,342,1,0,0,0,352,343,1,0, - 0,0,352,344,1,0,0,0,352,345,1,0,0,0,352,346,1,0,0,0,352,347,1,0,0,0,352, - 348,1,0,0,0,352,349,1,0,0,0,352,350,1,0,0,0,352,351,1,0,0,0,353,11,1,0, - 0,0,354,357,3,148,74,0,355,357,3,136,68,0,356,354,1,0,0,0,356,355,1,0,0, - 0,357,13,1,0,0,0,358,359,7,0,0,0,359,360,3,260,130,0,360,15,1,0,0,0,361, - 365,5,85,0,0,362,366,3,18,9,0,363,364,5,86,0,0,364,366,5,37,0,0,365,362, - 1,0,0,0,365,363,1,0,0,0,365,366,1,0,0,0,366,370,1,0,0,0,367,371,3,12,6, - 0,368,371,3,138,69,0,369,371,3,146,73,0,370,367,1,0,0,0,370,368,1,0,0,0, - 370,369,1,0,0,0,371,17,1,0,0,0,372,377,3,20,10,0,373,374,5,305,0,0,374, - 376,3,20,10,0,375,373,1,0,0,0,376,379,1,0,0,0,377,375,1,0,0,0,377,378,1, - 0,0,0,378,19,1,0,0,0,379,377,1,0,0,0,380,381,7,1,0,0,381,21,1,0,0,0,382, - 384,5,99,0,0,383,385,5,239,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,386, - 1,0,0,0,386,389,3,260,130,0,387,389,3,24,12,0,388,382,1,0,0,0,388,387,1, - 0,0,0,389,23,1,0,0,0,390,391,5,99,0,0,391,392,5,101,0,0,392,397,3,260,130, - 0,393,394,5,305,0,0,394,396,3,260,130,0,395,393,1,0,0,0,396,399,1,0,0,0, - 397,395,1,0,0,0,397,398,1,0,0,0,398,25,1,0,0,0,399,397,1,0,0,0,400,401, - 5,95,0,0,401,436,7,2,0,0,402,403,5,95,0,0,403,404,5,66,0,0,404,436,7,3, - 0,0,405,406,5,95,0,0,406,409,5,96,0,0,407,408,7,4,0,0,408,410,3,260,130, - 0,409,407,1,0,0,0,409,410,1,0,0,0,410,412,1,0,0,0,411,413,3,210,105,0,412, - 411,1,0,0,0,412,413,1,0,0,0,413,436,1,0,0,0,414,415,5,95,0,0,415,416,5, - 97,0,0,416,417,7,4,0,0,417,419,3,260,130,0,418,420,3,210,105,0,419,418, - 1,0,0,0,419,420,1,0,0,0,420,436,1,0,0,0,421,422,5,95,0,0,422,423,5,73,0, - 0,423,424,7,5,0,0,424,436,3,260,130,0,425,427,5,95,0,0,426,428,5,53,0,0, - 427,426,1,0,0,0,427,428,1,0,0,0,428,429,1,0,0,0,429,436,5,103,0,0,430,432, - 5,95,0,0,431,433,5,52,0,0,432,431,1,0,0,0,432,433,1,0,0,0,433,434,1,0,0, - 0,434,436,5,101,0,0,435,400,1,0,0,0,435,402,1,0,0,0,435,405,1,0,0,0,435, - 414,1,0,0,0,435,421,1,0,0,0,435,425,1,0,0,0,435,430,1,0,0,0,436,27,1,0, - 0,0,437,438,5,212,0,0,438,439,5,100,0,0,439,442,3,260,130,0,440,441,5,70, - 0,0,441,443,3,270,135,0,442,440,1,0,0,0,442,443,1,0,0,0,443,29,1,0,0,0, - 444,445,5,213,0,0,445,446,5,100,0,0,446,447,3,260,130,0,447,31,1,0,0,0, - 448,450,5,116,0,0,449,451,3,272,136,0,450,449,1,0,0,0,450,451,1,0,0,0,451, - 33,1,0,0,0,452,454,5,117,0,0,453,455,3,274,137,0,454,453,1,0,0,0,454,455, - 1,0,0,0,455,35,1,0,0,0,456,457,7,6,0,0,457,458,5,244,0,0,458,459,3,112, - 56,0,459,37,1,0,0,0,460,461,5,6,0,0,461,462,5,244,0,0,462,463,5,70,0,0, - 463,466,5,328,0,0,464,465,5,7,0,0,465,467,3,260,130,0,466,464,1,0,0,0,466, - 467,1,0,0,0,467,500,1,0,0,0,468,469,5,6,0,0,469,470,5,245,0,0,470,471,5, - 70,0,0,471,474,5,328,0,0,472,473,5,7,0,0,473,475,3,260,130,0,474,472,1, - 0,0,0,474,475,1,0,0,0,475,478,1,0,0,0,476,477,5,113,0,0,477,479,3,260,130, - 0,478,476,1,0,0,0,478,479,1,0,0,0,479,500,1,0,0,0,480,481,5,6,0,0,481,482, - 7,7,0,0,482,483,5,70,0,0,483,484,5,328,0,0,484,485,5,113,0,0,485,500,3, - 260,130,0,486,487,5,6,0,0,487,488,5,251,0,0,488,500,5,328,0,0,489,490,5, - 6,0,0,490,491,5,252,0,0,491,492,5,245,0,0,492,493,5,70,0,0,493,494,5,328, - 0,0,494,495,5,113,0,0,495,496,3,260,130,0,496,497,5,257,0,0,497,498,3,260, - 130,0,498,500,1,0,0,0,499,460,1,0,0,0,499,468,1,0,0,0,499,480,1,0,0,0,499, - 486,1,0,0,0,499,489,1,0,0,0,500,39,1,0,0,0,501,504,3,42,21,0,502,504,3, - 44,22,0,503,501,1,0,0,0,503,502,1,0,0,0,504,41,1,0,0,0,505,507,5,73,0,0, - 506,508,5,166,0,0,507,506,1,0,0,0,507,508,1,0,0,0,508,509,1,0,0,0,509,511, - 5,74,0,0,510,512,3,266,133,0,511,510,1,0,0,0,511,512,1,0,0,0,512,513,1, - 0,0,0,513,514,3,98,49,0,514,515,5,303,0,0,515,520,3,46,23,0,516,517,5,305, - 0,0,517,519,3,46,23,0,518,516,1,0,0,0,519,522,1,0,0,0,520,518,1,0,0,0,520, - 521,1,0,0,0,521,525,1,0,0,0,522,520,1,0,0,0,523,524,5,305,0,0,524,526,3, - 80,40,0,525,523,1,0,0,0,525,526,1,0,0,0,526,529,1,0,0,0,527,528,5,305,0, - 0,528,530,3,82,41,0,529,527,1,0,0,0,529,530,1,0,0,0,530,533,1,0,0,0,531, - 532,5,305,0,0,532,534,3,86,43,0,533,531,1,0,0,0,533,534,1,0,0,0,534,535, - 1,0,0,0,535,537,5,304,0,0,536,538,3,70,35,0,537,536,1,0,0,0,537,538,1,0, - 0,0,538,540,1,0,0,0,539,541,3,88,44,0,540,539,1,0,0,0,540,541,1,0,0,0,541, - 542,1,0,0,0,542,544,3,264,132,0,543,545,3,96,48,0,544,543,1,0,0,0,544,545, - 1,0,0,0,545,43,1,0,0,0,546,547,5,73,0,0,547,549,5,74,0,0,548,550,3,266, - 133,0,549,548,1,0,0,0,549,550,1,0,0,0,550,551,1,0,0,0,551,552,3,98,49,0, - 552,555,3,264,132,0,553,554,5,7,0,0,554,556,3,148,74,0,555,553,1,0,0,0, - 555,556,1,0,0,0,556,45,1,0,0,0,557,561,3,48,24,0,558,561,3,72,36,0,559, - 561,3,76,38,0,560,557,1,0,0,0,560,558,1,0,0,0,560,559,1,0,0,0,561,47,1, - 0,0,0,562,563,3,50,25,0,563,565,3,54,27,0,564,566,3,68,34,0,565,564,1,0, - 0,0,565,566,1,0,0,0,566,568,1,0,0,0,567,569,3,70,35,0,568,567,1,0,0,0,568, - 569,1,0,0,0,569,49,1,0,0,0,570,573,3,262,131,0,571,573,3,204,102,0,572, - 570,1,0,0,0,572,571,1,0,0,0,573,51,1,0,0,0,574,575,5,303,0,0,575,580,3, - 50,25,0,576,577,5,305,0,0,577,579,3,50,25,0,578,576,1,0,0,0,579,582,1,0, - 0,0,580,578,1,0,0,0,580,581,1,0,0,0,581,583,1,0,0,0,582,580,1,0,0,0,583, - 584,5,304,0,0,584,53,1,0,0,0,585,623,7,8,0,0,586,588,7,9,0,0,587,589,3, - 56,28,0,588,587,1,0,0,0,588,589,1,0,0,0,589,623,1,0,0,0,590,592,5,284,0, - 0,591,593,3,56,28,0,592,591,1,0,0,0,592,593,1,0,0,0,593,600,1,0,0,0,594, - 596,7,10,0,0,595,597,5,224,0,0,596,595,1,0,0,0,596,597,1,0,0,0,597,598, - 1,0,0,0,598,599,5,283,0,0,599,601,5,263,0,0,600,594,1,0,0,0,600,601,1,0, - 0,0,601,623,1,0,0,0,602,604,7,11,0,0,603,605,3,58,29,0,604,603,1,0,0,0, - 604,605,1,0,0,0,605,623,1,0,0,0,606,608,7,12,0,0,607,609,3,62,31,0,608, - 607,1,0,0,0,608,609,1,0,0,0,609,623,1,0,0,0,610,612,5,266,0,0,611,613,3, - 64,32,0,612,611,1,0,0,0,612,613,1,0,0,0,613,623,1,0,0,0,614,616,5,289,0, - 0,615,617,3,66,33,0,616,615,1,0,0,0,616,617,1,0,0,0,617,623,1,0,0,0,618, - 620,5,288,0,0,619,621,3,60,30,0,620,619,1,0,0,0,620,621,1,0,0,0,621,623, - 1,0,0,0,622,585,1,0,0,0,622,586,1,0,0,0,622,590,1,0,0,0,622,602,1,0,0,0, - 622,606,1,0,0,0,622,610,1,0,0,0,622,614,1,0,0,0,622,618,1,0,0,0,623,55, - 1,0,0,0,624,625,5,303,0,0,625,626,3,294,147,0,626,627,5,304,0,0,627,57, - 1,0,0,0,628,629,5,303,0,0,629,632,3,294,147,0,630,631,5,305,0,0,631,633, - 3,294,147,0,632,630,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,635,5,304, - 0,0,635,59,1,0,0,0,636,637,5,303,0,0,637,640,3,292,146,0,638,639,5,305, - 0,0,639,641,3,292,146,0,640,638,1,0,0,0,640,641,1,0,0,0,641,642,1,0,0,0, - 642,643,5,304,0,0,643,61,1,0,0,0,644,645,5,294,0,0,645,646,3,54,27,0,646, - 647,5,293,0,0,647,63,1,0,0,0,648,649,5,294,0,0,649,650,3,54,27,0,650,651, - 5,305,0,0,651,652,3,54,27,0,652,653,1,0,0,0,653,654,5,293,0,0,654,65,1, - 0,0,0,655,656,5,294,0,0,656,657,3,50,25,0,657,664,3,54,27,0,658,659,5,305, - 0,0,659,660,3,50,25,0,660,661,3,54,27,0,661,663,1,0,0,0,662,658,1,0,0,0, - 663,666,1,0,0,0,664,662,1,0,0,0,664,665,1,0,0,0,665,667,1,0,0,0,666,664, - 1,0,0,0,667,668,5,293,0,0,668,67,1,0,0,0,669,670,5,185,0,0,670,672,3,84, - 42,0,671,669,1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,674,5,256,0,0, - 674,675,5,257,0,0,675,676,5,25,0,0,676,677,5,260,0,0,677,69,1,0,0,0,678, - 679,5,115,0,0,679,680,5,322,0,0,680,71,1,0,0,0,681,682,3,50,25,0,682,683, - 3,54,27,0,683,686,5,261,0,0,684,685,5,5,0,0,685,687,3,74,37,0,686,684,1, - 0,0,0,686,687,1,0,0,0,687,689,1,0,0,0,688,690,5,262,0,0,689,688,1,0,0,0, - 689,690,1,0,0,0,690,73,1,0,0,0,691,692,5,322,0,0,692,75,1,0,0,0,693,694, - 3,50,25,0,694,695,5,7,0,0,695,697,3,78,39,0,696,698,3,70,35,0,697,696,1, - 0,0,0,697,698,1,0,0,0,698,77,1,0,0,0,699,700,3,204,102,0,700,79,1,0,0,0, - 701,702,5,226,0,0,702,703,5,37,0,0,703,704,3,204,102,0,704,705,5,7,0,0, - 705,706,3,204,102,0,706,81,1,0,0,0,707,708,5,185,0,0,708,710,3,84,42,0, - 709,707,1,0,0,0,709,710,1,0,0,0,710,711,1,0,0,0,711,712,5,256,0,0,712,713, - 5,257,0,0,713,714,3,52,26,0,714,715,5,25,0,0,715,716,5,260,0,0,716,83,1, - 0,0,0,717,718,3,248,124,0,718,85,1,0,0,0,719,720,5,258,0,0,720,721,5,37, - 0,0,721,722,5,259,0,0,722,87,1,0,0,0,723,724,5,200,0,0,724,725,5,13,0,0, - 725,726,3,90,45,0,726,89,1,0,0,0,727,728,5,303,0,0,728,733,3,92,46,0,729, - 730,5,305,0,0,730,732,3,92,46,0,731,729,1,0,0,0,732,735,1,0,0,0,733,731, - 1,0,0,0,733,734,1,0,0,0,734,736,1,0,0,0,735,733,1,0,0,0,736,737,5,304,0, - 0,737,91,1,0,0,0,738,752,3,222,111,0,739,740,3,248,124,0,740,741,5,303, - 0,0,741,746,3,94,47,0,742,743,5,305,0,0,743,745,3,94,47,0,744,742,1,0,0, - 0,745,748,1,0,0,0,746,744,1,0,0,0,746,747,1,0,0,0,747,749,1,0,0,0,748,746, - 1,0,0,0,749,750,5,304,0,0,750,752,1,0,0,0,751,738,1,0,0,0,751,739,1,0,0, - 0,752,93,1,0,0,0,753,756,3,222,111,0,754,756,3,290,145,0,755,753,1,0,0, - 0,755,754,1,0,0,0,756,95,1,0,0,0,757,758,5,29,0,0,758,767,3,98,49,0,759, - 763,5,303,0,0,760,762,3,100,50,0,761,760,1,0,0,0,762,765,1,0,0,0,763,761, - 1,0,0,0,763,764,1,0,0,0,764,766,1,0,0,0,765,763,1,0,0,0,766,768,5,304,0, - 0,767,759,1,0,0,0,767,768,1,0,0,0,768,97,1,0,0,0,769,770,3,260,130,0,770, - 99,1,0,0,0,771,772,7,13,0,0,772,776,7,14,0,0,773,774,7,15,0,0,774,776,7, - 16,0,0,775,771,1,0,0,0,775,773,1,0,0,0,776,101,1,0,0,0,777,778,5,73,0,0, - 778,779,5,239,0,0,779,780,3,260,130,0,780,781,3,264,132,0,781,103,1,0,0, - 0,782,783,5,73,0,0,783,785,5,192,0,0,784,786,3,266,133,0,785,784,1,0,0, - 0,785,786,1,0,0,0,786,787,1,0,0,0,787,789,3,260,130,0,788,790,3,70,35,0, - 789,788,1,0,0,0,789,790,1,0,0,0,790,791,1,0,0,0,791,792,3,264,132,0,792, - 105,1,0,0,0,793,795,5,73,0,0,794,796,5,166,0,0,795,794,1,0,0,0,795,796, - 1,0,0,0,796,797,1,0,0,0,797,799,5,76,0,0,798,800,3,266,133,0,799,798,1, - 0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,803,3,260,130,0,802,804,3,52, - 26,0,803,802,1,0,0,0,803,804,1,0,0,0,804,806,1,0,0,0,805,807,3,70,35,0, - 806,805,1,0,0,0,806,807,1,0,0,0,807,808,1,0,0,0,808,809,5,7,0,0,809,810, - 3,148,74,0,810,107,1,0,0,0,811,815,5,73,0,0,812,816,5,166,0,0,813,814,5, - 166,0,0,814,816,5,232,0,0,815,812,1,0,0,0,815,813,1,0,0,0,815,816,1,0,0, - 0,816,817,1,0,0,0,817,819,5,157,0,0,818,820,3,266,133,0,819,818,1,0,0,0, - 819,820,1,0,0,0,820,821,1,0,0,0,821,822,3,260,130,0,822,823,5,7,0,0,823, - 826,3,248,124,0,824,825,5,240,0,0,825,827,7,17,0,0,826,824,1,0,0,0,826, - 827,1,0,0,0,827,829,1,0,0,0,828,830,3,110,55,0,829,828,1,0,0,0,829,830, - 1,0,0,0,830,109,1,0,0,0,831,832,5,143,0,0,832,833,5,244,0,0,833,839,3,112, - 56,0,834,835,5,305,0,0,835,836,5,244,0,0,836,838,3,112,56,0,837,834,1,0, - 0,0,838,841,1,0,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,111,1,0,0,0,841, - 839,1,0,0,0,842,843,5,322,0,0,843,113,1,0,0,0,844,845,5,112,0,0,845,846, - 5,74,0,0,846,849,3,260,130,0,847,850,3,116,58,0,848,850,3,118,59,0,849, - 847,1,0,0,0,849,848,1,0,0,0,850,115,1,0,0,0,851,852,5,113,0,0,852,853,5, - 109,0,0,853,854,3,260,130,0,854,117,1,0,0,0,855,856,5,116,0,0,856,857,3, - 270,135,0,857,119,1,0,0,0,858,859,5,112,0,0,859,860,5,76,0,0,860,864,3, - 260,130,0,861,865,3,116,58,0,862,863,5,7,0,0,863,865,3,148,74,0,864,861, - 1,0,0,0,864,862,1,0,0,0,865,121,1,0,0,0,866,867,5,112,0,0,867,868,5,192, - 0,0,868,869,3,260,130,0,869,870,3,118,59,0,870,123,1,0,0,0,871,875,5,112, - 0,0,872,876,5,166,0,0,873,874,5,166,0,0,874,876,5,232,0,0,875,872,1,0,0, - 0,875,873,1,0,0,0,875,876,1,0,0,0,876,877,1,0,0,0,877,879,5,157,0,0,878, - 880,3,268,134,0,879,878,1,0,0,0,879,880,1,0,0,0,880,881,1,0,0,0,881,882, - 3,260,130,0,882,883,5,7,0,0,883,886,3,248,124,0,884,885,5,240,0,0,885,887, - 7,17,0,0,886,884,1,0,0,0,886,887,1,0,0,0,887,125,1,0,0,0,888,889,5,104, - 0,0,889,891,5,239,0,0,890,892,3,268,134,0,891,890,1,0,0,0,891,892,1,0,0, - 0,892,893,1,0,0,0,893,894,3,260,130,0,894,127,1,0,0,0,895,897,5,104,0,0, - 896,898,5,166,0,0,897,896,1,0,0,0,897,898,1,0,0,0,898,899,1,0,0,0,899,901, - 5,74,0,0,900,902,3,268,134,0,901,900,1,0,0,0,901,902,1,0,0,0,902,903,1, - 0,0,0,903,904,3,260,130,0,904,129,1,0,0,0,905,906,5,104,0,0,906,908,5,192, - 0,0,907,909,3,268,134,0,908,907,1,0,0,0,908,909,1,0,0,0,909,910,1,0,0,0, - 910,912,3,260,130,0,911,913,7,18,0,0,912,911,1,0,0,0,912,913,1,0,0,0,913, - 131,1,0,0,0,914,916,5,104,0,0,915,917,5,166,0,0,916,915,1,0,0,0,916,917, - 1,0,0,0,917,918,1,0,0,0,918,920,5,76,0,0,919,921,3,268,134,0,920,919,1, - 0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,923,3,260,130,0,923,133,1,0,0, - 0,924,928,5,104,0,0,925,929,5,166,0,0,926,927,5,166,0,0,927,929,5,232,0, - 0,928,925,1,0,0,0,928,926,1,0,0,0,928,929,1,0,0,0,929,930,1,0,0,0,930,932, - 5,157,0,0,931,933,3,268,134,0,932,931,1,0,0,0,932,933,1,0,0,0,933,934,1, - 0,0,0,934,935,3,260,130,0,935,135,1,0,0,0,936,938,5,78,0,0,937,936,1,0, - 0,0,937,938,1,0,0,0,938,939,1,0,0,0,939,943,3,138,69,0,940,941,5,78,0,0, - 941,943,3,146,73,0,942,937,1,0,0,0,942,940,1,0,0,0,943,137,1,0,0,0,944, - 945,5,80,0,0,945,946,7,19,0,0,946,955,3,260,130,0,947,949,3,140,70,0,948, - 947,1,0,0,0,948,949,1,0,0,0,949,951,1,0,0,0,950,952,3,52,26,0,951,950,1, - 0,0,0,951,952,1,0,0,0,952,953,1,0,0,0,953,956,3,148,74,0,954,956,3,142, - 71,0,955,948,1,0,0,0,955,954,1,0,0,0,956,139,1,0,0,0,957,958,5,60,0,0,958, - 959,3,270,135,0,959,141,1,0,0,0,960,961,5,72,0,0,961,966,3,144,72,0,962, - 963,5,305,0,0,963,965,3,144,72,0,964,962,1,0,0,0,965,968,1,0,0,0,966,964, - 1,0,0,0,966,967,1,0,0,0,967,143,1,0,0,0,968,966,1,0,0,0,969,970,5,303,0, - 0,970,975,3,290,145,0,971,972,5,305,0,0,972,974,3,290,145,0,973,971,1,0, - 0,0,974,977,1,0,0,0,975,973,1,0,0,0,975,976,1,0,0,0,976,978,1,0,0,0,977, - 975,1,0,0,0,978,979,5,304,0,0,979,145,1,0,0,0,980,981,5,79,0,0,981,982, - 5,116,0,0,982,986,5,43,0,0,983,984,3,138,69,0,984,985,5,306,0,0,985,987, - 1,0,0,0,986,983,1,0,0,0,987,988,1,0,0,0,988,986,1,0,0,0,988,989,1,0,0,0, - 989,990,1,0,0,0,990,991,5,44,0,0,991,147,1,0,0,0,992,993,6,74,-1,0,993, - 1024,3,150,75,0,994,995,5,70,0,0,995,1000,3,152,76,0,996,997,5,305,0,0, - 997,999,3,152,76,0,998,996,1,0,0,0,999,1002,1,0,0,0,1000,998,1,0,0,0,1000, - 1001,1,0,0,0,1001,1003,1,0,0,0,1002,1000,1,0,0,0,1003,1004,3,148,74,5,1004, - 1024,1,0,0,0,1005,1006,5,303,0,0,1006,1007,3,148,74,0,1007,1008,5,304,0, - 0,1008,1024,1,0,0,0,1009,1011,3,158,79,0,1010,1012,3,186,93,0,1011,1010, - 1,0,0,0,1011,1012,1,0,0,0,1012,1014,1,0,0,0,1013,1015,3,190,95,0,1014,1013, - 1,0,0,0,1014,1015,1,0,0,0,1015,1024,1,0,0,0,1016,1018,3,156,78,0,1017,1019, - 3,186,93,0,1018,1017,1,0,0,0,1018,1019,1,0,0,0,1019,1021,1,0,0,0,1020,1022, - 3,190,95,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1024,1,0,0,0,1023,992, - 1,0,0,0,1023,994,1,0,0,0,1023,1005,1,0,0,0,1023,1009,1,0,0,0,1023,1016, - 1,0,0,0,1024,1039,1,0,0,0,1025,1026,10,3,0,0,1026,1028,7,20,0,0,1027,1029, - 5,8,0,0,1028,1027,1,0,0,0,1028,1029,1,0,0,0,1029,1030,1,0,0,0,1030,1032, - 3,148,74,0,1031,1033,3,186,93,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0,1033, - 1035,1,0,0,0,1034,1036,3,190,95,0,1035,1034,1,0,0,0,1035,1036,1,0,0,0,1036, - 1038,1,0,0,0,1037,1025,1,0,0,0,1038,1041,1,0,0,0,1039,1037,1,0,0,0,1039, - 1040,1,0,0,0,1040,149,1,0,0,0,1041,1039,1,0,0,0,1042,1043,5,72,0,0,1043, - 1048,3,204,102,0,1044,1045,5,305,0,0,1045,1047,3,204,102,0,1046,1044,1, - 0,0,0,1047,1050,1,0,0,0,1048,1046,1,0,0,0,1048,1049,1,0,0,0,1049,151,1, - 0,0,0,1050,1048,1,0,0,0,1051,1063,3,154,77,0,1052,1053,5,303,0,0,1053,1058, - 3,50,25,0,1054,1055,5,305,0,0,1055,1057,3,50,25,0,1056,1054,1,0,0,0,1057, - 1060,1,0,0,0,1058,1056,1,0,0,0,1058,1059,1,0,0,0,1059,1061,1,0,0,0,1060, - 1058,1,0,0,0,1061,1062,5,304,0,0,1062,1064,1,0,0,0,1063,1052,1,0,0,0,1063, - 1064,1,0,0,0,1064,1065,1,0,0,0,1065,1066,5,7,0,0,1066,1067,5,303,0,0,1067, - 1068,3,148,74,0,1068,1069,5,304,0,0,1069,153,1,0,0,0,1070,1071,3,248,124, - 0,1071,155,1,0,0,0,1072,1073,3,158,79,0,1073,1075,3,162,81,0,1074,1076, - 3,178,89,0,1075,1074,1,0,0,0,1075,1076,1,0,0,0,1076,1078,1,0,0,0,1077,1079, - 3,180,90,0,1078,1077,1,0,0,0,1078,1079,1,0,0,0,1079,1081,1,0,0,0,1080,1082, - 3,184,92,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1084,1,0,0,0,1083,1085, - 3,192,96,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,157,1,0,0,0,1086,1088, - 5,4,0,0,1087,1089,3,298,149,0,1088,1087,1,0,0,0,1088,1089,1,0,0,0,1089, - 1099,1,0,0,0,1090,1100,5,312,0,0,1091,1096,3,160,80,0,1092,1093,5,305,0, - 0,1093,1095,3,160,80,0,1094,1092,1,0,0,0,1095,1098,1,0,0,0,1096,1094,1, - 0,0,0,1096,1097,1,0,0,0,1097,1100,1,0,0,0,1098,1096,1,0,0,0,1099,1090,1, - 0,0,0,1099,1091,1,0,0,0,1100,159,1,0,0,0,1101,1106,3,204,102,0,1102,1104, - 5,7,0,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1105,1,0,0,0,1105,1107, - 3,204,102,0,1106,1103,1,0,0,0,1106,1107,1,0,0,0,1107,161,1,0,0,0,1108,1109, - 5,5,0,0,1109,1110,3,164,82,0,1110,163,1,0,0,0,1111,1112,6,82,-1,0,1112, - 1117,3,166,83,0,1113,1114,5,305,0,0,1114,1116,3,166,83,0,1115,1113,1,0, - 0,0,1116,1119,1,0,0,0,1117,1115,1,0,0,0,1117,1118,1,0,0,0,1118,1141,1,0, - 0,0,1119,1117,1,0,0,0,1120,1121,10,1,0,0,1121,1122,5,46,0,0,1122,1123,5, - 45,0,0,1123,1140,3,164,82,2,1124,1126,10,2,0,0,1125,1127,5,54,0,0,1126, - 1125,1,0,0,0,1126,1127,1,0,0,0,1127,1129,1,0,0,0,1128,1130,7,21,0,0,1129, - 1128,1,0,0,0,1129,1130,1,0,0,0,1130,1132,1,0,0,0,1131,1133,5,47,0,0,1132, - 1131,1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1135,5,45,0,0,1135, - 1137,3,164,82,0,1136,1138,3,176,88,0,1137,1136,1,0,0,0,1137,1138,1,0,0, - 0,1138,1140,1,0,0,0,1139,1120,1,0,0,0,1139,1124,1,0,0,0,1140,1143,1,0,0, - 0,1141,1139,1,0,0,0,1141,1142,1,0,0,0,1142,165,1,0,0,0,1143,1141,1,0,0, - 0,1144,1146,3,168,84,0,1145,1147,3,238,119,0,1146,1145,1,0,0,0,1146,1147, - 1,0,0,0,1147,167,1,0,0,0,1148,1150,5,74,0,0,1149,1148,1,0,0,0,1149,1150, - 1,0,0,0,1150,1151,1,0,0,0,1151,1153,3,170,85,0,1152,1154,3,172,86,0,1153, - 1152,1,0,0,0,1153,1154,1,0,0,0,1154,1159,1,0,0,0,1155,1157,5,7,0,0,1156, - 1155,1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0,0,0,1158,1160,3,220,110,0, - 1159,1156,1,0,0,0,1159,1160,1,0,0,0,1160,1190,1,0,0,0,1161,1162,5,57,0, - 0,1162,1163,5,74,0,0,1163,1164,5,303,0,0,1164,1165,3,216,108,0,1165,1166, - 5,303,0,0,1166,1171,3,204,102,0,1167,1168,5,305,0,0,1168,1170,3,204,102, - 0,1169,1167,1,0,0,0,1170,1173,1,0,0,0,1171,1169,1,0,0,0,1171,1172,1,0,0, - 0,1172,1174,1,0,0,0,1173,1171,1,0,0,0,1174,1175,5,304,0,0,1175,1176,5,304, - 0,0,1176,1190,1,0,0,0,1177,1179,5,57,0,0,1178,1177,1,0,0,0,1178,1179,1, - 0,0,0,1179,1180,1,0,0,0,1180,1181,5,303,0,0,1181,1182,3,148,74,0,1182,1183, - 5,304,0,0,1183,1190,1,0,0,0,1184,1185,5,227,0,0,1185,1186,5,303,0,0,1186, - 1187,3,204,102,0,1187,1188,5,304,0,0,1188,1190,1,0,0,0,1189,1149,1,0,0, - 0,1189,1161,1,0,0,0,1189,1178,1,0,0,0,1189,1184,1,0,0,0,1190,169,1,0,0, - 0,1191,1192,3,260,130,0,1192,171,1,0,0,0,1193,1194,5,37,0,0,1194,1195,5, - 259,0,0,1195,1196,5,7,0,0,1196,1197,5,136,0,0,1197,1198,3,174,87,0,1198, - 173,1,0,0,0,1199,1200,3,204,102,0,1200,175,1,0,0,0,1201,1202,5,55,0,0,1202, - 1216,3,206,103,0,1203,1204,5,143,0,0,1204,1205,5,303,0,0,1205,1210,3,260, - 130,0,1206,1207,5,305,0,0,1207,1209,3,260,130,0,1208,1206,1,0,0,0,1209, - 1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211,1,0,0,0,1211,1213,1,0,0,0,1212, - 1210,1,0,0,0,1213,1214,5,304,0,0,1214,1216,1,0,0,0,1215,1201,1,0,0,0,1215, - 1203,1,0,0,0,1216,177,1,0,0,0,1217,1218,5,11,0,0,1218,1219,3,206,103,0, - 1219,179,1,0,0,0,1220,1221,5,12,0,0,1221,1222,5,13,0,0,1222,1227,3,182, - 91,0,1223,1224,5,305,0,0,1224,1226,3,182,91,0,1225,1223,1,0,0,0,1226,1229, - 1,0,0,0,1227,1225,1,0,0,0,1227,1228,1,0,0,0,1228,181,1,0,0,0,1229,1227, - 1,0,0,0,1230,1282,3,204,102,0,1231,1232,5,303,0,0,1232,1282,5,304,0,0,1233, - 1234,5,303,0,0,1234,1239,3,204,102,0,1235,1236,5,305,0,0,1236,1238,3,204, - 102,0,1237,1235,1,0,0,0,1238,1241,1,0,0,0,1239,1237,1,0,0,0,1239,1240,1, - 0,0,0,1240,1242,1,0,0,0,1241,1239,1,0,0,0,1242,1243,5,304,0,0,1243,1282, - 1,0,0,0,1244,1245,5,16,0,0,1245,1246,5,303,0,0,1246,1251,3,204,102,0,1247, - 1248,5,305,0,0,1248,1250,3,204,102,0,1249,1247,1,0,0,0,1250,1253,1,0,0, - 0,1251,1249,1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253,1251,1,0,0, - 0,1254,1255,5,304,0,0,1255,1282,1,0,0,0,1256,1257,5,17,0,0,1257,1258,5, - 303,0,0,1258,1263,3,204,102,0,1259,1260,5,305,0,0,1260,1262,3,204,102,0, - 1261,1259,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0,1263,1264,1,0,0,0, - 1264,1266,1,0,0,0,1265,1263,1,0,0,0,1266,1267,5,304,0,0,1267,1282,1,0,0, - 0,1268,1269,5,14,0,0,1269,1270,5,15,0,0,1270,1271,5,303,0,0,1271,1276,3, - 182,91,0,1272,1273,5,305,0,0,1273,1275,3,182,91,0,1274,1272,1,0,0,0,1275, - 1278,1,0,0,0,1276,1274,1,0,0,0,1276,1277,1,0,0,0,1277,1279,1,0,0,0,1278, - 1276,1,0,0,0,1279,1280,5,304,0,0,1280,1282,1,0,0,0,1281,1230,1,0,0,0,1281, - 1231,1,0,0,0,1281,1233,1,0,0,0,1281,1244,1,0,0,0,1281,1256,1,0,0,0,1281, - 1268,1,0,0,0,1282,183,1,0,0,0,1283,1284,5,19,0,0,1284,1285,3,206,103,0, - 1285,185,1,0,0,0,1286,1287,5,18,0,0,1287,1288,5,13,0,0,1288,1293,3,188, - 94,0,1289,1290,5,305,0,0,1290,1292,3,188,94,0,1291,1289,1,0,0,0,1292,1295, - 1,0,0,0,1293,1291,1,0,0,0,1293,1294,1,0,0,0,1294,187,1,0,0,0,1295,1293, - 1,0,0,0,1296,1298,3,204,102,0,1297,1299,7,22,0,0,1298,1297,1,0,0,0,1298, - 1299,1,0,0,0,1299,189,1,0,0,0,1300,1303,5,20,0,0,1301,1304,5,8,0,0,1302, - 1304,3,204,102,0,1303,1301,1,0,0,0,1303,1302,1,0,0,0,1304,191,1,0,0,0,1305, - 1306,5,58,0,0,1306,1311,3,194,97,0,1307,1308,5,305,0,0,1308,1310,3,194, - 97,0,1309,1307,1,0,0,0,1310,1313,1,0,0,0,1311,1309,1,0,0,0,1311,1312,1, - 0,0,0,1312,193,1,0,0,0,1313,1311,1,0,0,0,1314,1315,3,240,120,0,1315,1316, - 5,7,0,0,1316,1317,3,196,98,0,1317,195,1,0,0,0,1318,1320,3,240,120,0,1319, - 1318,1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1332,5,303,0,0,1322, - 1323,5,18,0,0,1323,1324,5,13,0,0,1324,1329,3,198,99,0,1325,1326,5,305,0, - 0,1326,1328,3,198,99,0,1327,1325,1,0,0,0,1328,1331,1,0,0,0,1329,1327,1, - 0,0,0,1329,1330,1,0,0,0,1330,1333,1,0,0,0,1331,1329,1,0,0,0,1332,1322,1, - 0,0,0,1332,1333,1,0,0,0,1333,1344,1,0,0,0,1334,1335,5,60,0,0,1335,1336, - 5,13,0,0,1336,1341,3,204,102,0,1337,1338,5,305,0,0,1338,1340,3,204,102, - 0,1339,1337,1,0,0,0,1340,1343,1,0,0,0,1341,1339,1,0,0,0,1341,1342,1,0,0, - 0,1342,1345,1,0,0,0,1343,1341,1,0,0,0,1344,1334,1,0,0,0,1344,1345,1,0,0, - 0,1345,1347,1,0,0,0,1346,1348,3,200,100,0,1347,1346,1,0,0,0,1347,1348,1, - 0,0,0,1348,1349,1,0,0,0,1349,1350,5,304,0,0,1350,197,1,0,0,0,1351,1353, - 3,204,102,0,1352,1354,7,22,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354, - 1357,1,0,0,0,1355,1356,5,34,0,0,1356,1358,7,23,0,0,1357,1355,1,0,0,0,1357, - 1358,1,0,0,0,1358,199,1,0,0,0,1359,1360,5,61,0,0,1360,1364,3,202,101,0, - 1361,1362,5,62,0,0,1362,1364,3,202,101,0,1363,1359,1,0,0,0,1363,1361,1, - 0,0,0,1364,201,1,0,0,0,1365,1366,3,204,102,0,1366,1367,5,64,0,0,1367,203, - 1,0,0,0,1368,1369,3,206,103,0,1369,205,1,0,0,0,1370,1371,6,103,-1,0,1371, - 1372,5,25,0,0,1372,1383,3,206,103,5,1373,1374,5,27,0,0,1374,1375,5,303, - 0,0,1375,1376,3,148,74,0,1376,1377,5,304,0,0,1377,1383,1,0,0,0,1378,1380, - 3,212,106,0,1379,1381,3,208,104,0,1380,1379,1,0,0,0,1380,1381,1,0,0,0,1381, - 1383,1,0,0,0,1382,1370,1,0,0,0,1382,1373,1,0,0,0,1382,1378,1,0,0,0,1383, - 1392,1,0,0,0,1384,1385,10,2,0,0,1385,1386,5,23,0,0,1386,1391,3,206,103, - 3,1387,1388,10,1,0,0,1388,1389,5,22,0,0,1389,1391,3,206,103,2,1390,1384, - 1,0,0,0,1390,1387,1,0,0,0,1391,1394,1,0,0,0,1392,1390,1,0,0,0,1392,1393, - 1,0,0,0,1393,207,1,0,0,0,1394,1392,1,0,0,0,1395,1397,5,25,0,0,1396,1395, - 1,0,0,0,1396,1397,1,0,0,0,1397,1398,1,0,0,0,1398,1399,5,28,0,0,1399,1400, - 3,212,106,0,1400,1401,5,23,0,0,1401,1402,3,212,106,0,1402,1479,1,0,0,0, - 1403,1405,5,25,0,0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0, - 0,1406,1407,5,24,0,0,1407,1408,5,303,0,0,1408,1413,3,204,102,0,1409,1410, - 5,305,0,0,1410,1412,3,204,102,0,1411,1409,1,0,0,0,1412,1415,1,0,0,0,1413, - 1411,1,0,0,0,1413,1414,1,0,0,0,1414,1416,1,0,0,0,1415,1413,1,0,0,0,1416, - 1417,5,304,0,0,1417,1479,1,0,0,0,1418,1420,5,25,0,0,1419,1418,1,0,0,0,1419, - 1420,1,0,0,0,1420,1421,1,0,0,0,1421,1422,5,24,0,0,1422,1423,5,303,0,0,1423, - 1424,3,148,74,0,1424,1425,5,304,0,0,1425,1479,1,0,0,0,1426,1427,5,27,0, - 0,1427,1428,5,303,0,0,1428,1429,3,148,74,0,1429,1430,5,304,0,0,1430,1479, - 1,0,0,0,1431,1433,5,25,0,0,1432,1431,1,0,0,0,1432,1433,1,0,0,0,1433,1434, - 1,0,0,0,1434,1435,5,30,0,0,1435,1479,3,212,106,0,1436,1438,5,25,0,0,1437, - 1436,1,0,0,0,1437,1438,1,0,0,0,1438,1439,1,0,0,0,1439,1440,5,29,0,0,1440, - 1454,7,24,0,0,1441,1442,5,303,0,0,1442,1455,5,304,0,0,1443,1444,5,303,0, - 0,1444,1449,3,204,102,0,1445,1446,5,305,0,0,1446,1448,3,204,102,0,1447, - 1445,1,0,0,0,1448,1451,1,0,0,0,1449,1447,1,0,0,0,1449,1450,1,0,0,0,1450, - 1452,1,0,0,0,1451,1449,1,0,0,0,1452,1453,5,304,0,0,1453,1455,1,0,0,0,1454, - 1441,1,0,0,0,1454,1443,1,0,0,0,1455,1479,1,0,0,0,1456,1458,5,25,0,0,1457, - 1456,1,0,0,0,1457,1458,1,0,0,0,1458,1459,1,0,0,0,1459,1460,5,29,0,0,1460, - 1479,3,212,106,0,1461,1463,5,31,0,0,1462,1464,5,25,0,0,1463,1462,1,0,0, - 0,1463,1464,1,0,0,0,1464,1465,1,0,0,0,1465,1479,5,290,0,0,1466,1468,5,31, - 0,0,1467,1469,5,25,0,0,1468,1467,1,0,0,0,1468,1469,1,0,0,0,1469,1470,1, - 0,0,0,1470,1479,7,25,0,0,1471,1473,5,31,0,0,1472,1474,5,25,0,0,1473,1472, - 1,0,0,0,1473,1474,1,0,0,0,1474,1475,1,0,0,0,1475,1476,5,10,0,0,1476,1477, - 5,5,0,0,1477,1479,3,212,106,0,1478,1396,1,0,0,0,1478,1404,1,0,0,0,1478, - 1419,1,0,0,0,1478,1426,1,0,0,0,1478,1432,1,0,0,0,1478,1437,1,0,0,0,1478, - 1457,1,0,0,0,1478,1461,1,0,0,0,1478,1466,1,0,0,0,1478,1471,1,0,0,0,1479, - 209,1,0,0,0,1480,1482,5,25,0,0,1481,1480,1,0,0,0,1481,1482,1,0,0,0,1482, - 1483,1,0,0,0,1483,1484,5,29,0,0,1484,1498,7,24,0,0,1485,1486,5,303,0,0, - 1486,1499,5,304,0,0,1487,1488,5,303,0,0,1488,1493,3,204,102,0,1489,1490, - 5,305,0,0,1490,1492,3,204,102,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493, - 1491,1,0,0,0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496, - 1497,5,304,0,0,1497,1499,1,0,0,0,1498,1485,1,0,0,0,1498,1487,1,0,0,0,1499, - 1506,1,0,0,0,1500,1502,5,25,0,0,1501,1500,1,0,0,0,1501,1502,1,0,0,0,1502, - 1503,1,0,0,0,1503,1504,5,29,0,0,1504,1506,3,212,106,0,1505,1481,1,0,0,0, - 1505,1501,1,0,0,0,1506,211,1,0,0,0,1507,1508,6,106,-1,0,1508,1512,3,214, - 107,0,1509,1510,7,26,0,0,1510,1512,3,212,106,7,1511,1507,1,0,0,0,1511,1509, - 1,0,0,0,1512,1534,1,0,0,0,1513,1514,10,6,0,0,1514,1515,7,27,0,0,1515,1533, - 3,212,106,7,1516,1517,10,5,0,0,1517,1518,7,28,0,0,1518,1533,3,212,106,6, - 1519,1520,10,4,0,0,1520,1521,5,298,0,0,1521,1533,3,212,106,5,1522,1523, - 10,3,0,0,1523,1524,5,299,0,0,1524,1533,3,212,106,4,1525,1526,10,2,0,0,1526, - 1527,5,297,0,0,1527,1533,3,212,106,3,1528,1529,10,1,0,0,1529,1530,3,280, - 140,0,1530,1531,3,212,106,2,1531,1533,1,0,0,0,1532,1513,1,0,0,0,1532,1516, - 1,0,0,0,1532,1519,1,0,0,0,1532,1522,1,0,0,0,1532,1525,1,0,0,0,1532,1528, - 1,0,0,0,1533,1536,1,0,0,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,213, - 1,0,0,0,1536,1534,1,0,0,0,1537,1538,6,107,-1,0,1538,1540,5,39,0,0,1539, - 1541,3,256,128,0,1540,1539,1,0,0,0,1541,1542,1,0,0,0,1542,1540,1,0,0,0, - 1542,1543,1,0,0,0,1543,1546,1,0,0,0,1544,1545,5,42,0,0,1545,1547,3,204, - 102,0,1546,1544,1,0,0,0,1546,1547,1,0,0,0,1547,1548,1,0,0,0,1548,1549,5, - 44,0,0,1549,1629,1,0,0,0,1550,1551,5,39,0,0,1551,1553,3,204,102,0,1552, - 1554,3,256,128,0,1553,1552,1,0,0,0,1554,1555,1,0,0,0,1555,1553,1,0,0,0, - 1555,1556,1,0,0,0,1556,1559,1,0,0,0,1557,1558,5,42,0,0,1558,1560,3,204, - 102,0,1559,1557,1,0,0,0,1559,1560,1,0,0,0,1560,1561,1,0,0,0,1561,1562,5, - 44,0,0,1562,1629,1,0,0,0,1563,1564,5,94,0,0,1564,1565,5,303,0,0,1565,1566, - 3,204,102,0,1566,1567,5,7,0,0,1567,1568,3,54,27,0,1568,1569,5,304,0,0,1569, - 1629,1,0,0,0,1570,1571,5,67,0,0,1571,1572,5,303,0,0,1572,1575,3,204,102, - 0,1573,1574,5,124,0,0,1574,1576,5,34,0,0,1575,1573,1,0,0,0,1575,1576,1, - 0,0,0,1576,1577,1,0,0,0,1577,1578,5,304,0,0,1578,1629,1,0,0,0,1579,1580, - 5,69,0,0,1580,1581,5,303,0,0,1581,1584,3,204,102,0,1582,1583,5,124,0,0, - 1583,1585,5,34,0,0,1584,1582,1,0,0,0,1584,1585,1,0,0,0,1585,1586,1,0,0, - 0,1586,1587,5,304,0,0,1587,1629,1,0,0,0,1588,1589,5,129,0,0,1589,1590,5, - 303,0,0,1590,1591,3,212,106,0,1591,1592,5,24,0,0,1592,1593,3,212,106,0, - 1593,1594,5,304,0,0,1594,1629,1,0,0,0,1595,1629,3,290,145,0,1596,1629,5, - 312,0,0,1597,1598,3,260,130,0,1598,1599,5,300,0,0,1599,1600,5,312,0,0,1600, - 1629,1,0,0,0,1601,1602,5,303,0,0,1602,1603,3,148,74,0,1603,1604,5,304,0, - 0,1604,1629,1,0,0,0,1605,1606,3,216,108,0,1606,1618,5,303,0,0,1607,1609, - 3,298,149,0,1608,1607,1,0,0,0,1608,1609,1,0,0,0,1609,1610,1,0,0,0,1610, - 1615,3,204,102,0,1611,1612,5,305,0,0,1612,1614,3,204,102,0,1613,1611,1, - 0,0,0,1614,1617,1,0,0,0,1615,1613,1,0,0,0,1615,1616,1,0,0,0,1616,1619,1, - 0,0,0,1617,1615,1,0,0,0,1618,1608,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1, - 0,0,0,1620,1621,5,304,0,0,1621,1629,1,0,0,0,1622,1629,3,248,124,0,1623, - 1629,3,218,109,0,1624,1625,5,303,0,0,1625,1626,3,204,102,0,1626,1627,5, - 304,0,0,1627,1629,1,0,0,0,1628,1537,1,0,0,0,1628,1550,1,0,0,0,1628,1563, - 1,0,0,0,1628,1570,1,0,0,0,1628,1579,1,0,0,0,1628,1588,1,0,0,0,1628,1595, - 1,0,0,0,1628,1596,1,0,0,0,1628,1597,1,0,0,0,1628,1601,1,0,0,0,1628,1605, - 1,0,0,0,1628,1622,1,0,0,0,1628,1623,1,0,0,0,1628,1624,1,0,0,0,1629,1637, - 1,0,0,0,1630,1631,10,4,0,0,1631,1632,5,301,0,0,1632,1633,3,212,106,0,1633, - 1634,5,302,0,0,1634,1636,1,0,0,0,1635,1630,1,0,0,0,1636,1639,1,0,0,0,1637, - 1635,1,0,0,0,1637,1638,1,0,0,0,1638,215,1,0,0,0,1639,1637,1,0,0,0,1640, - 1641,3,260,130,0,1641,217,1,0,0,0,1642,1643,3,260,130,0,1643,219,1,0,0, - 0,1644,1645,3,248,124,0,1645,221,1,0,0,0,1646,1649,3,248,124,0,1647,1649, - 3,218,109,0,1648,1646,1,0,0,0,1648,1647,1,0,0,0,1649,223,1,0,0,0,1650,1653, - 5,38,0,0,1651,1654,3,226,113,0,1652,1654,3,230,115,0,1653,1651,1,0,0,0, - 1653,1652,1,0,0,0,1653,1654,1,0,0,0,1654,225,1,0,0,0,1655,1657,3,228,114, - 0,1656,1658,3,232,116,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,227,1, - 0,0,0,1659,1660,3,234,117,0,1660,1661,3,248,124,0,1661,1663,1,0,0,0,1662, - 1659,1,0,0,0,1663,1664,1,0,0,0,1664,1662,1,0,0,0,1664,1665,1,0,0,0,1665, - 229,1,0,0,0,1666,1669,3,232,116,0,1667,1670,3,228,114,0,1668,1670,3,232, - 116,0,1669,1667,1,0,0,0,1669,1668,1,0,0,0,1669,1670,1,0,0,0,1670,231,1, - 0,0,0,1671,1672,3,234,117,0,1672,1673,3,248,124,0,1673,1674,5,109,0,0,1674, - 1675,3,248,124,0,1675,233,1,0,0,0,1676,1678,7,29,0,0,1677,1676,1,0,0,0, - 1677,1678,1,0,0,0,1678,1679,1,0,0,0,1679,1682,7,30,0,0,1680,1682,5,322, - 0,0,1681,1677,1,0,0,0,1681,1680,1,0,0,0,1682,235,1,0,0,0,1683,1685,5,7, - 0,0,1684,1683,1,0,0,0,1684,1685,1,0,0,0,1685,1686,1,0,0,0,1686,1688,3,250, - 125,0,1687,1689,3,244,122,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689,237, - 1,0,0,0,1690,1692,5,7,0,0,1691,1690,1,0,0,0,1691,1692,1,0,0,0,1692,1693, - 1,0,0,0,1693,1695,3,250,125,0,1694,1696,3,244,122,0,1695,1694,1,0,0,0,1695, - 1696,1,0,0,0,1696,239,1,0,0,0,1697,1698,3,248,124,0,1698,1699,3,242,121, - 0,1699,241,1,0,0,0,1700,1701,5,131,0,0,1701,1703,3,248,124,0,1702,1700, - 1,0,0,0,1703,1704,1,0,0,0,1704,1702,1,0,0,0,1704,1705,1,0,0,0,1705,1708, - 1,0,0,0,1706,1708,1,0,0,0,1707,1702,1,0,0,0,1707,1706,1,0,0,0,1708,243, - 1,0,0,0,1709,1710,5,303,0,0,1710,1711,3,246,123,0,1711,1712,5,304,0,0,1712, - 245,1,0,0,0,1713,1718,3,248,124,0,1714,1715,5,305,0,0,1715,1717,3,248,124, - 0,1716,1714,1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0,0,1718,1719,1,0,0, - 0,1719,247,1,0,0,0,1720,1718,1,0,0,0,1721,1724,3,250,125,0,1722,1724,3, - 302,151,0,1723,1721,1,0,0,0,1723,1722,1,0,0,0,1724,249,1,0,0,0,1725,1730, - 3,252,126,0,1726,1730,3,254,127,0,1727,1730,3,300,150,0,1728,1730,3,304, - 152,0,1729,1725,1,0,0,0,1729,1726,1,0,0,0,1729,1727,1,0,0,0,1729,1728,1, - 0,0,0,1730,251,1,0,0,0,1731,1732,7,31,0,0,1732,253,1,0,0,0,1733,1734,5, - 322,0,0,1734,255,1,0,0,0,1735,1736,5,40,0,0,1736,1737,3,204,102,0,1737, - 1738,5,41,0,0,1738,1739,3,204,102,0,1739,257,1,0,0,0,1740,1745,3,260,130, - 0,1741,1742,5,305,0,0,1742,1744,3,260,130,0,1743,1741,1,0,0,0,1744,1747, - 1,0,0,0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746,259,1,0,0,0,1747,1745, - 1,0,0,0,1748,1752,5,326,0,0,1749,1751,5,320,0,0,1750,1749,1,0,0,0,1751, - 1754,1,0,0,0,1752,1753,1,0,0,0,1752,1750,1,0,0,0,1753,261,1,0,0,0,1754, - 1752,1,0,0,0,1755,1759,7,32,0,0,1756,1758,7,33,0,0,1757,1756,1,0,0,0,1758, - 1761,1,0,0,0,1759,1760,1,0,0,0,1759,1757,1,0,0,0,1760,263,1,0,0,0,1761, - 1759,1,0,0,0,1762,1763,5,70,0,0,1763,1764,3,270,135,0,1764,265,1,0,0,0, - 1765,1766,5,128,0,0,1766,1767,5,25,0,0,1767,1768,5,27,0,0,1768,267,1,0, - 0,0,1769,1770,5,128,0,0,1770,1771,5,27,0,0,1771,269,1,0,0,0,1772,1773,5, - 303,0,0,1773,1778,3,272,136,0,1774,1775,5,305,0,0,1775,1777,3,272,136,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,304,0,0,1782,271,1,0,0, - 0,1783,1788,3,274,137,0,1784,1786,5,292,0,0,1785,1784,1,0,0,0,1785,1786, - 1,0,0,0,1786,1787,1,0,0,0,1787,1789,3,276,138,0,1788,1785,1,0,0,0,1788, - 1789,1,0,0,0,1789,273,1,0,0,0,1790,1794,3,248,124,0,1791,1794,3,218,109, - 0,1792,1794,5,322,0,0,1793,1790,1,0,0,0,1793,1791,1,0,0,0,1793,1792,1,0, - 0,0,1794,275,1,0,0,0,1795,1800,5,323,0,0,1796,1800,5,324,0,0,1797,1800, - 3,296,148,0,1798,1800,5,322,0,0,1799,1795,1,0,0,0,1799,1796,1,0,0,0,1799, - 1797,1,0,0,0,1799,1798,1,0,0,0,1800,277,1,0,0,0,1801,1808,5,23,0,0,1802, - 1803,5,298,0,0,1803,1808,5,298,0,0,1804,1808,5,22,0,0,1805,1806,5,297,0, - 0,1806,1808,5,297,0,0,1807,1801,1,0,0,0,1807,1802,1,0,0,0,1807,1804,1,0, - 0,0,1807,1805,1,0,0,0,1808,279,1,0,0,0,1809,1824,5,292,0,0,1810,1824,5, - 293,0,0,1811,1824,5,294,0,0,1812,1813,5,294,0,0,1813,1824,5,292,0,0,1814, - 1815,5,293,0,0,1815,1824,5,292,0,0,1816,1817,5,294,0,0,1817,1824,5,293, - 0,0,1818,1819,5,295,0,0,1819,1824,5,292,0,0,1820,1821,5,294,0,0,1821,1822, - 5,292,0,0,1822,1824,5,293,0,0,1823,1809,1,0,0,0,1823,1810,1,0,0,0,1823, - 1811,1,0,0,0,1823,1812,1,0,0,0,1823,1814,1,0,0,0,1823,1816,1,0,0,0,1823, - 1818,1,0,0,0,1823,1820,1,0,0,0,1824,281,1,0,0,0,1825,1826,5,294,0,0,1826, - 1833,5,294,0,0,1827,1828,5,293,0,0,1828,1833,5,293,0,0,1829,1833,5,298, - 0,0,1830,1833,5,299,0,0,1831,1833,5,297,0,0,1832,1825,1,0,0,0,1832,1827, - 1,0,0,0,1832,1829,1,0,0,0,1832,1830,1,0,0,0,1832,1831,1,0,0,0,1833,283, - 1,0,0,0,1834,1835,7,34,0,0,1835,285,1,0,0,0,1836,1837,7,35,0,0,1837,287, - 1,0,0,0,1838,1839,3,260,130,0,1839,289,1,0,0,0,1840,1853,3,292,146,0,1841, - 1853,3,294,147,0,1842,1853,3,224,112,0,1843,1844,5,314,0,0,1844,1853,3, - 294,147,0,1845,1853,3,296,148,0,1846,1853,5,324,0,0,1847,1853,5,325,0,0, - 1848,1850,5,25,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,1851,1,0,0, - 0,1851,1853,5,290,0,0,1852,1840,1,0,0,0,1852,1841,1,0,0,0,1852,1842,1,0, - 0,0,1852,1843,1,0,0,0,1852,1845,1,0,0,0,1852,1846,1,0,0,0,1852,1847,1,0, - 0,0,1852,1849,1,0,0,0,1853,291,1,0,0,0,1854,1855,5,322,0,0,1855,293,1,0, - 0,0,1856,1857,5,323,0,0,1857,295,1,0,0,0,1858,1859,7,25,0,0,1859,297,1, - 0,0,0,1860,1861,7,36,0,0,1861,299,1,0,0,0,1862,1863,7,37,0,0,1863,301,1, - 0,0,0,1864,1865,7,38,0,0,1865,303,1,0,0,0,1866,1867,7,39,0,0,1867,305,1, - 0,0,0,223,314,317,319,334,352,356,365,370,377,384,388,397,409,412,419,427, - 432,435,442,450,454,466,474,478,499,503,507,511,520,525,529,533,537,540, - 544,549,555,560,565,568,572,580,588,592,596,600,604,608,612,616,620,622, - 632,640,664,671,686,689,697,709,733,746,751,755,763,767,775,785,789,795, - 799,803,806,815,819,826,829,839,849,864,875,879,886,891,897,901,908,912, - 916,920,928,932,937,942,948,951,955,966,975,988,1000,1011,1014,1018,1021, - 1023,1028,1032,1035,1039,1048,1058,1063,1075,1078,1081,1084,1088,1096,1099, - 1103,1106,1117,1126,1129,1132,1137,1139,1141,1146,1149,1153,1156,1159,1171, - 1178,1189,1210,1215,1227,1239,1251,1263,1276,1281,1293,1298,1303,1311,1319, - 1329,1332,1341,1344,1347,1353,1357,1363,1380,1382,1390,1392,1396,1404,1413, - 1419,1432,1437,1449,1454,1457,1463,1468,1473,1478,1481,1493,1498,1501,1505, - 1511,1532,1534,1542,1546,1555,1559,1575,1584,1608,1615,1618,1628,1637,1648, - 1653,1657,1664,1669,1677,1681,1684,1688,1691,1695,1704,1707,1718,1723,1729, - 1745,1752,1759,1778,1785,1788,1793,1799,1807,1823,1832,1849,1852]; + 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312, + 0,40,2,0,36,36,84,84,1,0,87,89,2,0,193,193,253,255,2,0,192,192,239,239, + 2,0,5,5,24,24,2,0,74,74,76,76,2,0,6,6,82,82,1,0,246,250,3,0,283,283,288, + 288,291,291,6,0,265,265,268,272,276,280,284,284,286,286,292,292,1,0,70, + 71,2,0,273,275,281,282,2,0,266,266,287,287,1,0,233,234,3,0,8,8,102,102, + 236,236,1,0,233,235,2,0,167,167,237,238,1,0,241,243,2,0,184,184,186,186, + 2,0,83,83,140,140,2,0,105,106,108,108,2,0,48,49,51,52,1,0,35,36,2,0,67, + 67,69,69,1,0,8,9,1,0,32,33,2,0,297,297,315,316,4,0,132,132,313,313,317, + 317,320,320,2,0,315,316,318,318,1,0,315,316,1,0,324,325,2,0,324,324,327, + 327,1,0,327,328,1,0,321,322,4,0,132,132,313,313,315,317,319,320,3,0,25, + 25,296,297,315,316,2,0,8,8,10,10,32,0,6,6,13,17,20,21,26,30,32,32,34,36, + 38,38,50,50,56,69,72,72,75,77,80,81,84,85,90,93,95,97,99,99,102,104,107, + 107,110,124,128,142,144,184,186,203,205,212,214,234,236,237,239,240,253, + 254,258,260,265,273,276,278,280,285,287,292,6,0,45,46,48,52,54,55,105,108, + 143,143,223,223,24,0,4,42,44,44,47,47,53,53,56,70,72,77,80,81,83,85,90, + 99,102,104,109,142,144,176,178,212,214,222,224,234,236,237,239,240,253, + 254,256,256,258,260,265,273,276,278,280,285,287,292,2077,0,314,1,0,0,0, + 2,317,1,0,0,0,4,327,1,0,0,0,6,342,1,0,0,0,8,344,1,0,0,0,10,360,1,0,0,0, + 12,364,1,0,0,0,14,366,1,0,0,0,16,369,1,0,0,0,18,380,1,0,0,0,20,388,1,0, + 0,0,22,396,1,0,0,0,24,398,1,0,0,0,26,443,1,0,0,0,28,445,1,0,0,0,30,452, + 1,0,0,0,32,456,1,0,0,0,34,460,1,0,0,0,36,464,1,0,0,0,38,507,1,0,0,0,40, + 511,1,0,0,0,42,513,1,0,0,0,44,554,1,0,0,0,46,568,1,0,0,0,48,570,1,0,0,0, + 50,580,1,0,0,0,52,582,1,0,0,0,54,630,1,0,0,0,56,632,1,0,0,0,58,636,1,0, + 0,0,60,644,1,0,0,0,62,652,1,0,0,0,64,656,1,0,0,0,66,663,1,0,0,0,68,679, + 1,0,0,0,70,686,1,0,0,0,72,689,1,0,0,0,74,699,1,0,0,0,76,701,1,0,0,0,78, + 707,1,0,0,0,80,709,1,0,0,0,82,717,1,0,0,0,84,725,1,0,0,0,86,727,1,0,0,0, + 88,731,1,0,0,0,90,735,1,0,0,0,92,759,1,0,0,0,94,763,1,0,0,0,96,765,1,0, + 0,0,98,777,1,0,0,0,100,783,1,0,0,0,102,785,1,0,0,0,104,790,1,0,0,0,106, + 801,1,0,0,0,108,819,1,0,0,0,110,839,1,0,0,0,112,850,1,0,0,0,114,852,1,0, + 0,0,116,865,1,0,0,0,118,872,1,0,0,0,120,875,1,0,0,0,122,884,1,0,0,0,124, + 888,1,0,0,0,126,892,1,0,0,0,128,895,1,0,0,0,130,903,1,0,0,0,132,908,1,0, + 0,0,134,925,1,0,0,0,136,932,1,0,0,0,138,942,1,0,0,0,140,951,1,0,0,0,142, + 961,1,0,0,0,144,979,1,0,0,0,146,981,1,0,0,0,148,994,1,0,0,0,150,997,1,0, + 0,0,152,1006,1,0,0,0,154,1017,1,0,0,0,156,1060,1,0,0,0,158,1079,1,0,0,0, + 160,1088,1,0,0,0,162,1107,1,0,0,0,164,1109,1,0,0,0,166,1123,1,0,0,0,168, + 1138,1,0,0,0,170,1145,1,0,0,0,172,1148,1,0,0,0,174,1181,1,0,0,0,176,1226, + 1,0,0,0,178,1228,1,0,0,0,180,1230,1,0,0,0,182,1236,1,0,0,0,184,1252,1,0, + 0,0,186,1254,1,0,0,0,188,1257,1,0,0,0,190,1318,1,0,0,0,192,1320,1,0,0,0, + 194,1323,1,0,0,0,196,1333,1,0,0,0,198,1337,1,0,0,0,200,1342,1,0,0,0,202, + 1351,1,0,0,0,204,1356,1,0,0,0,206,1388,1,0,0,0,208,1400,1,0,0,0,210,1402, + 1,0,0,0,212,1405,1,0,0,0,214,1419,1,0,0,0,216,1515,1,0,0,0,218,1542,1,0, + 0,0,220,1548,1,0,0,0,222,1665,1,0,0,0,224,1677,1,0,0,0,226,1679,1,0,0,0, + 228,1681,1,0,0,0,230,1685,1,0,0,0,232,1687,1,0,0,0,234,1692,1,0,0,0,236, + 1699,1,0,0,0,238,1703,1,0,0,0,240,1708,1,0,0,0,242,1718,1,0,0,0,244,1721, + 1,0,0,0,246,1728,1,0,0,0,248,1734,1,0,0,0,250,1744,1,0,0,0,252,1746,1,0, + 0,0,254,1750,1,0,0,0,256,1760,1,0,0,0,258,1766,1,0,0,0,260,1768,1,0,0,0, + 262,1770,1,0,0,0,264,1772,1,0,0,0,266,1777,1,0,0,0,268,1785,1,0,0,0,270, + 1792,1,0,0,0,272,1799,1,0,0,0,274,1802,1,0,0,0,276,1806,1,0,0,0,278,1809, + 1,0,0,0,280,1820,1,0,0,0,282,1830,1,0,0,0,284,1836,1,0,0,0,286,1844,1,0, + 0,0,288,1860,1,0,0,0,290,1869,1,0,0,0,292,1871,1,0,0,0,294,1873,1,0,0,0, + 296,1875,1,0,0,0,298,1889,1,0,0,0,300,1891,1,0,0,0,302,1893,1,0,0,0,304, + 1895,1,0,0,0,306,1897,1,0,0,0,308,1899,1,0,0,0,310,1901,1,0,0,0,312,1903, + 1,0,0,0,314,315,3,2,1,0,315,316,5,0,0,1,316,1,1,0,0,0,317,318,3,4,2,0,318, + 319,5,0,0,1,319,3,1,0,0,0,320,322,3,6,3,0,321,323,5,307,0,0,322,321,1,0, + 0,0,322,323,1,0,0,0,323,326,1,0,0,0,324,326,3,8,4,0,325,320,1,0,0,0,325, + 324,1,0,0,0,326,329,1,0,0,0,327,325,1,0,0,0,327,328,1,0,0,0,328,5,1,0,0, + 0,329,327,1,0,0,0,330,343,3,10,5,0,331,343,3,12,6,0,332,343,3,14,7,0,333, + 343,3,16,8,0,334,343,3,22,11,0,335,343,3,26,13,0,336,343,3,28,14,0,337, + 343,3,30,15,0,338,343,3,32,16,0,339,343,3,34,17,0,340,343,3,36,18,0,341, + 343,3,38,19,0,342,330,1,0,0,0,342,331,1,0,0,0,342,332,1,0,0,0,342,333,1, + 0,0,0,342,334,1,0,0,0,342,335,1,0,0,0,342,336,1,0,0,0,342,337,1,0,0,0,342, + 338,1,0,0,0,342,339,1,0,0,0,342,340,1,0,0,0,342,341,1,0,0,0,343,7,1,0,0, + 0,344,345,5,307,0,0,345,9,1,0,0,0,346,361,3,40,20,0,347,361,3,104,52,0, + 348,361,3,106,53,0,349,361,3,108,54,0,350,361,3,102,51,0,351,361,3,114, + 57,0,352,361,3,128,64,0,353,361,3,130,65,0,354,361,3,132,66,0,355,361,3, + 134,67,0,356,361,3,136,68,0,357,361,3,138,69,0,358,361,3,140,70,0,359,361, + 3,142,71,0,360,346,1,0,0,0,360,347,1,0,0,0,360,348,1,0,0,0,360,349,1,0, + 0,0,360,350,1,0,0,0,360,351,1,0,0,0,360,352,1,0,0,0,360,353,1,0,0,0,360, + 354,1,0,0,0,360,355,1,0,0,0,360,356,1,0,0,0,360,357,1,0,0,0,360,358,1,0, + 0,0,360,359,1,0,0,0,361,11,1,0,0,0,362,365,3,156,78,0,363,365,3,144,72, + 0,364,362,1,0,0,0,364,363,1,0,0,0,365,13,1,0,0,0,366,367,7,0,0,0,367,368, + 3,268,134,0,368,15,1,0,0,0,369,373,5,85,0,0,370,374,3,18,9,0,371,372,5, + 86,0,0,372,374,5,37,0,0,373,370,1,0,0,0,373,371,1,0,0,0,373,374,1,0,0,0, + 374,378,1,0,0,0,375,379,3,12,6,0,376,379,3,146,73,0,377,379,3,154,77,0, + 378,375,1,0,0,0,378,376,1,0,0,0,378,377,1,0,0,0,379,17,1,0,0,0,380,385, + 3,20,10,0,381,382,5,306,0,0,382,384,3,20,10,0,383,381,1,0,0,0,384,387,1, + 0,0,0,385,383,1,0,0,0,385,386,1,0,0,0,386,19,1,0,0,0,387,385,1,0,0,0,388, + 389,7,1,0,0,389,21,1,0,0,0,390,392,5,99,0,0,391,393,5,239,0,0,392,391,1, + 0,0,0,392,393,1,0,0,0,393,394,1,0,0,0,394,397,3,268,134,0,395,397,3,24, + 12,0,396,390,1,0,0,0,396,395,1,0,0,0,397,23,1,0,0,0,398,399,5,99,0,0,399, + 400,5,101,0,0,400,405,3,268,134,0,401,402,5,306,0,0,402,404,3,268,134,0, + 403,401,1,0,0,0,404,407,1,0,0,0,405,403,1,0,0,0,405,406,1,0,0,0,406,25, + 1,0,0,0,407,405,1,0,0,0,408,409,5,95,0,0,409,444,7,2,0,0,410,411,5,95,0, + 0,411,412,5,66,0,0,412,444,7,3,0,0,413,414,5,95,0,0,414,417,5,96,0,0,415, + 416,7,4,0,0,416,418,3,268,134,0,417,415,1,0,0,0,417,418,1,0,0,0,418,420, + 1,0,0,0,419,421,3,218,109,0,420,419,1,0,0,0,420,421,1,0,0,0,421,444,1,0, + 0,0,422,423,5,95,0,0,423,424,5,97,0,0,424,425,7,4,0,0,425,427,3,268,134, + 0,426,428,3,218,109,0,427,426,1,0,0,0,427,428,1,0,0,0,428,444,1,0,0,0,429, + 430,5,95,0,0,430,431,5,73,0,0,431,432,7,5,0,0,432,444,3,268,134,0,433,435, + 5,95,0,0,434,436,5,53,0,0,435,434,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0, + 0,437,444,5,103,0,0,438,440,5,95,0,0,439,441,5,52,0,0,440,439,1,0,0,0,440, + 441,1,0,0,0,441,442,1,0,0,0,442,444,5,101,0,0,443,408,1,0,0,0,443,410,1, + 0,0,0,443,413,1,0,0,0,443,422,1,0,0,0,443,429,1,0,0,0,443,433,1,0,0,0,443, + 438,1,0,0,0,444,27,1,0,0,0,445,446,5,212,0,0,446,447,5,100,0,0,447,450, + 3,268,134,0,448,449,5,70,0,0,449,451,3,278,139,0,450,448,1,0,0,0,450,451, + 1,0,0,0,451,29,1,0,0,0,452,453,5,213,0,0,453,454,5,100,0,0,454,455,3,268, + 134,0,455,31,1,0,0,0,456,458,5,116,0,0,457,459,3,280,140,0,458,457,1,0, + 0,0,458,459,1,0,0,0,459,33,1,0,0,0,460,462,5,117,0,0,461,463,3,282,141, + 0,462,461,1,0,0,0,462,463,1,0,0,0,463,35,1,0,0,0,464,465,7,6,0,0,465,466, + 5,244,0,0,466,467,3,112,56,0,467,37,1,0,0,0,468,469,5,6,0,0,469,470,5,244, + 0,0,470,471,5,70,0,0,471,474,5,329,0,0,472,473,5,7,0,0,473,475,3,268,134, + 0,474,472,1,0,0,0,474,475,1,0,0,0,475,508,1,0,0,0,476,477,5,6,0,0,477,478, + 5,245,0,0,478,479,5,70,0,0,479,482,5,329,0,0,480,481,5,7,0,0,481,483,3, + 268,134,0,482,480,1,0,0,0,482,483,1,0,0,0,483,486,1,0,0,0,484,485,5,113, + 0,0,485,487,3,268,134,0,486,484,1,0,0,0,486,487,1,0,0,0,487,508,1,0,0,0, + 488,489,5,6,0,0,489,490,7,7,0,0,490,491,5,70,0,0,491,492,5,329,0,0,492, + 493,5,113,0,0,493,508,3,268,134,0,494,495,5,6,0,0,495,496,5,251,0,0,496, + 508,5,329,0,0,497,498,5,6,0,0,498,499,5,252,0,0,499,500,5,245,0,0,500,501, + 5,70,0,0,501,502,5,329,0,0,502,503,5,113,0,0,503,504,3,268,134,0,504,505, + 5,258,0,0,505,506,3,268,134,0,506,508,1,0,0,0,507,468,1,0,0,0,507,476,1, + 0,0,0,507,488,1,0,0,0,507,494,1,0,0,0,507,497,1,0,0,0,508,39,1,0,0,0,509, + 512,3,42,21,0,510,512,3,44,22,0,511,509,1,0,0,0,511,510,1,0,0,0,512,41, + 1,0,0,0,513,515,5,73,0,0,514,516,5,166,0,0,515,514,1,0,0,0,515,516,1,0, + 0,0,516,517,1,0,0,0,517,519,5,74,0,0,518,520,3,274,137,0,519,518,1,0,0, + 0,519,520,1,0,0,0,520,521,1,0,0,0,521,522,3,98,49,0,522,523,5,304,0,0,523, + 528,3,46,23,0,524,525,5,306,0,0,525,527,3,46,23,0,526,524,1,0,0,0,527,530, + 1,0,0,0,528,526,1,0,0,0,528,529,1,0,0,0,529,533,1,0,0,0,530,528,1,0,0,0, + 531,532,5,306,0,0,532,534,3,80,40,0,533,531,1,0,0,0,533,534,1,0,0,0,534, + 537,1,0,0,0,535,536,5,306,0,0,536,538,3,82,41,0,537,535,1,0,0,0,537,538, + 1,0,0,0,538,541,1,0,0,0,539,540,5,306,0,0,540,542,3,86,43,0,541,539,1,0, + 0,0,541,542,1,0,0,0,542,543,1,0,0,0,543,545,5,305,0,0,544,546,3,70,35,0, + 545,544,1,0,0,0,545,546,1,0,0,0,546,548,1,0,0,0,547,549,3,88,44,0,548,547, + 1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0,550,552,3,272,136,0,551,553,3,96, + 48,0,552,551,1,0,0,0,552,553,1,0,0,0,553,43,1,0,0,0,554,555,5,73,0,0,555, + 557,5,74,0,0,556,558,3,274,137,0,557,556,1,0,0,0,557,558,1,0,0,0,558,559, + 1,0,0,0,559,560,3,98,49,0,560,563,3,272,136,0,561,562,5,7,0,0,562,564,3, + 156,78,0,563,561,1,0,0,0,563,564,1,0,0,0,564,45,1,0,0,0,565,569,3,48,24, + 0,566,569,3,72,36,0,567,569,3,76,38,0,568,565,1,0,0,0,568,566,1,0,0,0,568, + 567,1,0,0,0,569,47,1,0,0,0,570,571,3,50,25,0,571,573,3,54,27,0,572,574, + 3,68,34,0,573,572,1,0,0,0,573,574,1,0,0,0,574,576,1,0,0,0,575,577,3,70, + 35,0,576,575,1,0,0,0,576,577,1,0,0,0,577,49,1,0,0,0,578,581,3,270,135,0, + 579,581,3,212,106,0,580,578,1,0,0,0,580,579,1,0,0,0,581,51,1,0,0,0,582, + 583,5,304,0,0,583,588,3,50,25,0,584,585,5,306,0,0,585,587,3,50,25,0,586, + 584,1,0,0,0,587,590,1,0,0,0,588,586,1,0,0,0,588,589,1,0,0,0,589,591,1,0, + 0,0,590,588,1,0,0,0,591,592,5,305,0,0,592,53,1,0,0,0,593,631,7,8,0,0,594, + 596,7,9,0,0,595,597,3,56,28,0,596,595,1,0,0,0,596,597,1,0,0,0,597,631,1, + 0,0,0,598,600,5,285,0,0,599,601,3,56,28,0,600,599,1,0,0,0,600,601,1,0,0, + 0,601,608,1,0,0,0,602,604,7,10,0,0,603,605,5,224,0,0,604,603,1,0,0,0,604, + 605,1,0,0,0,605,606,1,0,0,0,606,607,5,284,0,0,607,609,5,264,0,0,608,602, + 1,0,0,0,608,609,1,0,0,0,609,631,1,0,0,0,610,612,7,11,0,0,611,613,3,58,29, + 0,612,611,1,0,0,0,612,613,1,0,0,0,613,631,1,0,0,0,614,616,7,12,0,0,615, + 617,3,62,31,0,616,615,1,0,0,0,616,617,1,0,0,0,617,631,1,0,0,0,618,620,5, + 267,0,0,619,621,3,64,32,0,620,619,1,0,0,0,620,621,1,0,0,0,621,631,1,0,0, + 0,622,624,5,290,0,0,623,625,3,66,33,0,624,623,1,0,0,0,624,625,1,0,0,0,625, + 631,1,0,0,0,626,628,5,289,0,0,627,629,3,60,30,0,628,627,1,0,0,0,628,629, + 1,0,0,0,629,631,1,0,0,0,630,593,1,0,0,0,630,594,1,0,0,0,630,598,1,0,0,0, + 630,610,1,0,0,0,630,614,1,0,0,0,630,618,1,0,0,0,630,622,1,0,0,0,630,626, + 1,0,0,0,631,55,1,0,0,0,632,633,5,304,0,0,633,634,3,302,151,0,634,635,5, + 305,0,0,635,57,1,0,0,0,636,637,5,304,0,0,637,640,3,302,151,0,638,639,5, + 306,0,0,639,641,3,302,151,0,640,638,1,0,0,0,640,641,1,0,0,0,641,642,1,0, + 0,0,642,643,5,305,0,0,643,59,1,0,0,0,644,645,5,304,0,0,645,648,3,300,150, + 0,646,647,5,306,0,0,647,649,3,300,150,0,648,646,1,0,0,0,648,649,1,0,0,0, + 649,650,1,0,0,0,650,651,5,305,0,0,651,61,1,0,0,0,652,653,5,295,0,0,653, + 654,3,54,27,0,654,655,5,294,0,0,655,63,1,0,0,0,656,657,5,295,0,0,657,658, + 3,54,27,0,658,659,5,306,0,0,659,660,3,54,27,0,660,661,1,0,0,0,661,662,5, + 294,0,0,662,65,1,0,0,0,663,664,5,295,0,0,664,665,3,50,25,0,665,672,3,54, + 27,0,666,667,5,306,0,0,667,668,3,50,25,0,668,669,3,54,27,0,669,671,1,0, + 0,0,670,666,1,0,0,0,671,674,1,0,0,0,672,670,1,0,0,0,672,673,1,0,0,0,673, + 675,1,0,0,0,674,672,1,0,0,0,675,676,5,294,0,0,676,67,1,0,0,0,677,678,5, + 185,0,0,678,680,3,84,42,0,679,677,1,0,0,0,679,680,1,0,0,0,680,681,1,0,0, + 0,681,682,5,256,0,0,682,683,5,258,0,0,683,684,5,25,0,0,684,685,5,261,0, + 0,685,69,1,0,0,0,686,687,5,115,0,0,687,688,5,323,0,0,688,71,1,0,0,0,689, + 690,3,50,25,0,690,691,3,54,27,0,691,694,5,262,0,0,692,693,5,5,0,0,693,695, + 3,74,37,0,694,692,1,0,0,0,694,695,1,0,0,0,695,697,1,0,0,0,696,698,5,263, + 0,0,697,696,1,0,0,0,697,698,1,0,0,0,698,73,1,0,0,0,699,700,5,323,0,0,700, + 75,1,0,0,0,701,702,3,50,25,0,702,703,5,7,0,0,703,705,3,78,39,0,704,706, + 3,70,35,0,705,704,1,0,0,0,705,706,1,0,0,0,706,77,1,0,0,0,707,708,3,212, + 106,0,708,79,1,0,0,0,709,710,5,226,0,0,710,711,5,37,0,0,711,712,3,212,106, + 0,712,713,5,7,0,0,713,714,3,212,106,0,714,81,1,0,0,0,715,716,5,185,0,0, + 716,718,3,84,42,0,717,715,1,0,0,0,717,718,1,0,0,0,718,719,1,0,0,0,719,720, + 5,256,0,0,720,721,5,258,0,0,721,722,3,52,26,0,722,723,5,25,0,0,723,724, + 5,261,0,0,724,83,1,0,0,0,725,726,3,256,128,0,726,85,1,0,0,0,727,728,5,259, + 0,0,728,729,5,37,0,0,729,730,5,260,0,0,730,87,1,0,0,0,731,732,5,200,0,0, + 732,733,5,13,0,0,733,734,3,90,45,0,734,89,1,0,0,0,735,736,5,304,0,0,736, + 741,3,92,46,0,737,738,5,306,0,0,738,740,3,92,46,0,739,737,1,0,0,0,740,743, + 1,0,0,0,741,739,1,0,0,0,741,742,1,0,0,0,742,744,1,0,0,0,743,741,1,0,0,0, + 744,745,5,305,0,0,745,91,1,0,0,0,746,760,3,230,115,0,747,748,3,256,128, + 0,748,749,5,304,0,0,749,754,3,94,47,0,750,751,5,306,0,0,751,753,3,94,47, + 0,752,750,1,0,0,0,753,756,1,0,0,0,754,752,1,0,0,0,754,755,1,0,0,0,755,757, + 1,0,0,0,756,754,1,0,0,0,757,758,5,305,0,0,758,760,1,0,0,0,759,746,1,0,0, + 0,759,747,1,0,0,0,760,93,1,0,0,0,761,764,3,230,115,0,762,764,3,298,149, + 0,763,761,1,0,0,0,763,762,1,0,0,0,764,95,1,0,0,0,765,766,5,29,0,0,766,775, + 3,98,49,0,767,771,5,304,0,0,768,770,3,100,50,0,769,768,1,0,0,0,770,773, + 1,0,0,0,771,769,1,0,0,0,771,772,1,0,0,0,772,774,1,0,0,0,773,771,1,0,0,0, + 774,776,5,305,0,0,775,767,1,0,0,0,775,776,1,0,0,0,776,97,1,0,0,0,777,778, + 3,268,134,0,778,99,1,0,0,0,779,780,7,13,0,0,780,784,7,14,0,0,781,782,7, + 15,0,0,782,784,7,16,0,0,783,779,1,0,0,0,783,781,1,0,0,0,784,101,1,0,0,0, + 785,786,5,73,0,0,786,787,5,239,0,0,787,788,3,268,134,0,788,789,3,272,136, + 0,789,103,1,0,0,0,790,791,5,73,0,0,791,793,5,192,0,0,792,794,3,274,137, + 0,793,792,1,0,0,0,793,794,1,0,0,0,794,795,1,0,0,0,795,797,3,268,134,0,796, + 798,3,70,35,0,797,796,1,0,0,0,797,798,1,0,0,0,798,799,1,0,0,0,799,800,3, + 272,136,0,800,105,1,0,0,0,801,803,5,73,0,0,802,804,5,166,0,0,803,802,1, + 0,0,0,803,804,1,0,0,0,804,805,1,0,0,0,805,807,5,76,0,0,806,808,3,274,137, + 0,807,806,1,0,0,0,807,808,1,0,0,0,808,809,1,0,0,0,809,811,3,268,134,0,810, + 812,3,52,26,0,811,810,1,0,0,0,811,812,1,0,0,0,812,814,1,0,0,0,813,815,3, + 70,35,0,814,813,1,0,0,0,814,815,1,0,0,0,815,816,1,0,0,0,816,817,5,7,0,0, + 817,818,3,156,78,0,818,107,1,0,0,0,819,823,5,73,0,0,820,824,5,166,0,0,821, + 822,5,166,0,0,822,824,5,232,0,0,823,820,1,0,0,0,823,821,1,0,0,0,823,824, + 1,0,0,0,824,825,1,0,0,0,825,827,5,157,0,0,826,828,3,274,137,0,827,826,1, + 0,0,0,827,828,1,0,0,0,828,829,1,0,0,0,829,830,3,268,134,0,830,831,5,7,0, + 0,831,834,3,256,128,0,832,833,5,240,0,0,833,835,7,17,0,0,834,832,1,0,0, + 0,834,835,1,0,0,0,835,837,1,0,0,0,836,838,3,110,55,0,837,836,1,0,0,0,837, + 838,1,0,0,0,838,109,1,0,0,0,839,840,5,143,0,0,840,841,5,244,0,0,841,847, + 3,112,56,0,842,843,5,306,0,0,843,844,5,244,0,0,844,846,3,112,56,0,845,842, + 1,0,0,0,846,849,1,0,0,0,847,845,1,0,0,0,847,848,1,0,0,0,848,111,1,0,0,0, + 849,847,1,0,0,0,850,851,5,323,0,0,851,113,1,0,0,0,852,853,5,112,0,0,853, + 855,5,74,0,0,854,856,3,276,138,0,855,854,1,0,0,0,855,856,1,0,0,0,856,857, + 1,0,0,0,857,863,3,268,134,0,858,864,3,116,58,0,859,864,3,118,59,0,860,864, + 3,120,60,0,861,864,3,122,61,0,862,864,3,124,62,0,863,858,1,0,0,0,863,859, + 1,0,0,0,863,860,1,0,0,0,863,861,1,0,0,0,863,862,1,0,0,0,864,115,1,0,0,0, + 865,867,5,113,0,0,866,868,3,268,134,0,867,866,1,0,0,0,867,868,1,0,0,0,868, + 869,1,0,0,0,869,870,5,109,0,0,870,871,3,268,134,0,871,117,1,0,0,0,872,873, + 5,116,0,0,873,874,3,278,139,0,874,119,1,0,0,0,875,876,5,6,0,0,876,877,5, + 185,0,0,877,878,3,84,42,0,878,879,5,256,0,0,879,880,5,258,0,0,880,882,3, + 52,26,0,881,883,3,126,63,0,882,881,1,0,0,0,882,883,1,0,0,0,883,121,1,0, + 0,0,884,885,5,104,0,0,885,886,5,185,0,0,886,887,3,84,42,0,887,123,1,0,0, + 0,888,889,5,6,0,0,889,890,5,257,0,0,890,891,3,52,26,0,891,125,1,0,0,0,892, + 893,5,25,0,0,893,894,5,261,0,0,894,127,1,0,0,0,895,896,5,112,0,0,896,897, + 5,76,0,0,897,901,3,268,134,0,898,902,3,116,58,0,899,900,5,7,0,0,900,902, + 3,156,78,0,901,898,1,0,0,0,901,899,1,0,0,0,902,129,1,0,0,0,903,904,5,112, + 0,0,904,905,5,192,0,0,905,906,3,268,134,0,906,907,3,118,59,0,907,131,1, + 0,0,0,908,912,5,112,0,0,909,913,5,166,0,0,910,911,5,166,0,0,911,913,5,232, + 0,0,912,909,1,0,0,0,912,910,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914, + 916,5,157,0,0,915,917,3,276,138,0,916,915,1,0,0,0,916,917,1,0,0,0,917,918, + 1,0,0,0,918,919,3,268,134,0,919,920,5,7,0,0,920,923,3,256,128,0,921,922, + 5,240,0,0,922,924,7,17,0,0,923,921,1,0,0,0,923,924,1,0,0,0,924,133,1,0, + 0,0,925,926,5,104,0,0,926,928,5,239,0,0,927,929,3,276,138,0,928,927,1,0, + 0,0,928,929,1,0,0,0,929,930,1,0,0,0,930,931,3,268,134,0,931,135,1,0,0,0, + 932,934,5,104,0,0,933,935,5,166,0,0,934,933,1,0,0,0,934,935,1,0,0,0,935, + 936,1,0,0,0,936,938,5,74,0,0,937,939,3,276,138,0,938,937,1,0,0,0,938,939, + 1,0,0,0,939,940,1,0,0,0,940,941,3,268,134,0,941,137,1,0,0,0,942,943,5,104, + 0,0,943,945,5,192,0,0,944,946,3,276,138,0,945,944,1,0,0,0,945,946,1,0,0, + 0,946,947,1,0,0,0,947,949,3,268,134,0,948,950,7,18,0,0,949,948,1,0,0,0, + 949,950,1,0,0,0,950,139,1,0,0,0,951,953,5,104,0,0,952,954,5,166,0,0,953, + 952,1,0,0,0,953,954,1,0,0,0,954,955,1,0,0,0,955,957,5,76,0,0,956,958,3, + 276,138,0,957,956,1,0,0,0,957,958,1,0,0,0,958,959,1,0,0,0,959,960,3,268, + 134,0,960,141,1,0,0,0,961,965,5,104,0,0,962,966,5,166,0,0,963,964,5,166, + 0,0,964,966,5,232,0,0,965,962,1,0,0,0,965,963,1,0,0,0,965,966,1,0,0,0,966, + 967,1,0,0,0,967,969,5,157,0,0,968,970,3,276,138,0,969,968,1,0,0,0,969,970, + 1,0,0,0,970,971,1,0,0,0,971,972,3,268,134,0,972,143,1,0,0,0,973,975,5,78, + 0,0,974,973,1,0,0,0,974,975,1,0,0,0,975,976,1,0,0,0,976,980,3,146,73,0, + 977,978,5,78,0,0,978,980,3,154,77,0,979,974,1,0,0,0,979,977,1,0,0,0,980, + 145,1,0,0,0,981,982,5,80,0,0,982,983,7,19,0,0,983,992,3,268,134,0,984,986, + 3,148,74,0,985,984,1,0,0,0,985,986,1,0,0,0,986,988,1,0,0,0,987,989,3,52, + 26,0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1,0,0,0,990,993,3,156,78,0, + 991,993,3,150,75,0,992,985,1,0,0,0,992,991,1,0,0,0,993,147,1,0,0,0,994, + 995,5,60,0,0,995,996,3,278,139,0,996,149,1,0,0,0,997,998,5,72,0,0,998,1003, + 3,152,76,0,999,1000,5,306,0,0,1000,1002,3,152,76,0,1001,999,1,0,0,0,1002, + 1005,1,0,0,0,1003,1001,1,0,0,0,1003,1004,1,0,0,0,1004,151,1,0,0,0,1005, + 1003,1,0,0,0,1006,1007,5,304,0,0,1007,1012,3,298,149,0,1008,1009,5,306, + 0,0,1009,1011,3,298,149,0,1010,1008,1,0,0,0,1011,1014,1,0,0,0,1012,1010, + 1,0,0,0,1012,1013,1,0,0,0,1013,1015,1,0,0,0,1014,1012,1,0,0,0,1015,1016, + 5,305,0,0,1016,153,1,0,0,0,1017,1018,5,79,0,0,1018,1019,5,116,0,0,1019, + 1023,5,43,0,0,1020,1021,3,146,73,0,1021,1022,5,307,0,0,1022,1024,1,0,0, + 0,1023,1020,1,0,0,0,1024,1025,1,0,0,0,1025,1023,1,0,0,0,1025,1026,1,0,0, + 0,1026,1027,1,0,0,0,1027,1028,5,44,0,0,1028,155,1,0,0,0,1029,1030,6,78, + -1,0,1030,1061,3,158,79,0,1031,1032,5,70,0,0,1032,1037,3,160,80,0,1033, + 1034,5,306,0,0,1034,1036,3,160,80,0,1035,1033,1,0,0,0,1036,1039,1,0,0,0, + 1037,1035,1,0,0,0,1037,1038,1,0,0,0,1038,1040,1,0,0,0,1039,1037,1,0,0,0, + 1040,1041,3,156,78,5,1041,1061,1,0,0,0,1042,1043,5,304,0,0,1043,1044,3, + 156,78,0,1044,1045,5,305,0,0,1045,1061,1,0,0,0,1046,1048,3,166,83,0,1047, + 1049,3,194,97,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,1051,1,0,0,0,1050, + 1052,3,198,99,0,1051,1050,1,0,0,0,1051,1052,1,0,0,0,1052,1061,1,0,0,0,1053, + 1055,3,164,82,0,1054,1056,3,194,97,0,1055,1054,1,0,0,0,1055,1056,1,0,0, + 0,1056,1058,1,0,0,0,1057,1059,3,198,99,0,1058,1057,1,0,0,0,1058,1059,1, + 0,0,0,1059,1061,1,0,0,0,1060,1029,1,0,0,0,1060,1031,1,0,0,0,1060,1042,1, + 0,0,0,1060,1046,1,0,0,0,1060,1053,1,0,0,0,1061,1076,1,0,0,0,1062,1063,10, + 3,0,0,1063,1065,7,20,0,0,1064,1066,5,8,0,0,1065,1064,1,0,0,0,1065,1066, + 1,0,0,0,1066,1067,1,0,0,0,1067,1069,3,156,78,0,1068,1070,3,194,97,0,1069, + 1068,1,0,0,0,1069,1070,1,0,0,0,1070,1072,1,0,0,0,1071,1073,3,198,99,0,1072, + 1071,1,0,0,0,1072,1073,1,0,0,0,1073,1075,1,0,0,0,1074,1062,1,0,0,0,1075, + 1078,1,0,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,157,1,0,0,0,1078, + 1076,1,0,0,0,1079,1080,5,72,0,0,1080,1085,3,212,106,0,1081,1082,5,306,0, + 0,1082,1084,3,212,106,0,1083,1081,1,0,0,0,1084,1087,1,0,0,0,1085,1083,1, + 0,0,0,1085,1086,1,0,0,0,1086,159,1,0,0,0,1087,1085,1,0,0,0,1088,1100,3, + 162,81,0,1089,1090,5,304,0,0,1090,1095,3,50,25,0,1091,1092,5,306,0,0,1092, + 1094,3,50,25,0,1093,1091,1,0,0,0,1094,1097,1,0,0,0,1095,1093,1,0,0,0,1095, + 1096,1,0,0,0,1096,1098,1,0,0,0,1097,1095,1,0,0,0,1098,1099,5,305,0,0,1099, + 1101,1,0,0,0,1100,1089,1,0,0,0,1100,1101,1,0,0,0,1101,1102,1,0,0,0,1102, + 1103,5,7,0,0,1103,1104,5,304,0,0,1104,1105,3,156,78,0,1105,1106,5,305,0, + 0,1106,161,1,0,0,0,1107,1108,3,256,128,0,1108,163,1,0,0,0,1109,1110,3,166, + 83,0,1110,1112,3,170,85,0,1111,1113,3,186,93,0,1112,1111,1,0,0,0,1112,1113, + 1,0,0,0,1113,1115,1,0,0,0,1114,1116,3,188,94,0,1115,1114,1,0,0,0,1115,1116, + 1,0,0,0,1116,1118,1,0,0,0,1117,1119,3,192,96,0,1118,1117,1,0,0,0,1118,1119, + 1,0,0,0,1119,1121,1,0,0,0,1120,1122,3,200,100,0,1121,1120,1,0,0,0,1121, + 1122,1,0,0,0,1122,165,1,0,0,0,1123,1125,5,4,0,0,1124,1126,3,306,153,0,1125, + 1124,1,0,0,0,1125,1126,1,0,0,0,1126,1136,1,0,0,0,1127,1137,5,313,0,0,1128, + 1133,3,168,84,0,1129,1130,5,306,0,0,1130,1132,3,168,84,0,1131,1129,1,0, + 0,0,1132,1135,1,0,0,0,1133,1131,1,0,0,0,1133,1134,1,0,0,0,1134,1137,1,0, + 0,0,1135,1133,1,0,0,0,1136,1127,1,0,0,0,1136,1128,1,0,0,0,1137,167,1,0, + 0,0,1138,1143,3,212,106,0,1139,1141,5,7,0,0,1140,1139,1,0,0,0,1140,1141, + 1,0,0,0,1141,1142,1,0,0,0,1142,1144,3,212,106,0,1143,1140,1,0,0,0,1143, + 1144,1,0,0,0,1144,169,1,0,0,0,1145,1146,5,5,0,0,1146,1147,3,172,86,0,1147, + 171,1,0,0,0,1148,1149,6,86,-1,0,1149,1154,3,174,87,0,1150,1151,5,306,0, + 0,1151,1153,3,174,87,0,1152,1150,1,0,0,0,1153,1156,1,0,0,0,1154,1152,1, + 0,0,0,1154,1155,1,0,0,0,1155,1178,1,0,0,0,1156,1154,1,0,0,0,1157,1158,10, + 1,0,0,1158,1159,5,46,0,0,1159,1160,5,45,0,0,1160,1177,3,172,86,2,1161,1163, + 10,2,0,0,1162,1164,5,54,0,0,1163,1162,1,0,0,0,1163,1164,1,0,0,0,1164,1166, + 1,0,0,0,1165,1167,7,21,0,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1169, + 1,0,0,0,1168,1170,5,47,0,0,1169,1168,1,0,0,0,1169,1170,1,0,0,0,1170,1171, + 1,0,0,0,1171,1172,5,45,0,0,1172,1174,3,172,86,0,1173,1175,3,184,92,0,1174, + 1173,1,0,0,0,1174,1175,1,0,0,0,1175,1177,1,0,0,0,1176,1157,1,0,0,0,1176, + 1161,1,0,0,0,1177,1180,1,0,0,0,1178,1176,1,0,0,0,1178,1179,1,0,0,0,1179, + 173,1,0,0,0,1180,1178,1,0,0,0,1181,1183,3,176,88,0,1182,1184,3,246,123, + 0,1183,1182,1,0,0,0,1183,1184,1,0,0,0,1184,175,1,0,0,0,1185,1187,5,74,0, + 0,1186,1185,1,0,0,0,1186,1187,1,0,0,0,1187,1188,1,0,0,0,1188,1190,3,178, + 89,0,1189,1191,3,180,90,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1196, + 1,0,0,0,1192,1194,5,7,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0,1194,1195, + 1,0,0,0,1195,1197,3,228,114,0,1196,1193,1,0,0,0,1196,1197,1,0,0,0,1197, + 1227,1,0,0,0,1198,1199,5,57,0,0,1199,1200,5,74,0,0,1200,1201,5,304,0,0, + 1201,1202,3,224,112,0,1202,1203,5,304,0,0,1203,1208,3,212,106,0,1204,1205, + 5,306,0,0,1205,1207,3,212,106,0,1206,1204,1,0,0,0,1207,1210,1,0,0,0,1208, + 1206,1,0,0,0,1208,1209,1,0,0,0,1209,1211,1,0,0,0,1210,1208,1,0,0,0,1211, + 1212,5,305,0,0,1212,1213,5,305,0,0,1213,1227,1,0,0,0,1214,1216,5,57,0,0, + 1215,1214,1,0,0,0,1215,1216,1,0,0,0,1216,1217,1,0,0,0,1217,1218,5,304,0, + 0,1218,1219,3,156,78,0,1219,1220,5,305,0,0,1220,1227,1,0,0,0,1221,1222, + 5,227,0,0,1222,1223,5,304,0,0,1223,1224,3,212,106,0,1224,1225,5,305,0,0, + 1225,1227,1,0,0,0,1226,1186,1,0,0,0,1226,1198,1,0,0,0,1226,1215,1,0,0,0, + 1226,1221,1,0,0,0,1227,177,1,0,0,0,1228,1229,3,268,134,0,1229,179,1,0,0, + 0,1230,1231,5,37,0,0,1231,1232,5,260,0,0,1232,1233,5,7,0,0,1233,1234,5, + 136,0,0,1234,1235,3,182,91,0,1235,181,1,0,0,0,1236,1237,3,212,106,0,1237, + 183,1,0,0,0,1238,1239,5,55,0,0,1239,1253,3,214,107,0,1240,1241,5,143,0, + 0,1241,1242,5,304,0,0,1242,1247,3,268,134,0,1243,1244,5,306,0,0,1244,1246, + 3,268,134,0,1245,1243,1,0,0,0,1246,1249,1,0,0,0,1247,1245,1,0,0,0,1247, + 1248,1,0,0,0,1248,1250,1,0,0,0,1249,1247,1,0,0,0,1250,1251,5,305,0,0,1251, + 1253,1,0,0,0,1252,1238,1,0,0,0,1252,1240,1,0,0,0,1253,185,1,0,0,0,1254, + 1255,5,11,0,0,1255,1256,3,214,107,0,1256,187,1,0,0,0,1257,1258,5,12,0,0, + 1258,1259,5,13,0,0,1259,1264,3,190,95,0,1260,1261,5,306,0,0,1261,1263,3, + 190,95,0,1262,1260,1,0,0,0,1263,1266,1,0,0,0,1264,1262,1,0,0,0,1264,1265, + 1,0,0,0,1265,189,1,0,0,0,1266,1264,1,0,0,0,1267,1319,3,212,106,0,1268,1269, + 5,304,0,0,1269,1319,5,305,0,0,1270,1271,5,304,0,0,1271,1276,3,212,106,0, + 1272,1273,5,306,0,0,1273,1275,3,212,106,0,1274,1272,1,0,0,0,1275,1278,1, + 0,0,0,1276,1274,1,0,0,0,1276,1277,1,0,0,0,1277,1279,1,0,0,0,1278,1276,1, + 0,0,0,1279,1280,5,305,0,0,1280,1319,1,0,0,0,1281,1282,5,16,0,0,1282,1283, + 5,304,0,0,1283,1288,3,212,106,0,1284,1285,5,306,0,0,1285,1287,3,212,106, + 0,1286,1284,1,0,0,0,1287,1290,1,0,0,0,1288,1286,1,0,0,0,1288,1289,1,0,0, + 0,1289,1291,1,0,0,0,1290,1288,1,0,0,0,1291,1292,5,305,0,0,1292,1319,1,0, + 0,0,1293,1294,5,17,0,0,1294,1295,5,304,0,0,1295,1300,3,212,106,0,1296,1297, + 5,306,0,0,1297,1299,3,212,106,0,1298,1296,1,0,0,0,1299,1302,1,0,0,0,1300, + 1298,1,0,0,0,1300,1301,1,0,0,0,1301,1303,1,0,0,0,1302,1300,1,0,0,0,1303, + 1304,5,305,0,0,1304,1319,1,0,0,0,1305,1306,5,14,0,0,1306,1307,5,15,0,0, + 1307,1308,5,304,0,0,1308,1313,3,190,95,0,1309,1310,5,306,0,0,1310,1312, + 3,190,95,0,1311,1309,1,0,0,0,1312,1315,1,0,0,0,1313,1311,1,0,0,0,1313,1314, + 1,0,0,0,1314,1316,1,0,0,0,1315,1313,1,0,0,0,1316,1317,5,305,0,0,1317,1319, + 1,0,0,0,1318,1267,1,0,0,0,1318,1268,1,0,0,0,1318,1270,1,0,0,0,1318,1281, + 1,0,0,0,1318,1293,1,0,0,0,1318,1305,1,0,0,0,1319,191,1,0,0,0,1320,1321, + 5,19,0,0,1321,1322,3,214,107,0,1322,193,1,0,0,0,1323,1324,5,18,0,0,1324, + 1325,5,13,0,0,1325,1330,3,196,98,0,1326,1327,5,306,0,0,1327,1329,3,196, + 98,0,1328,1326,1,0,0,0,1329,1332,1,0,0,0,1330,1328,1,0,0,0,1330,1331,1, + 0,0,0,1331,195,1,0,0,0,1332,1330,1,0,0,0,1333,1335,3,212,106,0,1334,1336, + 7,22,0,0,1335,1334,1,0,0,0,1335,1336,1,0,0,0,1336,197,1,0,0,0,1337,1340, + 5,20,0,0,1338,1341,5,8,0,0,1339,1341,3,212,106,0,1340,1338,1,0,0,0,1340, + 1339,1,0,0,0,1341,199,1,0,0,0,1342,1343,5,58,0,0,1343,1348,3,202,101,0, + 1344,1345,5,306,0,0,1345,1347,3,202,101,0,1346,1344,1,0,0,0,1347,1350,1, + 0,0,0,1348,1346,1,0,0,0,1348,1349,1,0,0,0,1349,201,1,0,0,0,1350,1348,1, + 0,0,0,1351,1352,3,248,124,0,1352,1353,5,7,0,0,1353,1354,3,204,102,0,1354, + 203,1,0,0,0,1355,1357,3,248,124,0,1356,1355,1,0,0,0,1356,1357,1,0,0,0,1357, + 1358,1,0,0,0,1358,1369,5,304,0,0,1359,1360,5,18,0,0,1360,1361,5,13,0,0, + 1361,1366,3,206,103,0,1362,1363,5,306,0,0,1363,1365,3,206,103,0,1364,1362, + 1,0,0,0,1365,1368,1,0,0,0,1366,1364,1,0,0,0,1366,1367,1,0,0,0,1367,1370, + 1,0,0,0,1368,1366,1,0,0,0,1369,1359,1,0,0,0,1369,1370,1,0,0,0,1370,1381, + 1,0,0,0,1371,1372,5,60,0,0,1372,1373,5,13,0,0,1373,1378,3,212,106,0,1374, + 1375,5,306,0,0,1375,1377,3,212,106,0,1376,1374,1,0,0,0,1377,1380,1,0,0, + 0,1378,1376,1,0,0,0,1378,1379,1,0,0,0,1379,1382,1,0,0,0,1380,1378,1,0,0, + 0,1381,1371,1,0,0,0,1381,1382,1,0,0,0,1382,1384,1,0,0,0,1383,1385,3,208, + 104,0,1384,1383,1,0,0,0,1384,1385,1,0,0,0,1385,1386,1,0,0,0,1386,1387,5, + 305,0,0,1387,205,1,0,0,0,1388,1390,3,212,106,0,1389,1391,7,22,0,0,1390, + 1389,1,0,0,0,1390,1391,1,0,0,0,1391,1394,1,0,0,0,1392,1393,5,34,0,0,1393, + 1395,7,23,0,0,1394,1392,1,0,0,0,1394,1395,1,0,0,0,1395,207,1,0,0,0,1396, + 1397,5,61,0,0,1397,1401,3,210,105,0,1398,1399,5,62,0,0,1399,1401,3,210, + 105,0,1400,1396,1,0,0,0,1400,1398,1,0,0,0,1401,209,1,0,0,0,1402,1403,3, + 212,106,0,1403,1404,5,64,0,0,1404,211,1,0,0,0,1405,1406,3,214,107,0,1406, + 213,1,0,0,0,1407,1408,6,107,-1,0,1408,1409,5,25,0,0,1409,1420,3,214,107, + 5,1410,1411,5,27,0,0,1411,1412,5,304,0,0,1412,1413,3,156,78,0,1413,1414, + 5,305,0,0,1414,1420,1,0,0,0,1415,1417,3,220,110,0,1416,1418,3,216,108,0, + 1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418,1420,1,0,0,0,1419,1407,1,0,0,0, + 1419,1410,1,0,0,0,1419,1415,1,0,0,0,1420,1429,1,0,0,0,1421,1422,10,2,0, + 0,1422,1423,5,23,0,0,1423,1428,3,214,107,3,1424,1425,10,1,0,0,1425,1426, + 5,22,0,0,1426,1428,3,214,107,2,1427,1421,1,0,0,0,1427,1424,1,0,0,0,1428, + 1431,1,0,0,0,1429,1427,1,0,0,0,1429,1430,1,0,0,0,1430,215,1,0,0,0,1431, + 1429,1,0,0,0,1432,1434,5,25,0,0,1433,1432,1,0,0,0,1433,1434,1,0,0,0,1434, + 1435,1,0,0,0,1435,1436,5,28,0,0,1436,1437,3,220,110,0,1437,1438,5,23,0, + 0,1438,1439,3,220,110,0,1439,1516,1,0,0,0,1440,1442,5,25,0,0,1441,1440, + 1,0,0,0,1441,1442,1,0,0,0,1442,1443,1,0,0,0,1443,1444,5,24,0,0,1444,1445, + 5,304,0,0,1445,1450,3,212,106,0,1446,1447,5,306,0,0,1447,1449,3,212,106, + 0,1448,1446,1,0,0,0,1449,1452,1,0,0,0,1450,1448,1,0,0,0,1450,1451,1,0,0, + 0,1451,1453,1,0,0,0,1452,1450,1,0,0,0,1453,1454,5,305,0,0,1454,1516,1,0, + 0,0,1455,1457,5,25,0,0,1456,1455,1,0,0,0,1456,1457,1,0,0,0,1457,1458,1, + 0,0,0,1458,1459,5,24,0,0,1459,1460,5,304,0,0,1460,1461,3,156,78,0,1461, + 1462,5,305,0,0,1462,1516,1,0,0,0,1463,1464,5,27,0,0,1464,1465,5,304,0,0, + 1465,1466,3,156,78,0,1466,1467,5,305,0,0,1467,1516,1,0,0,0,1468,1470,5, + 25,0,0,1469,1468,1,0,0,0,1469,1470,1,0,0,0,1470,1471,1,0,0,0,1471,1472, + 5,30,0,0,1472,1516,3,220,110,0,1473,1475,5,25,0,0,1474,1473,1,0,0,0,1474, + 1475,1,0,0,0,1475,1476,1,0,0,0,1476,1477,5,29,0,0,1477,1491,7,24,0,0,1478, + 1479,5,304,0,0,1479,1492,5,305,0,0,1480,1481,5,304,0,0,1481,1486,3,212, + 106,0,1482,1483,5,306,0,0,1483,1485,3,212,106,0,1484,1482,1,0,0,0,1485, + 1488,1,0,0,0,1486,1484,1,0,0,0,1486,1487,1,0,0,0,1487,1489,1,0,0,0,1488, + 1486,1,0,0,0,1489,1490,5,305,0,0,1490,1492,1,0,0,0,1491,1478,1,0,0,0,1491, + 1480,1,0,0,0,1492,1516,1,0,0,0,1493,1495,5,25,0,0,1494,1493,1,0,0,0,1494, + 1495,1,0,0,0,1495,1496,1,0,0,0,1496,1497,5,29,0,0,1497,1516,3,220,110,0, + 1498,1500,5,31,0,0,1499,1501,5,25,0,0,1500,1499,1,0,0,0,1500,1501,1,0,0, + 0,1501,1502,1,0,0,0,1502,1516,5,291,0,0,1503,1505,5,31,0,0,1504,1506,5, + 25,0,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507,1516, + 7,25,0,0,1508,1510,5,31,0,0,1509,1511,5,25,0,0,1510,1509,1,0,0,0,1510,1511, + 1,0,0,0,1511,1512,1,0,0,0,1512,1513,5,10,0,0,1513,1514,5,5,0,0,1514,1516, + 3,220,110,0,1515,1433,1,0,0,0,1515,1441,1,0,0,0,1515,1456,1,0,0,0,1515, + 1463,1,0,0,0,1515,1469,1,0,0,0,1515,1474,1,0,0,0,1515,1494,1,0,0,0,1515, + 1498,1,0,0,0,1515,1503,1,0,0,0,1515,1508,1,0,0,0,1516,217,1,0,0,0,1517, + 1519,5,25,0,0,1518,1517,1,0,0,0,1518,1519,1,0,0,0,1519,1520,1,0,0,0,1520, + 1521,5,29,0,0,1521,1535,7,24,0,0,1522,1523,5,304,0,0,1523,1536,5,305,0, + 0,1524,1525,5,304,0,0,1525,1530,3,212,106,0,1526,1527,5,306,0,0,1527,1529, + 3,212,106,0,1528,1526,1,0,0,0,1529,1532,1,0,0,0,1530,1528,1,0,0,0,1530, + 1531,1,0,0,0,1531,1533,1,0,0,0,1532,1530,1,0,0,0,1533,1534,5,305,0,0,1534, + 1536,1,0,0,0,1535,1522,1,0,0,0,1535,1524,1,0,0,0,1536,1543,1,0,0,0,1537, + 1539,5,25,0,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539,1540,1,0,0,0,1540, + 1541,5,29,0,0,1541,1543,3,220,110,0,1542,1518,1,0,0,0,1542,1538,1,0,0,0, + 1543,219,1,0,0,0,1544,1545,6,110,-1,0,1545,1549,3,222,111,0,1546,1547,7, + 26,0,0,1547,1549,3,220,110,7,1548,1544,1,0,0,0,1548,1546,1,0,0,0,1549,1571, + 1,0,0,0,1550,1551,10,6,0,0,1551,1552,7,27,0,0,1552,1570,3,220,110,7,1553, + 1554,10,5,0,0,1554,1555,7,28,0,0,1555,1570,3,220,110,6,1556,1557,10,4,0, + 0,1557,1558,5,299,0,0,1558,1570,3,220,110,5,1559,1560,10,3,0,0,1560,1561, + 5,300,0,0,1561,1570,3,220,110,4,1562,1563,10,2,0,0,1563,1564,5,298,0,0, + 1564,1570,3,220,110,3,1565,1566,10,1,0,0,1566,1567,3,288,144,0,1567,1568, + 3,220,110,2,1568,1570,1,0,0,0,1569,1550,1,0,0,0,1569,1553,1,0,0,0,1569, + 1556,1,0,0,0,1569,1559,1,0,0,0,1569,1562,1,0,0,0,1569,1565,1,0,0,0,1570, + 1573,1,0,0,0,1571,1569,1,0,0,0,1571,1572,1,0,0,0,1572,221,1,0,0,0,1573, + 1571,1,0,0,0,1574,1575,6,111,-1,0,1575,1577,5,39,0,0,1576,1578,3,264,132, + 0,1577,1576,1,0,0,0,1578,1579,1,0,0,0,1579,1577,1,0,0,0,1579,1580,1,0,0, + 0,1580,1583,1,0,0,0,1581,1582,5,42,0,0,1582,1584,3,212,106,0,1583,1581, + 1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585,1586,5,44,0,0,1586,1666, + 1,0,0,0,1587,1588,5,39,0,0,1588,1590,3,212,106,0,1589,1591,3,264,132,0, + 1590,1589,1,0,0,0,1591,1592,1,0,0,0,1592,1590,1,0,0,0,1592,1593,1,0,0,0, + 1593,1596,1,0,0,0,1594,1595,5,42,0,0,1595,1597,3,212,106,0,1596,1594,1, + 0,0,0,1596,1597,1,0,0,0,1597,1598,1,0,0,0,1598,1599,5,44,0,0,1599,1666, + 1,0,0,0,1600,1601,5,94,0,0,1601,1602,5,304,0,0,1602,1603,3,212,106,0,1603, + 1604,5,7,0,0,1604,1605,3,54,27,0,1605,1606,5,305,0,0,1606,1666,1,0,0,0, + 1607,1608,5,67,0,0,1608,1609,5,304,0,0,1609,1612,3,212,106,0,1610,1611, + 5,124,0,0,1611,1613,5,34,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1614, + 1,0,0,0,1614,1615,5,305,0,0,1615,1666,1,0,0,0,1616,1617,5,69,0,0,1617,1618, + 5,304,0,0,1618,1621,3,212,106,0,1619,1620,5,124,0,0,1620,1622,5,34,0,0, + 1621,1619,1,0,0,0,1621,1622,1,0,0,0,1622,1623,1,0,0,0,1623,1624,5,305,0, + 0,1624,1666,1,0,0,0,1625,1626,5,129,0,0,1626,1627,5,304,0,0,1627,1628,3, + 220,110,0,1628,1629,5,24,0,0,1629,1630,3,220,110,0,1630,1631,5,305,0,0, + 1631,1666,1,0,0,0,1632,1666,3,298,149,0,1633,1666,5,313,0,0,1634,1635,3, + 268,134,0,1635,1636,5,301,0,0,1636,1637,5,313,0,0,1637,1666,1,0,0,0,1638, + 1639,5,304,0,0,1639,1640,3,156,78,0,1640,1641,5,305,0,0,1641,1666,1,0,0, + 0,1642,1643,3,224,112,0,1643,1655,5,304,0,0,1644,1646,3,306,153,0,1645, + 1644,1,0,0,0,1645,1646,1,0,0,0,1646,1647,1,0,0,0,1647,1652,3,212,106,0, + 1648,1649,5,306,0,0,1649,1651,3,212,106,0,1650,1648,1,0,0,0,1651,1654,1, + 0,0,0,1652,1650,1,0,0,0,1652,1653,1,0,0,0,1653,1656,1,0,0,0,1654,1652,1, + 0,0,0,1655,1645,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1658,5, + 305,0,0,1658,1666,1,0,0,0,1659,1666,3,256,128,0,1660,1666,3,226,113,0,1661, + 1662,5,304,0,0,1662,1663,3,212,106,0,1663,1664,5,305,0,0,1664,1666,1,0, + 0,0,1665,1574,1,0,0,0,1665,1587,1,0,0,0,1665,1600,1,0,0,0,1665,1607,1,0, + 0,0,1665,1616,1,0,0,0,1665,1625,1,0,0,0,1665,1632,1,0,0,0,1665,1633,1,0, + 0,0,1665,1634,1,0,0,0,1665,1638,1,0,0,0,1665,1642,1,0,0,0,1665,1659,1,0, + 0,0,1665,1660,1,0,0,0,1665,1661,1,0,0,0,1666,1674,1,0,0,0,1667,1668,10, + 4,0,0,1668,1669,5,302,0,0,1669,1670,3,220,110,0,1670,1671,5,303,0,0,1671, + 1673,1,0,0,0,1672,1667,1,0,0,0,1673,1676,1,0,0,0,1674,1672,1,0,0,0,1674, + 1675,1,0,0,0,1675,223,1,0,0,0,1676,1674,1,0,0,0,1677,1678,3,268,134,0,1678, + 225,1,0,0,0,1679,1680,3,268,134,0,1680,227,1,0,0,0,1681,1682,3,256,128, + 0,1682,229,1,0,0,0,1683,1686,3,256,128,0,1684,1686,3,226,113,0,1685,1683, + 1,0,0,0,1685,1684,1,0,0,0,1686,231,1,0,0,0,1687,1690,5,38,0,0,1688,1691, + 3,234,117,0,1689,1691,3,238,119,0,1690,1688,1,0,0,0,1690,1689,1,0,0,0,1690, + 1691,1,0,0,0,1691,233,1,0,0,0,1692,1694,3,236,118,0,1693,1695,3,240,120, + 0,1694,1693,1,0,0,0,1694,1695,1,0,0,0,1695,235,1,0,0,0,1696,1697,3,242, + 121,0,1697,1698,3,256,128,0,1698,1700,1,0,0,0,1699,1696,1,0,0,0,1700,1701, + 1,0,0,0,1701,1699,1,0,0,0,1701,1702,1,0,0,0,1702,237,1,0,0,0,1703,1706, + 3,240,120,0,1704,1707,3,236,118,0,1705,1707,3,240,120,0,1706,1704,1,0,0, + 0,1706,1705,1,0,0,0,1706,1707,1,0,0,0,1707,239,1,0,0,0,1708,1709,3,242, + 121,0,1709,1710,3,256,128,0,1710,1711,5,109,0,0,1711,1712,3,256,128,0,1712, + 241,1,0,0,0,1713,1715,7,29,0,0,1714,1713,1,0,0,0,1714,1715,1,0,0,0,1715, + 1716,1,0,0,0,1716,1719,7,30,0,0,1717,1719,5,323,0,0,1718,1714,1,0,0,0,1718, + 1717,1,0,0,0,1719,243,1,0,0,0,1720,1722,5,7,0,0,1721,1720,1,0,0,0,1721, + 1722,1,0,0,0,1722,1723,1,0,0,0,1723,1725,3,258,129,0,1724,1726,3,252,126, + 0,1725,1724,1,0,0,0,1725,1726,1,0,0,0,1726,245,1,0,0,0,1727,1729,5,7,0, + 0,1728,1727,1,0,0,0,1728,1729,1,0,0,0,1729,1730,1,0,0,0,1730,1732,3,258, + 129,0,1731,1733,3,252,126,0,1732,1731,1,0,0,0,1732,1733,1,0,0,0,1733,247, + 1,0,0,0,1734,1735,3,256,128,0,1735,1736,3,250,125,0,1736,249,1,0,0,0,1737, + 1738,5,131,0,0,1738,1740,3,256,128,0,1739,1737,1,0,0,0,1740,1741,1,0,0, + 0,1741,1739,1,0,0,0,1741,1742,1,0,0,0,1742,1745,1,0,0,0,1743,1745,1,0,0, + 0,1744,1739,1,0,0,0,1744,1743,1,0,0,0,1745,251,1,0,0,0,1746,1747,5,304, + 0,0,1747,1748,3,254,127,0,1748,1749,5,305,0,0,1749,253,1,0,0,0,1750,1755, + 3,256,128,0,1751,1752,5,306,0,0,1752,1754,3,256,128,0,1753,1751,1,0,0,0, + 1754,1757,1,0,0,0,1755,1753,1,0,0,0,1755,1756,1,0,0,0,1756,255,1,0,0,0, + 1757,1755,1,0,0,0,1758,1761,3,258,129,0,1759,1761,3,310,155,0,1760,1758, + 1,0,0,0,1760,1759,1,0,0,0,1761,257,1,0,0,0,1762,1767,3,260,130,0,1763,1767, + 3,262,131,0,1764,1767,3,308,154,0,1765,1767,3,312,156,0,1766,1762,1,0,0, + 0,1766,1763,1,0,0,0,1766,1764,1,0,0,0,1766,1765,1,0,0,0,1767,259,1,0,0, + 0,1768,1769,7,31,0,0,1769,261,1,0,0,0,1770,1771,5,323,0,0,1771,263,1,0, + 0,0,1772,1773,5,40,0,0,1773,1774,3,212,106,0,1774,1775,5,41,0,0,1775,1776, + 3,212,106,0,1776,265,1,0,0,0,1777,1782,3,268,134,0,1778,1779,5,306,0,0, + 1779,1781,3,268,134,0,1780,1778,1,0,0,0,1781,1784,1,0,0,0,1782,1780,1,0, + 0,0,1782,1783,1,0,0,0,1783,267,1,0,0,0,1784,1782,1,0,0,0,1785,1789,5,327, + 0,0,1786,1788,5,321,0,0,1787,1786,1,0,0,0,1788,1791,1,0,0,0,1789,1790,1, + 0,0,0,1789,1787,1,0,0,0,1790,269,1,0,0,0,1791,1789,1,0,0,0,1792,1796,7, + 32,0,0,1793,1795,7,33,0,0,1794,1793,1,0,0,0,1795,1798,1,0,0,0,1796,1797, + 1,0,0,0,1796,1794,1,0,0,0,1797,271,1,0,0,0,1798,1796,1,0,0,0,1799,1800, + 5,70,0,0,1800,1801,3,278,139,0,1801,273,1,0,0,0,1802,1803,5,128,0,0,1803, + 1804,5,25,0,0,1804,1805,5,27,0,0,1805,275,1,0,0,0,1806,1807,5,128,0,0,1807, + 1808,5,27,0,0,1808,277,1,0,0,0,1809,1810,5,304,0,0,1810,1815,3,280,140, + 0,1811,1812,5,306,0,0,1812,1814,3,280,140,0,1813,1811,1,0,0,0,1814,1817, + 1,0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816,1818,1,0,0,0,1817,1815, + 1,0,0,0,1818,1819,5,305,0,0,1819,279,1,0,0,0,1820,1825,3,282,141,0,1821, + 1823,5,293,0,0,1822,1821,1,0,0,0,1822,1823,1,0,0,0,1823,1824,1,0,0,0,1824, + 1826,3,284,142,0,1825,1822,1,0,0,0,1825,1826,1,0,0,0,1826,281,1,0,0,0,1827, + 1831,3,256,128,0,1828,1831,3,226,113,0,1829,1831,5,323,0,0,1830,1827,1, + 0,0,0,1830,1828,1,0,0,0,1830,1829,1,0,0,0,1831,283,1,0,0,0,1832,1837,5, + 324,0,0,1833,1837,5,325,0,0,1834,1837,3,304,152,0,1835,1837,5,323,0,0,1836, + 1832,1,0,0,0,1836,1833,1,0,0,0,1836,1834,1,0,0,0,1836,1835,1,0,0,0,1837, + 285,1,0,0,0,1838,1845,5,23,0,0,1839,1840,5,299,0,0,1840,1845,5,299,0,0, + 1841,1845,5,22,0,0,1842,1843,5,298,0,0,1843,1845,5,298,0,0,1844,1838,1, + 0,0,0,1844,1839,1,0,0,0,1844,1841,1,0,0,0,1844,1842,1,0,0,0,1845,287,1, + 0,0,0,1846,1861,5,293,0,0,1847,1861,5,294,0,0,1848,1861,5,295,0,0,1849, + 1850,5,295,0,0,1850,1861,5,293,0,0,1851,1852,5,294,0,0,1852,1861,5,293, + 0,0,1853,1854,5,295,0,0,1854,1861,5,294,0,0,1855,1856,5,296,0,0,1856,1861, + 5,293,0,0,1857,1858,5,295,0,0,1858,1859,5,293,0,0,1859,1861,5,294,0,0,1860, + 1846,1,0,0,0,1860,1847,1,0,0,0,1860,1848,1,0,0,0,1860,1849,1,0,0,0,1860, + 1851,1,0,0,0,1860,1853,1,0,0,0,1860,1855,1,0,0,0,1860,1857,1,0,0,0,1861, + 289,1,0,0,0,1862,1863,5,295,0,0,1863,1870,5,295,0,0,1864,1865,5,294,0,0, + 1865,1870,5,294,0,0,1866,1870,5,299,0,0,1867,1870,5,300,0,0,1868,1870,5, + 298,0,0,1869,1862,1,0,0,0,1869,1864,1,0,0,0,1869,1866,1,0,0,0,1869,1867, + 1,0,0,0,1869,1868,1,0,0,0,1870,291,1,0,0,0,1871,1872,7,34,0,0,1872,293, + 1,0,0,0,1873,1874,7,35,0,0,1874,295,1,0,0,0,1875,1876,3,268,134,0,1876, + 297,1,0,0,0,1877,1890,3,300,150,0,1878,1890,3,302,151,0,1879,1890,3,232, + 116,0,1880,1881,5,315,0,0,1881,1890,3,302,151,0,1882,1890,3,304,152,0,1883, + 1890,5,325,0,0,1884,1890,5,326,0,0,1885,1887,5,25,0,0,1886,1885,1,0,0,0, + 1886,1887,1,0,0,0,1887,1888,1,0,0,0,1888,1890,5,291,0,0,1889,1877,1,0,0, + 0,1889,1878,1,0,0,0,1889,1879,1,0,0,0,1889,1880,1,0,0,0,1889,1882,1,0,0, + 0,1889,1883,1,0,0,0,1889,1884,1,0,0,0,1889,1886,1,0,0,0,1890,299,1,0,0, + 0,1891,1892,5,323,0,0,1892,301,1,0,0,0,1893,1894,5,324,0,0,1894,303,1,0, + 0,0,1895,1896,7,25,0,0,1896,305,1,0,0,0,1897,1898,7,36,0,0,1898,307,1,0, + 0,0,1899,1900,7,37,0,0,1900,309,1,0,0,0,1901,1902,7,38,0,0,1902,311,1,0, + 0,0,1903,1904,7,39,0,0,1904,313,1,0,0,0,226,322,325,327,342,360,364,373, + 378,385,392,396,405,417,420,427,435,440,443,450,458,462,474,482,486,507, + 511,515,519,528,533,537,541,545,548,552,557,563,568,573,576,580,588,596, + 600,604,608,612,616,620,624,628,630,640,648,672,679,694,697,705,717,741, + 754,759,763,771,775,783,793,797,803,807,811,814,823,827,834,837,847,855, + 863,867,882,901,912,916,923,928,934,938,945,949,953,957,965,969,974,979, + 985,988,992,1003,1012,1025,1037,1048,1051,1055,1058,1060,1065,1069,1072, + 1076,1085,1095,1100,1112,1115,1118,1121,1125,1133,1136,1140,1143,1154,1163, + 1166,1169,1174,1176,1178,1183,1186,1190,1193,1196,1208,1215,1226,1247,1252, + 1264,1276,1288,1300,1313,1318,1330,1335,1340,1348,1356,1366,1369,1378,1381, + 1384,1390,1394,1400,1417,1419,1427,1429,1433,1441,1450,1456,1469,1474,1486, + 1491,1494,1500,1505,1510,1515,1518,1530,1535,1538,1542,1548,1569,1571,1579, + 1583,1592,1596,1612,1621,1645,1652,1655,1665,1674,1685,1690,1694,1701,1706, + 1714,1718,1721,1725,1728,1732,1741,1744,1755,1760,1766,1782,1789,1796,1815, + 1822,1825,1830,1836,1844,1860,1869,1886,1889]; private static __ATN: ATN; public static get _ATN(): ATN { @@ -13124,6 +13315,18 @@ export class AlterTableContext extends ParserRuleContext { public setKeyValueDefinition(): SetKeyValueDefinitionContext { return this.getTypedRuleContext(SetKeyValueDefinitionContext, 0) as SetKeyValueDefinitionContext; } + public addConstraint(): AddConstraintContext { + return this.getTypedRuleContext(AddConstraintContext, 0) as AddConstraintContext; + } + public dropConstraint(): DropConstraintContext { + return this.getTypedRuleContext(DropConstraintContext, 0) as DropConstraintContext; + } + public addUnique(): AddUniqueContext { + return this.getTypedRuleContext(AddUniqueContext, 0) as AddUniqueContext; + } + public ifExists(): IfExistsContext { + return this.getTypedRuleContext(IfExistsContext, 0) as IfExistsContext; + } public get ruleIndex(): number { return FlinkSqlParser.RULE_alterTable; } @@ -13159,8 +13362,11 @@ export class RenameDefinitionContext extends ParserRuleContext { public TO(): TerminalNode { return this.getToken(FlinkSqlParser.TO, 0); } - public uid(): UidContext { - return this.getTypedRuleContext(UidContext, 0) as UidContext; + public uid_list(): UidContext[] { + return this.getTypedRuleContexts(UidContext) as UidContext[]; + } + public uid(i: number): UidContext { + return this.getTypedRuleContext(UidContext, i) as UidContext; } public get ruleIndex(): number { return FlinkSqlParser.RULE_renameDefinition; @@ -13221,6 +13427,167 @@ export class SetKeyValueDefinitionContext extends ParserRuleContext { } +export class AddConstraintContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public ADD(): TerminalNode { + return this.getToken(FlinkSqlParser.ADD, 0); + } + public CONSTRAINT(): TerminalNode { + return this.getToken(FlinkSqlParser.CONSTRAINT, 0); + } + public constraintName(): ConstraintNameContext { + return this.getTypedRuleContext(ConstraintNameContext, 0) as ConstraintNameContext; + } + public PRIMARY(): TerminalNode { + return this.getToken(FlinkSqlParser.PRIMARY, 0); + } + public KEY(): TerminalNode { + return this.getToken(FlinkSqlParser.KEY, 0); + } + public columnNameList(): ColumnNameListContext { + return this.getTypedRuleContext(ColumnNameListContext, 0) as ColumnNameListContext; + } + public notForced(): NotForcedContext { + return this.getTypedRuleContext(NotForcedContext, 0) as NotForcedContext; + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_addConstraint; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterAddConstraint) { + listener.enterAddConstraint(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitAddConstraint) { + listener.exitAddConstraint(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitAddConstraint) { + return visitor.visitAddConstraint(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DropConstraintContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public DROP(): TerminalNode { + return this.getToken(FlinkSqlParser.DROP, 0); + } + public CONSTRAINT(): TerminalNode { + return this.getToken(FlinkSqlParser.CONSTRAINT, 0); + } + public constraintName(): ConstraintNameContext { + return this.getTypedRuleContext(ConstraintNameContext, 0) as ConstraintNameContext; + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_dropConstraint; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterDropConstraint) { + listener.enterDropConstraint(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitDropConstraint) { + listener.exitDropConstraint(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitDropConstraint) { + return visitor.visitDropConstraint(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AddUniqueContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public ADD(): TerminalNode { + return this.getToken(FlinkSqlParser.ADD, 0); + } + public UNIQUE(): TerminalNode { + return this.getToken(FlinkSqlParser.UNIQUE, 0); + } + public columnNameList(): ColumnNameListContext { + return this.getTypedRuleContext(ColumnNameListContext, 0) as ColumnNameListContext; + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_addUnique; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterAddUnique) { + listener.enterAddUnique(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitAddUnique) { + listener.exitAddUnique(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitAddUnique) { + return visitor.visitAddUnique(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class NotForcedContext extends ParserRuleContext { + constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { + super(parent, invokingState); + this.parser = parser; + } + public NOT(): TerminalNode { + return this.getToken(FlinkSqlParser.NOT, 0); + } + public ENFORCED(): TerminalNode { + return this.getToken(FlinkSqlParser.ENFORCED, 0); + } + public get ruleIndex(): number { + return FlinkSqlParser.RULE_notForced; + } + public enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterNotForced) { + listener.enterNotForced(this); + } + } + public exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitNotForced) { + listener.exitNotForced(this); + } + } + // @Override + public accept(visitor: FlinkSqlParserVisitor): Result { + if (visitor.visitNotForced) { + return visitor.visitNotForced(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class AlertViewContext extends ParserRuleContext { constructor(parser?: FlinkSqlParser, parent?: ParserRuleContext, invokingState?: number) { super(parent, invokingState); diff --git a/src/lib/flinksql/FlinkSqlParserListener.ts b/src/lib/flinksql/FlinkSqlParserListener.ts index b467cf0..0ddaccc 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.ts +++ b/src/lib/flinksql/FlinkSqlParserListener.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/ziv/github.com/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 import {ParseTreeListener} from "antlr4"; @@ -64,6 +64,10 @@ import { JarFileNameContext } from "./FlinkSqlParser"; import { AlterTableContext } from "./FlinkSqlParser"; import { RenameDefinitionContext } from "./FlinkSqlParser"; import { SetKeyValueDefinitionContext } from "./FlinkSqlParser"; +import { AddConstraintContext } from "./FlinkSqlParser"; +import { DropConstraintContext } from "./FlinkSqlParser"; +import { AddUniqueContext } from "./FlinkSqlParser"; +import { NotForcedContext } from "./FlinkSqlParser"; import { AlertViewContext } from "./FlinkSqlParser"; import { AlterDatabaseContext } from "./FlinkSqlParser"; import { AlterFunctionContext } from "./FlinkSqlParser"; @@ -801,6 +805,46 @@ export default class FlinkSqlParserListener extends ParseTreeListener { * @param ctx the parse tree */ exitSetKeyValueDefinition?: (ctx: SetKeyValueDefinitionContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.addConstraint`. + * @param ctx the parse tree + */ + enterAddConstraint?: (ctx: AddConstraintContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.addConstraint`. + * @param ctx the parse tree + */ + exitAddConstraint?: (ctx: AddConstraintContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.dropConstraint`. + * @param ctx the parse tree + */ + enterDropConstraint?: (ctx: DropConstraintContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.dropConstraint`. + * @param ctx the parse tree + */ + exitDropConstraint?: (ctx: DropConstraintContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.addUnique`. + * @param ctx the parse tree + */ + enterAddUnique?: (ctx: AddUniqueContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.addUnique`. + * @param ctx the parse tree + */ + exitAddUnique?: (ctx: AddUniqueContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.notForced`. + * @param ctx the parse tree + */ + enterNotForced?: (ctx: NotForcedContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.notForced`. + * @param ctx the parse tree + */ + exitNotForced?: (ctx: NotForcedContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.alertView`. * @param ctx the parse tree diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.ts b/src/lib/flinksql/FlinkSqlParserVisitor.ts index 2a44bc3..e1a6d10 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.ts +++ b/src/lib/flinksql/FlinkSqlParserVisitor.ts @@ -1,4 +1,4 @@ -// Generated from /Users/zhenglin/Documents/parser/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 +// Generated from /Users/ziv/github.com/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.12.0 import {ParseTreeVisitor} from 'antlr4'; @@ -64,6 +64,10 @@ import { JarFileNameContext } from "./FlinkSqlParser"; import { AlterTableContext } from "./FlinkSqlParser"; import { RenameDefinitionContext } from "./FlinkSqlParser"; import { SetKeyValueDefinitionContext } from "./FlinkSqlParser"; +import { AddConstraintContext } from "./FlinkSqlParser"; +import { DropConstraintContext } from "./FlinkSqlParser"; +import { AddUniqueContext } from "./FlinkSqlParser"; +import { NotForcedContext } from "./FlinkSqlParser"; import { AlertViewContext } from "./FlinkSqlParser"; import { AlterDatabaseContext } from "./FlinkSqlParser"; import { AlterFunctionContext } from "./FlinkSqlParser"; @@ -558,6 +562,30 @@ export default class FlinkSqlParserVisitor extends ParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.addConstraint`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAddConstraint?: (ctx: AddConstraintContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.dropConstraint`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDropConstraint?: (ctx: DropConstraintContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.addUnique`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAddUnique?: (ctx: AddUniqueContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.notForced`. + * @param ctx the parse tree + * @return the visitor result + */ + visitNotForced?: (ctx: NotForcedContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.alertView`. * @param ctx the parse tree diff --git a/test/parser/flinksql/syntax/fixtures/alterDatabase.sql b/test/parser/flinksql/syntax/fixtures/alterDatabase.sql index 4e8f58d..f90cfed 100644 --- a/test/parser/flinksql/syntax/fixtures/alterDatabase.sql +++ b/test/parser/flinksql/syntax/fixtures/alterDatabase.sql @@ -1 +1,3 @@ -ALTER DATABASE tempDB SET ("key1"="value1"); \ No newline at end of file +ALTER DATABASE tempDB SET ("key1"="value1"); + +alter database db1 set ('key1' = 'value1','key2.a' = 'value2.a'); \ No newline at end of file diff --git a/test/parser/flinksql/syntax/fixtures/alterFunction.sql b/test/parser/flinksql/syntax/fixtures/alterFunction.sql index 2360efe..99b1400 100644 --- a/test/parser/flinksql/syntax/fixtures/alterFunction.sql +++ b/test/parser/flinksql/syntax/fixtures/alterFunction.sql @@ -1,7 +1,15 @@ ALTER FUNCTION tempFunction AS 'SimpleUdf'; -ALTER TEMPORARY FUNCTION IF EXISTS tempFunction AS 'SimpleUdf'; +alter temporary function function1 as 'org.apache.flink.function.function1'; + +alter temporary function function1 as 'org.apache.flink.function.function1' language scala; + +alter temporary system function function1 as 'org.apache.flink.function.function1'; + +alter temporary system function function1 as 'org.apache.flink.function.function1' language java; ALTER TEMPORARY SYSTEM FUNCTION IF EXISTS tempFunction AS 'SimpleUdf'; +ALTER TEMPORARY FUNCTION IF EXISTS tempFunction AS 'SimpleUdf'; + ALTER FUNCTION myudf AS 'com.example.MyUdf' LANGUAGE PYTHON; \ No newline at end of file diff --git a/test/parser/flinksql/syntax/fixtures/alterTable.sql b/test/parser/flinksql/syntax/fixtures/alterTable.sql index aca4348..e394f30 100644 --- a/test/parser/flinksql/syntax/fixtures/alterTable.sql +++ b/test/parser/flinksql/syntax/fixtures/alterTable.sql @@ -1,7 +1,65 @@ -ALTER TABLE - Orders RENAME TO NewOrders; +-- Refer: https://github.com/apache/flink/blob/master/flink-table/flink-sql-parser/src/test/java/org/apache/flink/sql/parser/FlinkSqlParserImplTest.java#L2016 +-- Just for simple alter table statements, it not include alter table columns statements + +alter table + t1 rename to t2; + +alter table + if exists t1 rename to t2; + +alter table + c1.d1.t1 rename to t2; + +alter table + if exists c1.d1.t1 rename to t2; + +alter table + t1 rename a to b; + +alter table + if exists t1 rename a to b; + +alter table + if exists t1 rename a.x to a.y; + +alter table + t1 +set + ('key1' = 'value1'); + +alter table + if exists t1 +set + ('key1' = 'value1'); + +alter table + t1 +add + constraint ct1 primary key(a, b); + +alter table + t1 +add + constraint ct1 primary key(a, b) not enforced; + +alter table + if exists t1 +add + constraint ct1 primary key(a, b) not enforced; + +alter table + t1 +add + unique(a, b); + +alter table + if exists t1 +add + unique(a, b); + +alter table + t1 drop constraint ct1; + +alter table + if exists t1 drop constraint ct1; -ALTER TABLE - sample_table -SET - ('key1' = 'value2'); \ No newline at end of file