From ca4d102fda4860f09eddd13ad30163852d438620 Mon Sep 17 00:00:00 2001 From: LuckyFBB <976060700@qq.com> Date: Wed, 16 Oct 2024 13:53:36 +0800 Subject: [PATCH] feat(spark): add spark expression column --- src/grammar/hive/HiveSqlParser.g4 | 4 +- src/grammar/spark/SparkSqlParser.g4 | 36 +- src/lib/spark/SparkSqlParser.interp | 6 +- src/lib/spark/SparkSqlParser.ts | 10173 ++++++++-------- src/lib/spark/SparkSqlParserListener.ts | 44 + src/lib/spark/SparkSqlParserVisitor.ts | 28 + src/parser/spark/index.ts | 18 + src/parser/spark/sparkErrorListener.ts | 4 +- test/parser/spark/errorListener.test.ts | 17 + .../suggestion/fixtures/syntaxSuggestion.sql | 12 +- .../spark/suggestion/syntaxSuggestion.test.ts | 140 + 11 files changed, 5456 insertions(+), 5026 deletions(-) diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index bbd0c7cb..a2387e53 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -4,9 +4,9 @@ ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - + http://www.apache.org/licenses/LICENSE-2.0 - + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index b57f65b6..13729cfd 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -455,6 +455,10 @@ columnName | {this.shouldMatchEmpty()}? ; +columnNamePath + : multipartIdentifier + ; + columnNameSeq : columnName (COMMA columnName)* ; @@ -469,11 +473,23 @@ identifierReference ; queryOrganization - : (KW_ORDER KW_BY order+=sortItem (COMMA order+=sortItem)*)? ( - KW_CLUSTER KW_BY clusterBy+=expression (COMMA clusterBy+=expression)* - )? (KW_DISTRIBUTE KW_BY distributeBy+=expression (COMMA distributeBy+=expression)*)? ( - KW_SORT KW_BY sort+=sortItem (COMMA sort+=sortItem)* - )? windowClause? (KW_LIMIT (KW_ALL | limit=expression))? (KW_OFFSET offset=expression)? + : (KW_ORDER KW_BY orderOrSortByClause)? (KW_CLUSTER KW_BY clusterOrDistributeBy)? ( + KW_DISTRIBUTE KW_BY clusterOrDistributeBy + )? (KW_SORT KW_BY orderOrSortByClause)? windowClause? limitClause? ( + KW_OFFSET offset=expression + )? + ; + +limitClause + : KW_LIMIT (KW_ALL | limit=expression) + ; + +orderOrSortByClause + : sortItem (COMMA sortItem)* + ; + +clusterOrDistributeBy + : expression (COMMA expression)* ; multiInsertQueryBody @@ -825,11 +841,7 @@ tableArgumentPartitioning | partition+=expression ) ) - ) ( - (KW_ORDER | KW_SORT) KW_BY ( - ((LEFT_PAREN sortItem (COMMA sortItem)* RIGHT_PAREN) | sortItem) - ) - )? + ) ((KW_ORDER | KW_SORT) KW_BY ( ((LEFT_PAREN orderOrSortByClause RIGHT_PAREN) | sortItem)))? ; functionTableNamedArgumentExpression @@ -1013,7 +1025,7 @@ primaryExpression | identifier ARROW expression | LEFT_PAREN identifier (COMMA identifier)+ RIGHT_PAREN ARROW expression | value=primaryExpression LEFT_BRACKET index=valueExpression RIGHT_BRACKET - | identifier + | columnNamePath | base=primaryExpression DOT fieldName=identifier | LEFT_PAREN expression RIGHT_PAREN | KW_EXTRACT LEFT_PAREN field=identifier KW_FROM source=valueExpression RIGHT_PAREN @@ -1286,7 +1298,7 @@ windowSpec (KW_PARTITION | KW_DISTRIBUTE) KW_BY partition+=expression ( COMMA partition+=expression )* - )? ((KW_ORDER | KW_SORT) KW_BY sortItem (COMMA sortItem)*)? + )? ((KW_ORDER | KW_SORT) KW_BY orderOrSortByClause)? ) windowFrame? RIGHT_PAREN ; diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 03dd67a5..43f85af2 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -838,10 +838,14 @@ tableName viewNameCreate viewName columnName +columnNamePath columnNameSeq columnNameCreate identifierReference queryOrganization +limitClause +orderOrSortByClause +clusterOrDistributeBy multiInsertQueryBody queryTerm queryPrimary @@ -994,4 +998,4 @@ nonReserved atn: -[4, 1, 393, 3971, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 1, 0, 5, 0, 402, 8, 0, 10, 0, 12, 0, 405, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 411, 8, 1, 1, 2, 1, 2, 3, 2, 415, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 440, 8, 2, 10, 2, 12, 2, 443, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 461, 8, 2, 1, 2, 1, 2, 3, 2, 465, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 484, 8, 2, 1, 2, 3, 2, 487, 8, 2, 1, 2, 1, 2, 3, 2, 491, 8, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 511, 8, 2, 10, 2, 12, 2, 514, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 3, 2, 531, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 537, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 548, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 554, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 592, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 602, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 613, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 635, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 649, 8, 2, 1, 2, 1, 2, 3, 2, 653, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 659, 8, 2, 1, 2, 1, 2, 3, 2, 663, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 674, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 700, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 711, 8, 2, 1, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 4, 2, 718, 8, 2, 11, 2, 12, 2, 719, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 735, 8, 2, 1, 2, 1, 2, 3, 2, 739, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 744, 8, 2, 10, 2, 12, 2, 747, 9, 2, 1, 2, 3, 2, 750, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 756, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 794, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 3, 2, 817, 8, 2, 1, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 829, 8, 2, 10, 2, 12, 2, 832, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 886, 8, 2, 10, 2, 12, 2, 889, 9, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 897, 8, 2, 1, 2, 1, 2, 3, 2, 901, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 916, 8, 2, 10, 2, 12, 2, 919, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 3, 2, 930, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 957, 8, 2, 1, 2, 1, 2, 3, 2, 961, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 3, 2, 1039, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 3, 2, 1058, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 3, 2, 1110, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1136, 8, 2, 10, 2, 12, 2, 1139, 9, 2, 3, 2, 1141, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1179, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1185, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 3, 2, 1194, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1201, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1206, 8, 2, 10, 2, 12, 2, 1209, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1231, 8, 2, 10, 2, 12, 2, 1234, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 3, 2, 1263, 8, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1276, 8, 2, 10, 2, 12, 2, 1279, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1285, 8, 2, 10, 2, 12, 2, 1288, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1293, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1298, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1303, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1320, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1333, 8, 2, 10, 2, 12, 2, 1336, 9, 2, 3, 2, 1338, 8, 2, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1354, 8, 6, 1, 6, 1, 6, 3, 6, 1358, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1365, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1481, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1506, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1516, 8, 6, 1, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 3, 7, 1523, 8, 7, 1, 7, 1, 7, 3, 7, 1527, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1533, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1562, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1571, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1579, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1584, 8, 14, 3, 14, 1586, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1599, 8, 14, 1, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1619, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1628, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1650, 8, 14, 3, 14, 1652, 8, 14, 1, 15, 1, 15, 3, 15, 1656, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1663, 8, 16, 10, 16, 12, 16, 1666, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1673, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1679, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1690, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1695, 8, 21, 10, 21, 12, 21, 1698, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1704, 8, 22, 10, 22, 12, 22, 1707, 9, 22, 1, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 3, 23, 1714, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1737, 8, 25, 10, 25, 12, 25, 1740, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1749, 8, 27, 10, 27, 12, 27, 1752, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1758, 8, 28, 1, 28, 3, 28, 1761, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1766, 8, 29, 10, 29, 12, 29, 1769, 9, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1778, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1784, 8, 31, 10, 31, 12, 31, 1787, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1793, 8, 32, 1, 32, 3, 32, 1796, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1802, 8, 33, 10, 33, 12, 33, 1805, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1813, 8, 34, 10, 34, 12, 34, 1816, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1826, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1840, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1850, 8, 39, 11, 39, 12, 39, 1851, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1859, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1866, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1884, 8, 39, 10, 39, 12, 39, 1887, 9, 39, 1, 39, 5, 39, 1890, 8, 39, 10, 39, 12, 39, 1893, 9, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 3, 39, 1901, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1917, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1922, 8, 47, 10, 47, 12, 47, 1925, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1942, 8, 50, 10, 50, 12, 50, 1945, 9, 50, 3, 50, 1947, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 3, 50, 1986, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1991, 8, 50, 3, 50, 1993, 8, 50, 1, 50, 1, 50, 3, 50, 1997, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2014, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 5, 52, 2023, 8, 52, 10, 52, 12, 52, 2026, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 54, 1, 54, 3, 54, 2041, 8, 54, 1, 54, 3, 54, 2044, 8, 54, 1, 54, 1, 54, 3, 54, 2048, 8, 54, 1, 55, 1, 55, 4, 55, 2052, 8, 55, 11, 55, 12, 55, 2053, 1, 56, 1, 56, 3, 56, 2058, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2064, 8, 56, 10, 56, 12, 56, 2067, 9, 56, 1, 56, 3, 56, 2070, 8, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 5, 57, 2090, 8, 57, 10, 57, 12, 57, 2093, 9, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 3, 57, 2129, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2135, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2142, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2147, 8, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 3, 58, 2153, 8, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2167, 8, 58, 1, 58, 1, 58, 3, 58, 2171, 8, 58, 3, 58, 2173, 8, 58, 1, 58, 3, 58, 2176, 8, 58, 1, 58, 1, 58, 3, 58, 2180, 8, 58, 1, 59, 1, 59, 5, 59, 2184, 8, 59, 10, 59, 12, 59, 2187, 9, 59, 1, 59, 3, 59, 2190, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2201, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2211, 8, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2239, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2252, 8, 65, 10, 65, 12, 65, 2255, 9, 65, 1, 65, 1, 65, 3, 65, 2259, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2265, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2270, 8, 67, 10, 67, 12, 67, 2273, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2288, 8, 71, 1, 71, 5, 71, 2291, 8, 71, 10, 71, 12, 71, 2294, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2304, 8, 72, 10, 72, 12, 72, 2307, 9, 72, 1, 72, 1, 72, 3, 72, 2311, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2317, 8, 73, 10, 73, 12, 73, 2320, 9, 73, 1, 73, 5, 73, 2323, 8, 73, 10, 73, 12, 73, 2326, 9, 73, 1, 73, 3, 73, 2329, 8, 73, 1, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2337, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2344, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2350, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2357, 8, 76, 10, 76, 12, 76, 2360, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2367, 8, 76, 10, 76, 12, 76, 2370, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2382, 8, 76, 10, 76, 12, 76, 2385, 9, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 3, 76, 2391, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2403, 8, 78, 10, 78, 12, 78, 2406, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2416, 8, 78, 10, 78, 12, 78, 2419, 9, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2434, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2439, 8, 80, 5, 80, 2441, 8, 80, 10, 80, 12, 80, 2444, 9, 80, 3, 80, 2446, 8, 80, 1, 80, 3, 80, 2449, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2461, 8, 81, 10, 81, 12, 81, 2464, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2474, 8, 82, 10, 82, 12, 82, 2477, 9, 82, 1, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 84, 1, 84, 3, 84, 2492, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2498, 8, 84, 1, 84, 3, 84, 2501, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2508, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2518, 8, 87, 10, 87, 12, 87, 2521, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2529, 8, 88, 10, 88, 12, 88, 2532, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2542, 8, 88, 10, 88, 12, 88, 2545, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2553, 8, 89, 10, 89, 12, 89, 2556, 9, 89, 1, 89, 1, 89, 3, 89, 2560, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2568, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2573, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2587, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2594, 8, 97, 10, 97, 12, 97, 2597, 9, 97, 3, 97, 2599, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2604, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2609, 8, 97, 10, 97, 12, 97, 2612, 9, 97, 3, 97, 2614, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2620, 8, 99, 1, 99, 1, 99, 5, 99, 2624, 8, 99, 10, 99, 12, 99, 2627, 9, 99, 3, 99, 2629, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2634, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2639, 8, 101, 1, 101, 1, 101, 3, 101, 2643, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 102, 3, 102, 2656, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2661, 8, 102, 1, 102, 3, 102, 2664, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2669, 8, 102, 1, 102, 1, 102, 3, 102, 2673, 8, 102, 1, 102, 3, 102, 2676, 8, 102, 1, 102, 3, 102, 2679, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2685, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2690, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2697, 8, 104, 1, 105, 3, 105, 2700, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2718, 8, 105, 3, 105, 2720, 8, 105, 1, 105, 3, 105, 2723, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2732, 8, 107, 10, 107, 12, 107, 2735, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2741, 8, 108, 10, 108, 12, 108, 2744, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2750, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2756, 8, 110, 10, 110, 12, 110, 2759, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2765, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2770, 8, 112, 1, 112, 3, 112, 2773, 8, 112, 1, 112, 3, 112, 2776, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2784, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2804, 8, 113, 10, 113, 12, 113, 2807, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2814, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2821, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2828, 8, 114, 3, 114, 2830, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2841, 8, 115, 10, 115, 12, 115, 2844, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2849, 8, 115, 3, 115, 2851, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2859, 8, 115, 10, 115, 12, 115, 2862, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2867, 8, 115, 3, 115, 2869, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 2877, 8, 117, 1, 118, 1, 118, 3, 118, 2881, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2888, 8, 119, 10, 119, 12, 119, 2891, 9, 119, 3, 119, 2893, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 3, 120, 2899, 8, 120, 1, 120, 1, 120, 3, 120, 2903, 8, 120, 3, 120, 2905, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2914, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2926, 8, 121, 3, 121, 2928, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2935, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2942, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2948, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2954, 8, 121, 3, 121, 2956, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2961, 8, 122, 10, 122, 12, 122, 2964, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2969, 8, 123, 10, 123, 12, 123, 2972, 9, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2977, 8, 124, 10, 124, 12, 124, 2980, 9, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2985, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 3, 127, 2997, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3003, 8, 128, 1, 128, 3, 128, 3006, 8, 128, 1, 128, 1, 128, 3, 128, 3010, 8, 128, 3, 128, 3012, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 3017, 8, 129, 10, 129, 12, 129, 3020, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3026, 8, 130, 10, 130, 12, 130, 3029, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 3, 131, 3035, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3043, 8, 132, 10, 132, 12, 132, 3046, 9, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 133, 1, 133, 3, 133, 3054, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3064, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3069, 8, 137, 10, 137, 12, 137, 3072, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3084, 8, 138, 3, 138, 3086, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3094, 8, 138, 10, 138, 12, 138, 3097, 9, 138, 1, 139, 3, 139, 3100, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3108, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3115, 8, 139, 10, 139, 12, 139, 3118, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3123, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3131, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3136, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3146, 8, 139, 10, 139, 12, 139, 3149, 9, 139, 1, 139, 1, 139, 3, 139, 3153, 8, 139, 1, 139, 3, 139, 3156, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3162, 8, 139, 1, 139, 1, 139, 3, 139, 3166, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3171, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3176, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3181, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3187, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3208, 8, 140, 10, 140, 12, 140, 3211, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3221, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3233, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3243, 8, 142, 11, 142, 12, 142, 3244, 1, 142, 1, 142, 3, 142, 3249, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3256, 8, 142, 11, 142, 12, 142, 3257, 1, 142, 1, 142, 3, 142, 3262, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3278, 8, 142, 10, 142, 12, 142, 3281, 9, 142, 3, 142, 3283, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3291, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3300, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3309, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3330, 8, 142, 11, 142, 12, 142, 3331, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3348, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3353, 8, 142, 10, 142, 12, 142, 3356, 9, 142, 3, 142, 3358, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3367, 8, 142, 1, 142, 1, 142, 3, 142, 3371, 8, 142, 1, 142, 1, 142, 3, 142, 3375, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3385, 8, 142, 11, 142, 12, 142, 3386, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3412, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3419, 8, 142, 1, 142, 3, 142, 3422, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3437, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3458, 8, 142, 1, 142, 1, 142, 3, 142, 3462, 8, 142, 3, 142, 3464, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3474, 8, 142, 10, 142, 12, 142, 3477, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3486, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 4, 144, 3499, 8, 144, 11, 144, 12, 144, 3500, 3, 144, 3503, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3516, 8, 149, 1, 150, 1, 150, 3, 150, 3520, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 3525, 8, 151, 11, 151, 12, 151, 3526, 1, 152, 1, 152, 1, 152, 3, 152, 3532, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 3540, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3545, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 3554, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3586, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3603, 8, 159, 1, 159, 1, 159, 3, 159, 3607, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3613, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3619, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 3626, 8, 159, 10, 159, 12, 159, 3629, 9, 159, 1, 159, 3, 159, 3632, 8, 159, 3, 159, 3634, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3639, 8, 160, 10, 160, 12, 160, 3642, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3647, 8, 161, 10, 161, 12, 161, 3650, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3655, 8, 162, 10, 162, 12, 162, 3658, 9, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3663, 8, 163, 10, 163, 12, 163, 3666, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3673, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3684, 8, 167, 10, 167, 12, 167, 3687, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3693, 8, 168, 1, 168, 3, 168, 3696, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3701, 8, 169, 10, 169, 12, 169, 3704, 9, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3709, 8, 170, 10, 170, 12, 170, 3712, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 3719, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3731, 8, 173, 10, 173, 12, 173, 3734, 9, 173, 1, 174, 1, 174, 3, 174, 3738, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3743, 8, 174, 1, 174, 3, 174, 3746, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 3757, 8, 176, 10, 176, 12, 176, 3760, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3781, 8, 179, 10, 179, 12, 179, 3784, 9, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3791, 8, 179, 10, 179, 12, 179, 3794, 9, 179, 3, 179, 3796, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3803, 8, 179, 10, 179, 12, 179, 3806, 9, 179, 3, 179, 3808, 8, 179, 3, 179, 3810, 8, 179, 1, 179, 3, 179, 3813, 8, 179, 1, 179, 3, 179, 3816, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3834, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3843, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3848, 8, 182, 10, 182, 12, 182, 3851, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3862, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 3869, 8, 185, 10, 185, 12, 185, 3872, 9, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 4, 187, 3879, 8, 187, 11, 187, 12, 187, 3880, 1, 187, 3, 187, 3884, 8, 187, 1, 188, 1, 188, 3, 188, 3888, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3894, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 3, 192, 3901, 8, 192, 1, 192, 1, 192, 3, 192, 3905, 8, 192, 1, 192, 1, 192, 3, 192, 3909, 8, 192, 1, 192, 1, 192, 3, 192, 3913, 8, 192, 1, 192, 1, 192, 3, 192, 3917, 8, 192, 1, 192, 1, 192, 3, 192, 3921, 8, 192, 1, 192, 1, 192, 3, 192, 3925, 8, 192, 1, 192, 1, 192, 3, 192, 3929, 8, 192, 1, 192, 1, 192, 3, 192, 3933, 8, 192, 1, 192, 1, 192, 3, 192, 3937, 8, 192, 1, 192, 3, 192, 3940, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3953, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3959, 8, 195, 1, 196, 1, 196, 3, 196, 3963, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 9, 1137, 1207, 1215, 1232, 1259, 1268, 1277, 1286, 1334, 4, 104, 276, 280, 284, 200, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4586, 0, 403, 1, 0, 0, 0, 2, 408, 1, 0, 0, 0, 4, 1337, 1, 0, 0, 0, 6, 1341, 1, 0, 0, 0, 8, 1343, 1, 0, 0, 0, 10, 1345, 1, 0, 0, 0, 12, 1515, 1, 0, 0, 0, 14, 1517, 1, 0, 0, 0, 16, 1532, 1, 0, 0, 0, 18, 1538, 1, 0, 0, 0, 20, 1550, 1, 0, 0, 0, 22, 1563, 1, 0, 0, 0, 24, 1566, 1, 0, 0, 0, 26, 1570, 1, 0, 0, 0, 28, 1651, 1, 0, 0, 0, 30, 1653, 1, 0, 0, 0, 32, 1657, 1, 0, 0, 0, 34, 1678, 1, 0, 0, 0, 36, 1680, 1, 0, 0, 0, 38, 1682, 1, 0, 0, 0, 40, 1689, 1, 0, 0, 0, 42, 1691, 1, 0, 0, 0, 44, 1699, 1, 0, 0, 0, 46, 1708, 1, 0, 0, 0, 48, 1719, 1, 0, 0, 0, 50, 1738, 1, 0, 0, 0, 52, 1741, 1, 0, 0, 0, 54, 1744, 1, 0, 0, 0, 56, 1755, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1777, 1, 0, 0, 0, 62, 1779, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1797, 1, 0, 0, 0, 68, 1808, 1, 0, 0, 0, 70, 1825, 1, 0, 0, 0, 72, 1833, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1841, 1, 0, 0, 0, 78, 1900, 1, 0, 0, 0, 80, 1902, 1, 0, 0, 0, 82, 1904, 1, 0, 0, 0, 84, 1906, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1910, 1, 0, 0, 0, 90, 1912, 1, 0, 0, 0, 92, 1916, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1934, 1, 0, 0, 0, 100, 1946, 1, 0, 0, 0, 102, 1998, 1, 0, 0, 0, 104, 2001, 1, 0, 0, 0, 106, 2036, 1, 0, 0, 0, 108, 2040, 1, 0, 0, 0, 110, 2049, 1, 0, 0, 0, 112, 2082, 1, 0, 0, 0, 114, 2128, 1, 0, 0, 0, 116, 2149, 1, 0, 0, 0, 118, 2181, 1, 0, 0, 0, 120, 2193, 1, 0, 0, 0, 122, 2196, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2238, 1, 0, 0, 0, 130, 2258, 1, 0, 0, 0, 132, 2264, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2274, 1, 0, 0, 0, 138, 2278, 1, 0, 0, 0, 140, 2281, 1, 0, 0, 0, 142, 2284, 1, 0, 0, 0, 144, 2310, 1, 0, 0, 0, 146, 2312, 1, 0, 0, 0, 148, 2333, 1, 0, 0, 0, 150, 2349, 1, 0, 0, 0, 152, 2390, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2422, 1, 0, 0, 0, 158, 2426, 1, 0, 0, 0, 160, 2448, 1, 0, 0, 0, 162, 2450, 1, 0, 0, 0, 164, 2480, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2489, 1, 0, 0, 0, 170, 2502, 1, 0, 0, 0, 172, 2507, 1, 0, 0, 0, 174, 2509, 1, 0, 0, 0, 176, 2524, 1, 0, 0, 0, 178, 2548, 1, 0, 0, 0, 180, 2561, 1, 0, 0, 0, 182, 2563, 1, 0, 0, 0, 184, 2565, 1, 0, 0, 0, 186, 2569, 1, 0, 0, 0, 188, 2572, 1, 0, 0, 0, 190, 2576, 1, 0, 0, 0, 192, 2580, 1, 0, 0, 0, 194, 2583, 1, 0, 0, 0, 196, 2615, 1, 0, 0, 0, 198, 2628, 1, 0, 0, 0, 200, 2633, 1, 0, 0, 0, 202, 2652, 1, 0, 0, 0, 204, 2678, 1, 0, 0, 0, 206, 2684, 1, 0, 0, 0, 208, 2686, 1, 0, 0, 0, 210, 2722, 1, 0, 0, 0, 212, 2724, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2736, 1, 0, 0, 0, 218, 2747, 1, 0, 0, 0, 220, 2751, 1, 0, 0, 0, 222, 2762, 1, 0, 0, 0, 224, 2797, 1, 0, 0, 0, 226, 2799, 1, 0, 0, 0, 228, 2829, 1, 0, 0, 0, 230, 2850, 1, 0, 0, 0, 232, 2870, 1, 0, 0, 0, 234, 2876, 1, 0, 0, 0, 236, 2880, 1, 0, 0, 0, 238, 2882, 1, 0, 0, 0, 240, 2904, 1, 0, 0, 0, 242, 2955, 1, 0, 0, 0, 244, 2957, 1, 0, 0, 0, 246, 2965, 1, 0, 0, 0, 248, 2973, 1, 0, 0, 0, 250, 2981, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2996, 1, 0, 0, 0, 256, 3002, 1, 0, 0, 0, 258, 3013, 1, 0, 0, 0, 260, 3021, 1, 0, 0, 0, 262, 3034, 1, 0, 0, 0, 264, 3049, 1, 0, 0, 0, 266, 3053, 1, 0, 0, 0, 268, 3055, 1, 0, 0, 0, 270, 3057, 1, 0, 0, 0, 272, 3063, 1, 0, 0, 0, 274, 3065, 1, 0, 0, 0, 276, 3085, 1, 0, 0, 0, 278, 3180, 1, 0, 0, 0, 280, 3186, 1, 0, 0, 0, 282, 3212, 1, 0, 0, 0, 284, 3463, 1, 0, 0, 0, 286, 3485, 1, 0, 0, 0, 288, 3502, 1, 0, 0, 0, 290, 3504, 1, 0, 0, 0, 292, 3506, 1, 0, 0, 0, 294, 3508, 1, 0, 0, 0, 296, 3510, 1, 0, 0, 0, 298, 3512, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3524, 1, 0, 0, 0, 304, 3528, 1, 0, 0, 0, 306, 3533, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3546, 1, 0, 0, 0, 312, 3548, 1, 0, 0, 0, 314, 3553, 1, 0, 0, 0, 316, 3585, 1, 0, 0, 0, 318, 3633, 1, 0, 0, 0, 320, 3635, 1, 0, 0, 0, 322, 3643, 1, 0, 0, 0, 324, 3651, 1, 0, 0, 0, 326, 3659, 1, 0, 0, 0, 328, 3672, 1, 0, 0, 0, 330, 3674, 1, 0, 0, 0, 332, 3677, 1, 0, 0, 0, 334, 3680, 1, 0, 0, 0, 336, 3688, 1, 0, 0, 0, 338, 3697, 1, 0, 0, 0, 340, 3705, 1, 0, 0, 0, 342, 3718, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3727, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3747, 1, 0, 0, 0, 352, 3752, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3765, 1, 0, 0, 0, 358, 3815, 1, 0, 0, 0, 360, 3833, 1, 0, 0, 0, 362, 3842, 1, 0, 0, 0, 364, 3844, 1, 0, 0, 0, 366, 3861, 1, 0, 0, 0, 368, 3863, 1, 0, 0, 0, 370, 3865, 1, 0, 0, 0, 372, 3873, 1, 0, 0, 0, 374, 3883, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3893, 1, 0, 0, 0, 380, 3895, 1, 0, 0, 0, 382, 3897, 1, 0, 0, 0, 384, 3939, 1, 0, 0, 0, 386, 3952, 1, 0, 0, 0, 388, 3954, 1, 0, 0, 0, 390, 3958, 1, 0, 0, 0, 392, 3962, 1, 0, 0, 0, 394, 3964, 1, 0, 0, 0, 396, 3966, 1, 0, 0, 0, 398, 3968, 1, 0, 0, 0, 400, 402, 3, 2, 1, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 5, 0, 0, 1, 407, 1, 1, 0, 0, 0, 408, 410, 3, 4, 2, 0, 409, 411, 5, 1, 0, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 3, 1, 0, 0, 0, 412, 1338, 3, 26, 13, 0, 413, 415, 3, 44, 22, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1338, 3, 78, 39, 0, 417, 419, 5, 330, 0, 0, 418, 420, 3, 36, 18, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1338, 3, 80, 40, 0, 422, 423, 5, 269, 0, 0, 423, 426, 5, 37, 0, 0, 424, 427, 3, 376, 188, 0, 425, 427, 3, 388, 194, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 1338, 1, 0, 0, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 36, 18, 0, 430, 432, 3, 190, 95, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 441, 3, 82, 41, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 22, 11, 0, 436, 437, 5, 346, 0, 0, 437, 438, 7, 0, 0, 0, 438, 440, 3, 54, 27, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 1338, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 444, 445, 5, 11, 0, 0, 445, 446, 3, 36, 18, 0, 446, 447, 3, 80, 40, 0, 447, 448, 5, 269, 0, 0, 448, 449, 7, 0, 0, 0, 449, 450, 3, 54, 27, 0, 450, 1338, 1, 0, 0, 0, 451, 452, 5, 11, 0, 0, 452, 453, 3, 36, 18, 0, 453, 454, 3, 80, 40, 0, 454, 455, 5, 269, 0, 0, 455, 456, 3, 22, 11, 0, 456, 1338, 1, 0, 0, 0, 457, 458, 5, 96, 0, 0, 458, 460, 3, 36, 18, 0, 459, 461, 3, 192, 96, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 3, 80, 40, 0, 463, 465, 7, 1, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 1338, 1, 0, 0, 0, 466, 467, 5, 273, 0, 0, 467, 470, 3, 38, 19, 0, 468, 469, 7, 2, 0, 0, 469, 471, 3, 246, 123, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 476, 1, 0, 0, 0, 472, 474, 5, 163, 0, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 3, 388, 194, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1338, 1, 0, 0, 0, 478, 483, 3, 14, 7, 0, 479, 480, 5, 2, 0, 0, 480, 481, 3, 338, 169, 0, 481, 482, 5, 3, 0, 0, 482, 484, 1, 0, 0, 0, 483, 479, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 487, 3, 48, 24, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 493, 3, 50, 25, 0, 489, 491, 5, 20, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 3, 26, 13, 0, 493, 490, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1338, 1, 0, 0, 0, 495, 496, 5, 59, 0, 0, 496, 498, 5, 293, 0, 0, 497, 499, 3, 190, 95, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 84, 42, 0, 501, 502, 5, 163, 0, 0, 502, 512, 3, 86, 43, 0, 503, 511, 3, 48, 24, 0, 504, 511, 3, 242, 121, 0, 505, 511, 3, 70, 35, 0, 506, 511, 3, 22, 11, 0, 507, 508, 5, 297, 0, 0, 508, 511, 3, 54, 27, 0, 509, 511, 3, 52, 26, 0, 510, 503, 1, 0, 0, 0, 510, 504, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 510, 506, 1, 0, 0, 0, 510, 507, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 1338, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 520, 3, 16, 8, 0, 516, 517, 5, 2, 0, 0, 517, 518, 3, 338, 169, 0, 518, 519, 5, 3, 0, 0, 519, 521, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 524, 3, 48, 24, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 530, 3, 50, 25, 0, 526, 528, 5, 20, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 3, 26, 13, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 1338, 1, 0, 0, 0, 532, 533, 5, 13, 0, 0, 533, 534, 5, 293, 0, 0, 534, 536, 3, 86, 43, 0, 535, 537, 3, 32, 16, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 5, 55, 0, 0, 539, 547, 5, 282, 0, 0, 540, 548, 5, 196, 0, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 50, 0, 0, 543, 548, 3, 94, 47, 0, 544, 545, 5, 119, 0, 0, 545, 546, 5, 10, 0, 0, 546, 548, 5, 50, 0, 0, 547, 540, 1, 0, 0, 0, 547, 541, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 1338, 1, 0, 0, 0, 549, 550, 5, 13, 0, 0, 550, 553, 5, 294, 0, 0, 551, 552, 7, 2, 0, 0, 552, 554, 3, 80, 40, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 55, 0, 0, 556, 558, 5, 282, 0, 0, 557, 559, 5, 196, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 1338, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 86, 43, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 49, 0, 0, 565, 566, 3, 322, 161, 0, 566, 1338, 1, 0, 0, 0, 567, 568, 5, 11, 0, 0, 568, 569, 5, 293, 0, 0, 569, 570, 3, 86, 43, 0, 570, 571, 5, 8, 0, 0, 571, 572, 5, 50, 0, 0, 572, 573, 5, 2, 0, 0, 573, 574, 3, 320, 160, 0, 574, 575, 5, 3, 0, 0, 575, 1338, 1, 0, 0, 0, 576, 577, 5, 11, 0, 0, 577, 578, 5, 293, 0, 0, 578, 579, 3, 86, 43, 0, 579, 580, 5, 241, 0, 0, 580, 581, 5, 49, 0, 0, 581, 582, 3, 92, 46, 0, 582, 583, 5, 309, 0, 0, 583, 584, 3, 96, 48, 0, 584, 1338, 1, 0, 0, 0, 585, 586, 5, 11, 0, 0, 586, 587, 5, 293, 0, 0, 587, 588, 3, 86, 43, 0, 588, 589, 5, 96, 0, 0, 589, 591, 5, 49, 0, 0, 590, 592, 3, 192, 96, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 3, 92, 46, 0, 594, 1338, 1, 0, 0, 0, 595, 596, 5, 11, 0, 0, 596, 597, 5, 293, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 96, 0, 0, 599, 601, 5, 50, 0, 0, 600, 602, 3, 192, 96, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 2, 0, 0, 604, 605, 3, 94, 47, 0, 605, 606, 5, 3, 0, 0, 606, 1338, 1, 0, 0, 0, 607, 612, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 613, 3, 86, 43, 0, 610, 611, 5, 338, 0, 0, 611, 613, 3, 90, 45, 0, 612, 608, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 241, 0, 0, 615, 616, 5, 309, 0, 0, 616, 617, 3, 246, 123, 0, 617, 1338, 1, 0, 0, 0, 618, 623, 5, 11, 0, 0, 619, 620, 5, 293, 0, 0, 620, 624, 3, 86, 43, 0, 621, 622, 5, 338, 0, 0, 622, 624, 3, 90, 45, 0, 623, 619, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 269, 0, 0, 626, 627, 5, 297, 0, 0, 627, 628, 3, 54, 27, 0, 628, 1338, 1, 0, 0, 0, 629, 634, 5, 11, 0, 0, 630, 631, 5, 293, 0, 0, 631, 635, 3, 86, 43, 0, 632, 633, 5, 338, 0, 0, 633, 635, 3, 90, 45, 0, 634, 630, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 5, 328, 0, 0, 637, 639, 5, 297, 0, 0, 638, 640, 3, 192, 96, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 54, 27, 0, 642, 1338, 1, 0, 0, 0, 643, 644, 5, 11, 0, 0, 644, 645, 5, 293, 0, 0, 645, 646, 3, 86, 43, 0, 646, 648, 7, 3, 0, 0, 647, 649, 5, 49, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 92, 46, 0, 651, 653, 3, 386, 193, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 1338, 1, 0, 0, 0, 654, 655, 5, 11, 0, 0, 655, 656, 5, 293, 0, 0, 656, 658, 3, 86, 43, 0, 657, 659, 3, 32, 16, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 39, 0, 0, 661, 663, 5, 49, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 92, 46, 0, 665, 667, 3, 336, 168, 0, 666, 668, 3, 314, 157, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 1338, 1, 0, 0, 0, 669, 670, 5, 11, 0, 0, 670, 671, 5, 293, 0, 0, 671, 673, 3, 86, 43, 0, 672, 674, 3, 32, 16, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 244, 0, 0, 676, 677, 5, 50, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 3, 324, 162, 0, 679, 680, 5, 3, 0, 0, 680, 1338, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 269, 0, 0, 688, 689, 5, 266, 0, 0, 689, 693, 3, 388, 194, 0, 690, 691, 5, 346, 0, 0, 691, 692, 5, 267, 0, 0, 692, 694, 3, 54, 27, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 1338, 1, 0, 0, 0, 695, 696, 5, 11, 0, 0, 696, 697, 5, 293, 0, 0, 697, 699, 3, 86, 43, 0, 698, 700, 3, 32, 16, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 269, 0, 0, 702, 703, 5, 267, 0, 0, 703, 704, 3, 54, 27, 0, 704, 1338, 1, 0, 0, 0, 705, 710, 5, 11, 0, 0, 706, 707, 5, 293, 0, 0, 707, 711, 3, 86, 43, 0, 708, 709, 5, 338, 0, 0, 709, 711, 3, 90, 45, 0, 710, 706, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 5, 8, 0, 0, 713, 715, 3, 190, 95, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 30, 15, 0, 717, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 1338, 1, 0, 0, 0, 721, 722, 5, 11, 0, 0, 722, 723, 5, 293, 0, 0, 723, 724, 3, 86, 43, 0, 724, 725, 3, 32, 16, 0, 725, 726, 5, 241, 0, 0, 726, 727, 5, 309, 0, 0, 727, 728, 3, 32, 16, 0, 728, 1338, 1, 0, 0, 0, 729, 734, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 735, 3, 86, 43, 0, 732, 733, 5, 338, 0, 0, 733, 735, 3, 90, 45, 0, 734, 730, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 5, 96, 0, 0, 737, 739, 3, 192, 96, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 745, 3, 32, 16, 0, 741, 742, 5, 4, 0, 0, 742, 744, 3, 32, 16, 0, 743, 741, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 5, 230, 0, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1338, 1, 0, 0, 0, 751, 752, 5, 11, 0, 0, 752, 753, 5, 293, 0, 0, 753, 755, 3, 86, 43, 0, 754, 756, 3, 32, 16, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 22, 11, 0, 759, 1338, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 293, 0, 0, 762, 763, 3, 86, 43, 0, 763, 764, 5, 237, 0, 0, 764, 765, 5, 219, 0, 0, 765, 1338, 1, 0, 0, 0, 766, 767, 5, 11, 0, 0, 767, 768, 5, 176, 0, 0, 768, 769, 5, 338, 0, 0, 769, 770, 3, 90, 45, 0, 770, 771, 7, 4, 0, 0, 771, 772, 5, 248, 0, 0, 772, 1338, 1, 0, 0, 0, 773, 774, 5, 11, 0, 0, 774, 775, 5, 176, 0, 0, 775, 776, 5, 338, 0, 0, 776, 777, 3, 90, 45, 0, 777, 778, 5, 269, 0, 0, 778, 779, 5, 297, 0, 0, 779, 780, 3, 54, 27, 0, 780, 1338, 1, 0, 0, 0, 781, 782, 5, 96, 0, 0, 782, 784, 5, 293, 0, 0, 783, 785, 3, 192, 96, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 3, 86, 43, 0, 787, 789, 5, 230, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1338, 1, 0, 0, 0, 790, 791, 5, 96, 0, 0, 791, 793, 5, 338, 0, 0, 792, 794, 3, 192, 96, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 1338, 3, 90, 45, 0, 796, 797, 5, 96, 0, 0, 797, 798, 5, 176, 0, 0, 798, 800, 5, 338, 0, 0, 799, 801, 3, 192, 96, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 1338, 3, 90, 45, 0, 803, 806, 5, 59, 0, 0, 804, 805, 5, 208, 0, 0, 805, 807, 5, 244, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 812, 1, 0, 0, 0, 808, 810, 5, 128, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 298, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 5, 338, 0, 0, 815, 817, 3, 190, 95, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 3, 88, 44, 0, 819, 821, 3, 220, 110, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 1, 0, 0, 0, 822, 829, 3, 24, 12, 0, 823, 824, 5, 218, 0, 0, 824, 825, 5, 203, 0, 0, 825, 829, 3, 212, 106, 0, 826, 827, 5, 297, 0, 0, 827, 829, 3, 54, 27, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 20, 0, 0, 834, 835, 3, 26, 13, 0, 835, 1338, 1, 0, 0, 0, 836, 839, 5, 59, 0, 0, 837, 838, 5, 208, 0, 0, 838, 840, 5, 244, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 128, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 5, 298, 0, 0, 845, 846, 5, 338, 0, 0, 846, 851, 3, 88, 44, 0, 847, 848, 5, 2, 0, 0, 848, 849, 3, 334, 167, 0, 849, 850, 5, 3, 0, 0, 850, 852, 1, 0, 0, 0, 851, 847, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 856, 3, 48, 24, 0, 854, 855, 5, 207, 0, 0, 855, 857, 3, 54, 27, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 1338, 1, 0, 0, 0, 858, 859, 5, 11, 0, 0, 859, 860, 5, 338, 0, 0, 860, 862, 3, 90, 45, 0, 861, 863, 5, 20, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 26, 13, 0, 865, 1338, 1, 0, 0, 0, 866, 869, 5, 59, 0, 0, 867, 868, 5, 208, 0, 0, 868, 870, 5, 244, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 873, 5, 298, 0, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 125, 0, 0, 875, 877, 3, 190, 95, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 368, 184, 0, 879, 880, 5, 20, 0, 0, 880, 890, 3, 388, 194, 0, 881, 882, 5, 332, 0, 0, 882, 887, 3, 76, 38, 0, 883, 884, 5, 4, 0, 0, 884, 886, 3, 76, 38, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 881, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 1338, 1, 0, 0, 0, 892, 893, 5, 59, 0, 0, 893, 894, 5, 176, 0, 0, 894, 896, 5, 338, 0, 0, 895, 897, 3, 190, 95, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 3, 88, 44, 0, 899, 901, 3, 48, 24, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 917, 1, 0, 0, 0, 902, 903, 5, 207, 0, 0, 903, 916, 3, 54, 27, 0, 904, 905, 5, 218, 0, 0, 905, 906, 5, 31, 0, 0, 906, 916, 3, 260, 130, 0, 907, 916, 3, 20, 10, 0, 908, 916, 3, 18, 9, 0, 909, 916, 3, 242, 121, 0, 910, 916, 3, 70, 35, 0, 911, 916, 3, 22, 11, 0, 912, 916, 3, 24, 12, 0, 913, 914, 5, 297, 0, 0, 914, 916, 3, 54, 27, 0, 915, 902, 1, 0, 0, 0, 915, 904, 1, 0, 0, 0, 915, 907, 1, 0, 0, 0, 915, 908, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 910, 1, 0, 0, 0, 915, 911, 1, 0, 0, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 920, 921, 5, 20, 0, 0, 921, 922, 3, 26, 13, 0, 922, 1338, 1, 0, 0, 0, 923, 925, 5, 96, 0, 0, 924, 926, 5, 298, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 5, 125, 0, 0, 928, 930, 3, 192, 96, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 1338, 3, 366, 183, 0, 932, 935, 5, 81, 0, 0, 933, 934, 5, 208, 0, 0, 934, 936, 5, 244, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 5, 336, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 3, 366, 183, 0, 941, 943, 3, 318, 159, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 946, 3, 332, 166, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 1338, 1, 0, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 298, 0, 0, 949, 951, 5, 336, 0, 0, 950, 952, 3, 192, 96, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 956, 1, 0, 0, 0, 953, 957, 3, 86, 43, 0, 954, 957, 3, 90, 45, 0, 955, 957, 3, 366, 183, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 1338, 1, 0, 0, 0, 958, 960, 5, 106, 0, 0, 959, 961, 7, 5, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 1338, 3, 4, 2, 0, 963, 964, 5, 273, 0, 0, 964, 967, 5, 294, 0, 0, 965, 966, 7, 2, 0, 0, 966, 968, 3, 80, 40, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 973, 1, 0, 0, 0, 969, 971, 5, 163, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 388, 194, 0, 973, 970, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1338, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 293, 0, 0, 977, 980, 5, 108, 0, 0, 978, 979, 7, 2, 0, 0, 979, 981, 3, 80, 40, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 5, 163, 0, 0, 983, 985, 3, 388, 194, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1338, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 297, 0, 0, 989, 994, 3, 86, 43, 0, 990, 991, 5, 2, 0, 0, 991, 992, 3, 58, 29, 0, 992, 993, 5, 3, 0, 0, 993, 995, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1338, 1, 0, 0, 0, 996, 997, 5, 273, 0, 0, 997, 998, 5, 50, 0, 0, 998, 999, 7, 2, 0, 0, 999, 1002, 3, 86, 43, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 80, 40, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1338, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1008, 5, 339, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 80, 40, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1014, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 3, 388, 194, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1338, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1018, 5, 219, 0, 0, 1018, 1020, 3, 86, 43, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1338, 1, 0, 0, 0, 1022, 1024, 5, 273, 0, 0, 1023, 1025, 3, 148, 74, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1029, 5, 126, 0, 0, 1027, 1028, 7, 2, 0, 0, 1028, 1030, 3, 80, 40, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1038, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1036, 1, 0, 0, 0, 1034, 1037, 3, 246, 123, 0, 1035, 1037, 3, 388, 194, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1032, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1338, 1, 0, 0, 0, 1040, 1041, 5, 273, 0, 0, 1041, 1042, 5, 59, 0, 0, 1042, 1043, 5, 293, 0, 0, 1043, 1046, 3, 86, 43, 0, 1044, 1045, 5, 20, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1338, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 62, 0, 0, 1050, 1338, 3, 36, 18, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1057, 5, 38, 0, 0, 1053, 1055, 5, 163, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 3, 388, 194, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1338, 1, 0, 0, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1061, 5, 176, 0, 0, 1061, 1064, 5, 339, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1065, 3, 80, 40, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1070, 1, 0, 0, 0, 1066, 1068, 5, 163, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 388, 194, 0, 1070, 1067, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1338, 1, 0, 0, 0, 1072, 1073, 5, 273, 0, 0, 1073, 1074, 5, 59, 0, 0, 1074, 1075, 5, 176, 0, 0, 1075, 1076, 5, 338, 0, 0, 1076, 1079, 3, 90, 45, 0, 1077, 1078, 5, 20, 0, 0, 1078, 1080, 5, 266, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1338, 1, 0, 0, 0, 1081, 1082, 7, 6, 0, 0, 1082, 1084, 5, 125, 0, 0, 1083, 1085, 5, 108, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1338, 3, 40, 20, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1090, 5, 72, 0, 0, 1089, 1091, 5, 108, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1338, 3, 80, 40, 0, 1093, 1095, 7, 6, 0, 0, 1094, 1096, 5, 293, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1099, 7, 7, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 3, 86, 43, 0, 1101, 1103, 3, 32, 16, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 1106, 3, 42, 21, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1338, 1, 0, 0, 0, 1107, 1109, 7, 6, 0, 0, 1108, 1110, 5, 232, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1338, 3, 26, 13, 0, 1112, 1113, 5, 51, 0, 0, 1113, 1114, 5, 203, 0, 0, 1114, 1115, 3, 36, 18, 0, 1115, 1116, 3, 80, 40, 0, 1116, 1117, 5, 153, 0, 0, 1117, 1118, 3, 390, 195, 0, 1118, 1338, 1, 0, 0, 0, 1119, 1120, 5, 51, 0, 0, 1120, 1121, 5, 203, 0, 0, 1121, 1122, 5, 293, 0, 0, 1122, 1123, 3, 86, 43, 0, 1123, 1124, 5, 153, 0, 0, 1124, 1125, 3, 390, 195, 0, 1125, 1338, 1, 0, 0, 0, 1126, 1127, 5, 240, 0, 0, 1127, 1128, 5, 293, 0, 0, 1128, 1338, 3, 86, 43, 0, 1129, 1130, 5, 240, 0, 0, 1130, 1131, 5, 125, 0, 0, 1131, 1338, 3, 366, 183, 0, 1132, 1140, 5, 240, 0, 0, 1133, 1141, 3, 388, 194, 0, 1134, 1136, 9, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1133, 1, 0, 0, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1338, 1, 0, 0, 0, 1142, 1143, 5, 240, 0, 0, 1143, 1144, 5, 176, 0, 0, 1144, 1145, 5, 338, 0, 0, 1145, 1338, 3, 90, 45, 0, 1146, 1148, 5, 33, 0, 0, 1147, 1149, 5, 159, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 293, 0, 0, 1151, 1154, 3, 86, 43, 0, 1152, 1153, 5, 207, 0, 0, 1153, 1155, 3, 54, 27, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1158, 5, 20, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 3, 26, 13, 0, 1160, 1157, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1338, 1, 0, 0, 0, 1162, 1163, 5, 322, 0, 0, 1163, 1165, 5, 293, 0, 0, 1164, 1166, 3, 192, 96, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1338, 3, 86, 43, 0, 1168, 1169, 5, 43, 0, 0, 1169, 1338, 5, 33, 0, 0, 1170, 1171, 5, 168, 0, 0, 1171, 1173, 5, 70, 0, 0, 1172, 1174, 5, 169, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 145, 0, 0, 1176, 1178, 3, 388, 194, 0, 1177, 1179, 5, 216, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 152, 0, 0, 1181, 1182, 5, 293, 0, 0, 1182, 1184, 3, 86, 43, 0, 1183, 1185, 3, 32, 16, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1338, 1, 0, 0, 0, 1186, 1187, 5, 317, 0, 0, 1187, 1188, 5, 293, 0, 0, 1188, 1190, 3, 86, 43, 0, 1189, 1191, 3, 32, 16, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1338, 1, 0, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 242, 0, 0, 1196, 1197, 5, 293, 0, 0, 1197, 1200, 3, 86, 43, 0, 1198, 1199, 7, 8, 0, 0, 1199, 1201, 5, 219, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1338, 1, 0, 0, 0, 1202, 1203, 7, 9, 0, 0, 1203, 1207, 3, 376, 188, 0, 1204, 1206, 9, 0, 0, 0, 1205, 1204, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1338, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 269, 0, 0, 1211, 1215, 5, 253, 0, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1338, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1220, 5, 301, 0, 0, 1220, 1221, 5, 350, 0, 0, 1221, 1338, 3, 298, 149, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1224, 5, 301, 0, 0, 1224, 1225, 5, 350, 0, 0, 1225, 1338, 3, 6, 3, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1232, 5, 350, 0, 0, 1229, 1231, 9, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1338, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1338, 3, 134, 67, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 7, 10, 0, 0, 1240, 1241, 5, 2, 0, 0, 1241, 1242, 3, 244, 122, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1244, 5, 352, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 26, 13, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1338, 1, 0, 0, 0, 1248, 1249, 5, 269, 0, 0, 1249, 1250, 3, 8, 4, 0, 1250, 1251, 5, 352, 0, 0, 1251, 1252, 3, 10, 5, 0, 1252, 1338, 1, 0, 0, 0, 1253, 1254, 5, 269, 0, 0, 1254, 1262, 3, 8, 4, 0, 1255, 1259, 5, 352, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1255, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1338, 1, 0, 0, 0, 1264, 1268, 5, 269, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 352, 0, 0, 1272, 1338, 3, 10, 5, 0, 1273, 1277, 5, 269, 0, 0, 1274, 1276, 9, 0, 0, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1338, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1281, 5, 245, 0, 0, 1281, 1338, 3, 8, 4, 0, 1282, 1286, 5, 245, 0, 0, 1283, 1285, 9, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1338, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1290, 5, 59, 0, 0, 1290, 1292, 5, 142, 0, 0, 1291, 1293, 3, 190, 95, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 3, 376, 188, 0, 1295, 1297, 5, 203, 0, 0, 1296, 1298, 5, 293, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1302, 3, 86, 43, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1303, 3, 376, 188, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 2, 0, 0, 1305, 1306, 3, 248, 124, 0, 1306, 1309, 5, 3, 0, 0, 1307, 1308, 5, 207, 0, 0, 1308, 1310, 3, 54, 27, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 96, 0, 0, 1312, 1314, 5, 142, 0, 0, 1313, 1315, 3, 192, 96, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 3, 376, 188, 0, 1317, 1319, 5, 203, 0, 0, 1318, 1320, 5, 293, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 86, 43, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 205, 0, 0, 1324, 1326, 3, 86, 43, 0, 1325, 1327, 3, 138, 69, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 354, 177, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1334, 3, 12, 6, 0, 1331, 1333, 9, 0, 0, 0, 1332, 1331, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 412, 1, 0, 0, 0, 1337, 414, 1, 0, 0, 0, 1337, 417, 1, 0, 0, 0, 1337, 422, 1, 0, 0, 0, 1337, 428, 1, 0, 0, 0, 1337, 444, 1, 0, 0, 0, 1337, 451, 1, 0, 0, 0, 1337, 457, 1, 0, 0, 0, 1337, 466, 1, 0, 0, 0, 1337, 478, 1, 0, 0, 0, 1337, 495, 1, 0, 0, 0, 1337, 515, 1, 0, 0, 0, 1337, 532, 1, 0, 0, 0, 1337, 549, 1, 0, 0, 0, 1337, 560, 1, 0, 0, 0, 1337, 567, 1, 0, 0, 0, 1337, 576, 1, 0, 0, 0, 1337, 585, 1, 0, 0, 0, 1337, 595, 1, 0, 0, 0, 1337, 607, 1, 0, 0, 0, 1337, 618, 1, 0, 0, 0, 1337, 629, 1, 0, 0, 0, 1337, 643, 1, 0, 0, 0, 1337, 654, 1, 0, 0, 0, 1337, 669, 1, 0, 0, 0, 1337, 681, 1, 0, 0, 0, 1337, 695, 1, 0, 0, 0, 1337, 705, 1, 0, 0, 0, 1337, 721, 1, 0, 0, 0, 1337, 729, 1, 0, 0, 0, 1337, 751, 1, 0, 0, 0, 1337, 760, 1, 0, 0, 0, 1337, 766, 1, 0, 0, 0, 1337, 773, 1, 0, 0, 0, 1337, 781, 1, 0, 0, 0, 1337, 790, 1, 0, 0, 0, 1337, 796, 1, 0, 0, 0, 1337, 803, 1, 0, 0, 0, 1337, 836, 1, 0, 0, 0, 1337, 858, 1, 0, 0, 0, 1337, 866, 1, 0, 0, 0, 1337, 892, 1, 0, 0, 0, 1337, 923, 1, 0, 0, 0, 1337, 932, 1, 0, 0, 0, 1337, 947, 1, 0, 0, 0, 1337, 958, 1, 0, 0, 0, 1337, 963, 1, 0, 0, 0, 1337, 975, 1, 0, 0, 0, 1337, 987, 1, 0, 0, 0, 1337, 996, 1, 0, 0, 0, 1337, 1004, 1, 0, 0, 0, 1337, 1016, 1, 0, 0, 0, 1337, 1022, 1, 0, 0, 0, 1337, 1040, 1, 0, 0, 0, 1337, 1048, 1, 0, 0, 0, 1337, 1051, 1, 0, 0, 0, 1337, 1059, 1, 0, 0, 0, 1337, 1072, 1, 0, 0, 0, 1337, 1081, 1, 0, 0, 0, 1337, 1087, 1, 0, 0, 0, 1337, 1093, 1, 0, 0, 0, 1337, 1107, 1, 0, 0, 0, 1337, 1112, 1, 0, 0, 0, 1337, 1119, 1, 0, 0, 0, 1337, 1126, 1, 0, 0, 0, 1337, 1129, 1, 0, 0, 0, 1337, 1132, 1, 0, 0, 0, 1337, 1142, 1, 0, 0, 0, 1337, 1146, 1, 0, 0, 0, 1337, 1162, 1, 0, 0, 0, 1337, 1168, 1, 0, 0, 0, 1337, 1170, 1, 0, 0, 0, 1337, 1186, 1, 0, 0, 0, 1337, 1193, 1, 0, 0, 0, 1337, 1202, 1, 0, 0, 0, 1337, 1210, 1, 0, 0, 0, 1337, 1218, 1, 0, 0, 0, 1337, 1222, 1, 0, 0, 0, 1337, 1226, 1, 0, 0, 0, 1337, 1235, 1, 0, 0, 0, 1337, 1238, 1, 0, 0, 0, 1337, 1248, 1, 0, 0, 0, 1337, 1253, 1, 0, 0, 0, 1337, 1264, 1, 0, 0, 0, 1337, 1273, 1, 0, 0, 0, 1337, 1280, 1, 0, 0, 0, 1337, 1282, 1, 0, 0, 0, 1337, 1289, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 5, 1, 0, 0, 0, 1339, 1342, 3, 388, 194, 0, 1340, 1342, 5, 169, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 7, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 9, 1, 0, 0, 0, 1345, 1346, 3, 382, 191, 0, 1346, 11, 1, 0, 0, 0, 1347, 1348, 5, 59, 0, 0, 1348, 1516, 5, 253, 0, 0, 1349, 1350, 5, 96, 0, 0, 1350, 1516, 5, 253, 0, 0, 1351, 1353, 5, 129, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1516, 1, 0, 0, 0, 1355, 1357, 5, 249, 0, 0, 1356, 1358, 5, 253, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1516, 1, 0, 0, 0, 1359, 1360, 5, 273, 0, 0, 1360, 1516, 5, 129, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1364, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1516, 1, 0, 0, 0, 1366, 1367, 5, 273, 0, 0, 1367, 1516, 5, 228, 0, 0, 1368, 1369, 5, 273, 0, 0, 1369, 1516, 5, 254, 0, 0, 1370, 1371, 5, 273, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1516, 5, 254, 0, 0, 1373, 1374, 5, 107, 0, 0, 1374, 1516, 5, 293, 0, 0, 1375, 1376, 5, 139, 0, 0, 1376, 1516, 5, 293, 0, 0, 1377, 1378, 5, 273, 0, 0, 1378, 1516, 5, 54, 0, 0, 1379, 1380, 5, 273, 0, 0, 1380, 1381, 5, 59, 0, 0, 1381, 1516, 5, 293, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1516, 5, 313, 0, 0, 1384, 1385, 5, 273, 0, 0, 1385, 1516, 5, 143, 0, 0, 1386, 1387, 5, 273, 0, 0, 1387, 1516, 5, 172, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1516, 5, 142, 0, 0, 1390, 1391, 5, 96, 0, 0, 1391, 1516, 5, 142, 0, 0, 1392, 1393, 5, 11, 0, 0, 1393, 1516, 5, 142, 0, 0, 1394, 1395, 5, 171, 0, 0, 1395, 1516, 5, 293, 0, 0, 1396, 1397, 5, 171, 0, 0, 1397, 1516, 5, 72, 0, 0, 1398, 1399, 5, 326, 0, 0, 1399, 1516, 5, 293, 0, 0, 1400, 1401, 5, 326, 0, 0, 1401, 1516, 5, 72, 0, 0, 1402, 1403, 5, 59, 0, 0, 1403, 1404, 5, 298, 0, 0, 1404, 1516, 5, 175, 0, 0, 1405, 1406, 5, 96, 0, 0, 1406, 1407, 5, 298, 0, 0, 1407, 1516, 5, 175, 0, 0, 1408, 1409, 5, 11, 0, 0, 1409, 1410, 5, 293, 0, 0, 1410, 1411, 3, 86, 43, 0, 1411, 1412, 5, 197, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1516, 1, 0, 0, 0, 1414, 1415, 5, 11, 0, 0, 1415, 1416, 5, 293, 0, 0, 1416, 1417, 3, 86, 43, 0, 1417, 1418, 5, 45, 0, 0, 1418, 1419, 5, 31, 0, 0, 1419, 1516, 1, 0, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 279, 0, 0, 1425, 1516, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 275, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1516, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 275, 0, 0, 1437, 1516, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 197, 0, 0, 1442, 1443, 5, 283, 0, 0, 1443, 1444, 5, 20, 0, 0, 1444, 1445, 5, 89, 0, 0, 1445, 1516, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 269, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 170, 0, 0, 1452, 1516, 1, 0, 0, 0, 1453, 1454, 5, 11, 0, 0, 1454, 1455, 5, 293, 0, 0, 1455, 1456, 3, 86, 43, 0, 1456, 1457, 5, 103, 0, 0, 1457, 1458, 5, 217, 0, 0, 1458, 1516, 1, 0, 0, 0, 1459, 1460, 5, 11, 0, 0, 1460, 1461, 5, 293, 0, 0, 1461, 1462, 3, 86, 43, 0, 1462, 1463, 5, 18, 0, 0, 1463, 1464, 5, 217, 0, 0, 1464, 1516, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 320, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1516, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 310, 0, 0, 1475, 1516, 1, 0, 0, 0, 1476, 1477, 5, 11, 0, 0, 1477, 1478, 5, 293, 0, 0, 1478, 1480, 3, 86, 43, 0, 1479, 1481, 3, 32, 16, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 53, 0, 0, 1483, 1516, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 56, 0, 0, 1491, 1516, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 269, 0, 0, 1499, 1500, 5, 115, 0, 0, 1500, 1516, 1, 0, 0, 0, 1501, 1502, 5, 11, 0, 0, 1502, 1503, 5, 293, 0, 0, 1503, 1505, 3, 86, 43, 0, 1504, 1506, 3, 32, 16, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 244, 0, 0, 1508, 1509, 5, 50, 0, 0, 1509, 1516, 1, 0, 0, 0, 1510, 1511, 5, 281, 0, 0, 1511, 1516, 5, 312, 0, 0, 1512, 1516, 5, 52, 0, 0, 1513, 1516, 5, 255, 0, 0, 1514, 1516, 5, 88, 0, 0, 1515, 1347, 1, 0, 0, 0, 1515, 1349, 1, 0, 0, 0, 1515, 1351, 1, 0, 0, 0, 1515, 1355, 1, 0, 0, 0, 1515, 1359, 1, 0, 0, 0, 1515, 1361, 1, 0, 0, 0, 1515, 1366, 1, 0, 0, 0, 1515, 1368, 1, 0, 0, 0, 1515, 1370, 1, 0, 0, 0, 1515, 1373, 1, 0, 0, 0, 1515, 1375, 1, 0, 0, 0, 1515, 1377, 1, 0, 0, 0, 1515, 1379, 1, 0, 0, 0, 1515, 1382, 1, 0, 0, 0, 1515, 1384, 1, 0, 0, 0, 1515, 1386, 1, 0, 0, 0, 1515, 1388, 1, 0, 0, 0, 1515, 1390, 1, 0, 0, 0, 1515, 1392, 1, 0, 0, 0, 1515, 1394, 1, 0, 0, 0, 1515, 1396, 1, 0, 0, 0, 1515, 1398, 1, 0, 0, 0, 1515, 1400, 1, 0, 0, 0, 1515, 1402, 1, 0, 0, 0, 1515, 1405, 1, 0, 0, 0, 1515, 1408, 1, 0, 0, 0, 1515, 1414, 1, 0, 0, 0, 1515, 1420, 1, 0, 0, 0, 1515, 1426, 1, 0, 0, 0, 1515, 1432, 1, 0, 0, 0, 1515, 1438, 1, 0, 0, 0, 1515, 1446, 1, 0, 0, 0, 1515, 1453, 1, 0, 0, 0, 1515, 1459, 1, 0, 0, 0, 1515, 1465, 1, 0, 0, 0, 1515, 1471, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1484, 1, 0, 0, 0, 1515, 1492, 1, 0, 0, 0, 1515, 1501, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 13, 1, 0, 0, 0, 1517, 1519, 5, 59, 0, 0, 1518, 1520, 5, 298, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 5, 109, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 293, 0, 0, 1525, 1527, 3, 190, 95, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 3, 84, 42, 0, 1529, 15, 1, 0, 0, 0, 1530, 1531, 5, 59, 0, 0, 1531, 1533, 5, 208, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 244, 0, 0, 1535, 1536, 5, 293, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 17, 1, 0, 0, 0, 1538, 1539, 5, 45, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1544, 3, 212, 106, 0, 1541, 1542, 5, 279, 0, 0, 1542, 1543, 5, 31, 0, 0, 1543, 1545, 3, 216, 108, 0, 1544, 1541, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 152, 0, 0, 1547, 1548, 5, 382, 0, 0, 1548, 1549, 5, 30, 0, 0, 1549, 19, 1, 0, 0, 0, 1550, 1551, 5, 275, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1553, 3, 212, 106, 0, 1553, 1556, 5, 203, 0, 0, 1554, 1557, 3, 66, 33, 0, 1555, 1557, 3, 68, 34, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1555, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 283, 0, 0, 1559, 1560, 5, 20, 0, 0, 1560, 1562, 5, 89, 0, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 21, 1, 0, 0, 0, 1563, 1564, 5, 170, 0, 0, 1564, 1565, 3, 388, 194, 0, 1565, 23, 1, 0, 0, 0, 1566, 1567, 5, 51, 0, 0, 1567, 1568, 3, 388, 194, 0, 1568, 25, 1, 0, 0, 0, 1569, 1571, 3, 44, 22, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 104, 52, 0, 1573, 1574, 3, 100, 50, 0, 1574, 27, 1, 0, 0, 0, 1575, 1576, 5, 147, 0, 0, 1576, 1578, 5, 216, 0, 0, 1577, 1579, 5, 293, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1585, 3, 86, 43, 0, 1581, 1583, 3, 32, 16, 0, 1582, 1584, 3, 190, 95, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1581, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1593, 1, 0, 0, 0, 1587, 1588, 5, 31, 0, 0, 1588, 1594, 5, 189, 0, 0, 1589, 1590, 5, 2, 0, 0, 1590, 1591, 3, 94, 47, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1652, 1, 0, 0, 0, 1595, 1596, 5, 147, 0, 0, 1596, 1598, 5, 152, 0, 0, 1597, 1599, 5, 293, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1603, 3, 32, 16, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 1, 0, 0, 0, 1604, 1606, 3, 190, 95, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1613, 1, 0, 0, 0, 1607, 1608, 5, 31, 0, 0, 1608, 1614, 5, 189, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 3, 94, 47, 0, 1611, 1612, 5, 3, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1607, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1652, 1, 0, 0, 0, 1615, 1616, 5, 147, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 293, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 86, 43, 0, 1621, 1622, 5, 244, 0, 0, 1622, 1623, 3, 138, 69, 0, 1623, 1652, 1, 0, 0, 0, 1624, 1625, 5, 147, 0, 0, 1625, 1627, 5, 216, 0, 0, 1626, 1628, 5, 169, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 90, 0, 0, 1630, 1632, 3, 388, 194, 0, 1631, 1633, 3, 242, 121, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 70, 35, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1652, 1, 0, 0, 0, 1637, 1638, 5, 147, 0, 0, 1638, 1640, 5, 216, 0, 0, 1639, 1641, 5, 169, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 90, 0, 0, 1643, 1645, 3, 388, 194, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 3, 48, 24, 0, 1647, 1648, 5, 207, 0, 0, 1648, 1650, 3, 54, 27, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1575, 1, 0, 0, 0, 1651, 1595, 1, 0, 0, 0, 1651, 1615, 1, 0, 0, 0, 1651, 1624, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1652, 29, 1, 0, 0, 0, 1653, 1655, 3, 32, 16, 0, 1654, 1656, 3, 22, 11, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 31, 1, 0, 0, 0, 1657, 1658, 5, 217, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 34, 17, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 34, 17, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 33, 1, 0, 0, 0, 1669, 1672, 3, 376, 188, 0, 1670, 1671, 5, 352, 0, 0, 1671, 1673, 3, 288, 144, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1679, 1, 0, 0, 0, 1674, 1675, 3, 376, 188, 0, 1675, 1676, 5, 352, 0, 0, 1676, 1677, 5, 82, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1669, 1, 0, 0, 0, 1678, 1674, 1, 0, 0, 0, 1679, 35, 1, 0, 0, 0, 1680, 1681, 7, 11, 0, 0, 1681, 37, 1, 0, 0, 0, 1682, 1683, 7, 12, 0, 0, 1683, 39, 1, 0, 0, 0, 1684, 1690, 3, 98, 49, 0, 1685, 1690, 3, 388, 194, 0, 1686, 1690, 3, 290, 145, 0, 1687, 1690, 3, 292, 146, 0, 1688, 1690, 3, 294, 147, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1688, 1, 0, 0, 0, 1690, 41, 1, 0, 0, 0, 1691, 1696, 3, 376, 188, 0, 1692, 1693, 5, 5, 0, 0, 1693, 1695, 3, 376, 188, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 43, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1700, 5, 346, 0, 0, 1700, 1705, 3, 46, 23, 0, 1701, 1702, 5, 4, 0, 0, 1702, 1704, 3, 46, 23, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 45, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1710, 3, 372, 186, 0, 1709, 1711, 3, 212, 106, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 5, 20, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 2, 0, 0, 1716, 1717, 3, 26, 13, 0, 1717, 1718, 5, 3, 0, 0, 1718, 47, 1, 0, 0, 0, 1719, 1720, 5, 332, 0, 0, 1720, 1721, 3, 246, 123, 0, 1721, 49, 1, 0, 0, 0, 1722, 1723, 5, 207, 0, 0, 1723, 1737, 3, 62, 31, 0, 1724, 1725, 5, 218, 0, 0, 1725, 1726, 5, 31, 0, 0, 1726, 1737, 3, 260, 130, 0, 1727, 1737, 3, 20, 10, 0, 1728, 1737, 3, 18, 9, 0, 1729, 1737, 3, 242, 121, 0, 1730, 1737, 3, 70, 35, 0, 1731, 1737, 3, 22, 11, 0, 1732, 1737, 3, 24, 12, 0, 1733, 1734, 5, 297, 0, 0, 1734, 1737, 3, 54, 27, 0, 1735, 1737, 3, 52, 26, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1729, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 51, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 162, 0, 0, 1742, 1743, 5, 382, 0, 0, 1743, 53, 1, 0, 0, 0, 1744, 1745, 5, 2, 0, 0, 1745, 1750, 3, 56, 28, 0, 1746, 1747, 5, 4, 0, 0, 1747, 1749, 3, 56, 28, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 3, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 58, 29, 0, 1756, 1758, 5, 352, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 3, 60, 30, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 57, 1, 0, 0, 0, 1762, 1767, 3, 376, 188, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1766, 3, 376, 188, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1772, 3, 388, 194, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1778, 5, 382, 0, 0, 1774, 1778, 5, 384, 0, 0, 1775, 1778, 3, 296, 148, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1773, 1, 0, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 61, 1, 0, 0, 0, 1779, 1780, 5, 2, 0, 0, 1780, 1785, 3, 64, 32, 0, 1781, 1782, 5, 4, 0, 0, 1782, 1784, 3, 64, 32, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1795, 3, 58, 29, 0, 1791, 1793, 5, 352, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 3, 268, 134, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 65, 1, 0, 0, 0, 1797, 1798, 5, 2, 0, 0, 1798, 1803, 3, 288, 144, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 288, 144, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 5, 3, 0, 0, 1807, 67, 1, 0, 0, 0, 1808, 1809, 5, 2, 0, 0, 1809, 1814, 3, 66, 33, 0, 1810, 1811, 5, 4, 0, 0, 1811, 1813, 3, 66, 33, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 69, 1, 0, 0, 0, 1819, 1820, 5, 283, 0, 0, 1820, 1821, 5, 20, 0, 0, 1821, 1826, 3, 72, 36, 0, 1822, 1823, 5, 283, 0, 0, 1823, 1824, 5, 31, 0, 0, 1824, 1826, 3, 74, 37, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 71, 1, 0, 0, 0, 1827, 1828, 5, 146, 0, 0, 1828, 1829, 3, 388, 194, 0, 1829, 1830, 5, 212, 0, 0, 1830, 1831, 3, 388, 194, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1834, 3, 376, 188, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1839, 3, 388, 194, 0, 1836, 1837, 5, 346, 0, 0, 1837, 1838, 5, 267, 0, 0, 1838, 1840, 3, 54, 27, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 75, 1, 0, 0, 0, 1841, 1842, 3, 376, 188, 0, 1842, 1843, 3, 388, 194, 0, 1843, 77, 1, 0, 0, 0, 1844, 1845, 3, 28, 14, 0, 1845, 1846, 3, 26, 13, 0, 1846, 1901, 1, 0, 0, 0, 1847, 1849, 3, 146, 73, 0, 1848, 1850, 3, 102, 51, 0, 1849, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1901, 1, 0, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 123, 0, 0, 1855, 1856, 3, 86, 43, 0, 1856, 1858, 3, 240, 120, 0, 1857, 1859, 3, 138, 69, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1901, 1, 0, 0, 0, 1860, 1861, 5, 329, 0, 0, 1861, 1862, 3, 86, 43, 0, 1862, 1863, 3, 240, 120, 0, 1863, 1865, 3, 120, 60, 0, 1864, 1866, 3, 138, 69, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1901, 1, 0, 0, 0, 1867, 1868, 5, 179, 0, 0, 1868, 1869, 5, 152, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 240, 120, 0, 1871, 1877, 5, 332, 0, 0, 1872, 1878, 3, 98, 49, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1875, 3, 26, 13, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 3, 240, 120, 0, 1880, 1881, 5, 203, 0, 0, 1881, 1885, 3, 276, 138, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1897, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1896, 3, 126, 63, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1844, 1, 0, 0, 0, 1900, 1847, 1, 0, 0, 0, 1900, 1853, 1, 0, 0, 0, 1900, 1860, 1, 0, 0, 0, 1900, 1867, 1, 0, 0, 0, 1901, 79, 1, 0, 0, 0, 1902, 1903, 3, 98, 49, 0, 1903, 81, 1, 0, 0, 0, 1904, 1905, 3, 98, 49, 0, 1905, 83, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 85, 1, 0, 0, 0, 1908, 1909, 3, 252, 126, 0, 1909, 87, 1, 0, 0, 0, 1910, 1911, 3, 254, 127, 0, 1911, 89, 1, 0, 0, 0, 1912, 1913, 3, 254, 127, 0, 1913, 91, 1, 0, 0, 0, 1914, 1917, 3, 246, 123, 0, 1915, 1917, 4, 46, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1923, 3, 92, 46, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1922, 3, 92, 46, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 95, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1927, 3, 372, 186, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 136, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 268, 134, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1935, 3, 246, 123, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 99, 1, 0, 0, 0, 1936, 1937, 5, 209, 0, 0, 1937, 1938, 5, 31, 0, 0, 1938, 1943, 3, 108, 54, 0, 1939, 1940, 5, 4, 0, 0, 1940, 1942, 3, 108, 54, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1936, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1958, 1, 0, 0, 0, 1948, 1949, 5, 44, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 268, 134, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 268, 134, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 93, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 268, 134, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 268, 134, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 278, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 108, 54, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 108, 54, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 352, 176, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1992, 1, 0, 0, 0, 1987, 1990, 5, 165, 0, 0, 1988, 1991, 5, 10, 0, 0, 1989, 1991, 3, 268, 134, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1989, 1, 0, 0, 0, 1991, 1993, 1, 0, 0, 0, 1992, 1987, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1995, 5, 202, 0, 0, 1995, 1997, 3, 268, 134, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 101, 1, 0, 0, 0, 1998, 1999, 3, 28, 14, 0, 1999, 2000, 3, 112, 56, 0, 2000, 103, 1, 0, 0, 0, 2001, 2002, 6, 52, -1, 0, 2002, 2003, 3, 106, 53, 0, 2003, 2024, 1, 0, 0, 0, 2004, 2005, 10, 3, 0, 0, 2005, 2007, 7, 13, 0, 0, 2006, 2008, 3, 196, 98, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2023, 3, 104, 52, 4, 2010, 2011, 10, 2, 0, 0, 2011, 2013, 5, 148, 0, 0, 2012, 2014, 3, 196, 98, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2023, 3, 104, 52, 3, 2016, 2017, 10, 1, 0, 0, 2017, 2019, 7, 14, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2023, 3, 104, 52, 2, 2022, 2004, 1, 0, 0, 0, 2022, 2010, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 105, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2037, 3, 114, 57, 0, 2028, 2037, 3, 110, 55, 0, 2029, 2030, 5, 293, 0, 0, 2030, 2037, 3, 86, 43, 0, 2031, 2037, 3, 226, 113, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2034, 3, 26, 13, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2036, 2032, 1, 0, 0, 0, 2037, 107, 1, 0, 0, 0, 2038, 2041, 3, 92, 46, 0, 2039, 2041, 3, 268, 134, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 7, 15, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 199, 0, 0, 2046, 2048, 7, 16, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 109, 1, 0, 0, 0, 2049, 2051, 3, 146, 73, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 111, 1, 0, 0, 0, 2055, 2057, 3, 116, 58, 0, 2056, 2058, 3, 138, 69, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 3, 100, 50, 0, 2060, 2083, 1, 0, 0, 0, 2061, 2065, 3, 118, 59, 0, 2062, 2064, 3, 194, 97, 0, 2063, 2062, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2070, 3, 138, 69, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2072, 1, 0, 0, 0, 2071, 2073, 3, 152, 76, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2076, 3, 140, 70, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2079, 3, 352, 176, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 100, 50, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2055, 1, 0, 0, 0, 2082, 2061, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 3, 116, 58, 0, 2085, 2087, 3, 146, 73, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2090, 3, 194, 97, 0, 2089, 2088, 1, 0, 0, 0, 2090, 2093, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2096, 3, 138, 69, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 152, 76, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 140, 70, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 352, 176, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2108, 3, 118, 59, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 352, 176, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2084, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2129, 115, 1, 0, 0, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2132, 5, 314, 0, 0, 2132, 2134, 5, 2, 0, 0, 2133, 2135, 3, 196, 98, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 3, 274, 137, 0, 2137, 2138, 5, 3, 0, 0, 2138, 2150, 1, 0, 0, 0, 2139, 2141, 5, 177, 0, 0, 2140, 2142, 3, 196, 98, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2150, 3, 274, 137, 0, 2144, 2146, 5, 238, 0, 0, 2145, 2147, 3, 196, 98, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 274, 137, 0, 2149, 2130, 1, 0, 0, 0, 2149, 2139, 1, 0, 0, 0, 2149, 2144, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 242, 121, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2155, 5, 236, 0, 0, 2155, 2157, 3, 388, 194, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 5, 332, 0, 0, 2159, 2172, 3, 388, 194, 0, 2160, 2170, 5, 20, 0, 0, 2161, 2171, 3, 214, 107, 0, 2162, 2171, 3, 334, 167, 0, 2163, 2166, 5, 2, 0, 0, 2164, 2167, 3, 214, 107, 0, 2165, 2167, 3, 334, 167, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 3, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2161, 1, 0, 0, 0, 2170, 2162, 1, 0, 0, 0, 2170, 2163, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2176, 3, 242, 121, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2178, 5, 235, 0, 0, 2178, 2180, 3, 388, 194, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 117, 1, 0, 0, 0, 2181, 2185, 5, 263, 0, 0, 2182, 2184, 3, 142, 71, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2190, 3, 196, 98, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 3, 258, 129, 0, 2192, 119, 1, 0, 0, 0, 2193, 2194, 5, 269, 0, 0, 2194, 2195, 3, 134, 67, 0, 2195, 121, 1, 0, 0, 0, 2196, 2197, 5, 343, 0, 0, 2197, 2200, 5, 178, 0, 0, 2198, 2199, 5, 14, 0, 0, 2199, 2201, 3, 276, 138, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 5, 300, 0, 0, 2203, 2204, 3, 128, 64, 0, 2204, 123, 1, 0, 0, 0, 2205, 2206, 5, 343, 0, 0, 2206, 2207, 5, 197, 0, 0, 2207, 2210, 5, 178, 0, 0, 2208, 2209, 5, 31, 0, 0, 2209, 2211, 5, 296, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2213, 5, 14, 0, 0, 2213, 2215, 3, 276, 138, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 300, 0, 0, 2217, 2218, 3, 130, 65, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 5, 343, 0, 0, 2220, 2221, 5, 197, 0, 0, 2221, 2222, 5, 178, 0, 0, 2222, 2223, 5, 31, 0, 0, 2223, 2226, 5, 280, 0, 0, 2224, 2225, 5, 14, 0, 0, 2225, 2227, 3, 276, 138, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 5, 300, 0, 0, 2229, 2230, 3, 132, 66, 0, 2230, 127, 1, 0, 0, 0, 2231, 2239, 5, 84, 0, 0, 2232, 2233, 5, 329, 0, 0, 2233, 2234, 5, 269, 0, 0, 2234, 2239, 5, 363, 0, 0, 2235, 2236, 5, 329, 0, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2239, 3, 134, 67, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2232, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2239, 129, 1, 0, 0, 0, 2240, 2241, 5, 147, 0, 0, 2241, 2259, 5, 363, 0, 0, 2242, 2243, 5, 147, 0, 0, 2243, 2244, 5, 2, 0, 0, 2244, 2245, 3, 244, 122, 0, 2245, 2246, 5, 3, 0, 0, 2246, 2247, 5, 333, 0, 0, 2247, 2248, 5, 2, 0, 0, 2248, 2253, 3, 268, 134, 0, 2249, 2250, 5, 4, 0, 0, 2250, 2252, 3, 268, 134, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 3, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2240, 1, 0, 0, 0, 2258, 2242, 1, 0, 0, 0, 2259, 131, 1, 0, 0, 0, 2260, 2265, 5, 84, 0, 0, 2261, 2262, 5, 329, 0, 0, 2262, 2263, 5, 269, 0, 0, 2263, 2265, 3, 134, 67, 0, 2264, 2260, 1, 0, 0, 0, 2264, 2261, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 136, 68, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 246, 123, 0, 2275, 2276, 5, 352, 0, 0, 2276, 2277, 3, 268, 134, 0, 2277, 137, 1, 0, 0, 0, 2278, 2279, 5, 344, 0, 0, 2279, 2280, 3, 276, 138, 0, 2280, 139, 1, 0, 0, 0, 2281, 2282, 5, 132, 0, 0, 2282, 2283, 3, 276, 138, 0, 2283, 141, 1, 0, 0, 0, 2284, 2285, 5, 374, 0, 0, 2285, 2292, 3, 144, 72, 0, 2286, 2288, 5, 4, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 3, 144, 72, 0, 2290, 2287, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 375, 0, 0, 2296, 143, 1, 0, 0, 0, 2297, 2311, 3, 376, 188, 0, 2298, 2299, 3, 376, 188, 0, 2299, 2300, 5, 2, 0, 0, 2300, 2305, 3, 284, 142, 0, 2301, 2302, 5, 4, 0, 0, 2302, 2304, 3, 284, 142, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 3, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2297, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2311, 145, 1, 0, 0, 0, 2312, 2313, 5, 123, 0, 0, 2313, 2318, 3, 198, 99, 0, 2314, 2315, 5, 4, 0, 0, 2315, 2317, 3, 198, 99, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2324, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2329, 3, 162, 81, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 168, 84, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 7, 17, 0, 0, 2334, 149, 1, 0, 0, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 18, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 201, 0, 0, 2341, 2350, 3, 392, 196, 0, 2342, 2344, 5, 119, 0, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2346, 7, 19, 0, 0, 2346, 2347, 5, 20, 0, 0, 2347, 2348, 5, 201, 0, 0, 2348, 2350, 3, 280, 140, 0, 2349, 2336, 1, 0, 0, 0, 2349, 2343, 1, 0, 0, 0, 2350, 151, 1, 0, 0, 0, 2351, 2352, 5, 130, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2358, 3, 154, 77, 0, 2354, 2355, 5, 4, 0, 0, 2355, 2357, 3, 154, 77, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2391, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 130, 0, 0, 2362, 2363, 5, 31, 0, 0, 2363, 2368, 3, 268, 134, 0, 2364, 2365, 5, 4, 0, 0, 2365, 2367, 3, 268, 134, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2388, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2372, 5, 346, 0, 0, 2372, 2389, 5, 256, 0, 0, 2373, 2374, 5, 346, 0, 0, 2374, 2389, 5, 61, 0, 0, 2375, 2376, 5, 131, 0, 0, 2376, 2377, 5, 271, 0, 0, 2377, 2378, 5, 2, 0, 0, 2378, 2383, 3, 160, 80, 0, 2379, 2380, 5, 4, 0, 0, 2380, 2382, 3, 160, 80, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2371, 1, 0, 0, 0, 2388, 2373, 1, 0, 0, 0, 2388, 2375, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2391, 1, 0, 0, 0, 2390, 2351, 1, 0, 0, 0, 2390, 2361, 1, 0, 0, 0, 2391, 153, 1, 0, 0, 0, 2392, 2396, 3, 92, 46, 0, 2393, 2396, 3, 156, 78, 0, 2394, 2396, 3, 268, 134, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 155, 1, 0, 0, 0, 2397, 2398, 7, 20, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2404, 3, 160, 80, 0, 2400, 2401, 5, 4, 0, 0, 2401, 2403, 3, 160, 80, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2423, 1, 0, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2411, 5, 271, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 158, 79, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 158, 79, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2397, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2423, 157, 1, 0, 0, 0, 2424, 2427, 3, 156, 78, 0, 2425, 2427, 3, 160, 80, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 159, 1, 0, 0, 0, 2428, 2449, 3, 92, 46, 0, 2429, 2449, 3, 268, 134, 0, 2430, 2445, 5, 2, 0, 0, 2431, 2434, 3, 92, 46, 0, 2432, 2434, 3, 268, 134, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2442, 1, 0, 0, 0, 2435, 2438, 5, 4, 0, 0, 2436, 2439, 3, 92, 46, 0, 2437, 2439, 3, 268, 134, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2437, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2435, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2433, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 5, 3, 0, 0, 2448, 2428, 1, 0, 0, 0, 2448, 2429, 1, 0, 0, 0, 2448, 2430, 1, 0, 0, 0, 2449, 161, 1, 0, 0, 0, 2450, 2451, 5, 223, 0, 0, 2451, 2452, 5, 2, 0, 0, 2452, 2453, 3, 258, 129, 0, 2453, 2454, 5, 119, 0, 0, 2454, 2455, 3, 164, 82, 0, 2455, 2456, 5, 140, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 166, 83, 0, 2458, 2459, 5, 4, 0, 0, 2459, 2461, 3, 166, 83, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 163, 1, 0, 0, 0, 2468, 2481, 3, 376, 188, 0, 2469, 2470, 5, 2, 0, 0, 2470, 2475, 3, 376, 188, 0, 2471, 2472, 5, 4, 0, 0, 2472, 2474, 3, 376, 188, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 3, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2468, 1, 0, 0, 0, 2480, 2469, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2487, 3, 268, 134, 0, 2483, 2485, 5, 20, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2488, 3, 376, 188, 0, 2487, 2484, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 167, 1, 0, 0, 0, 2489, 2491, 5, 327, 0, 0, 2490, 2492, 3, 170, 85, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 172, 86, 0, 2495, 2500, 5, 3, 0, 0, 2496, 2498, 5, 20, 0, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 3, 376, 188, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 169, 1, 0, 0, 0, 2502, 2503, 7, 21, 0, 0, 2503, 2504, 5, 199, 0, 0, 2504, 171, 1, 0, 0, 0, 2505, 2508, 3, 174, 87, 0, 2506, 2508, 3, 176, 88, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 173, 1, 0, 0, 0, 2509, 2510, 3, 180, 90, 0, 2510, 2511, 5, 119, 0, 0, 2511, 2512, 3, 182, 91, 0, 2512, 2513, 5, 140, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2519, 3, 184, 92, 0, 2515, 2516, 5, 4, 0, 0, 2516, 2518, 3, 184, 92, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2523, 5, 3, 0, 0, 2523, 175, 1, 0, 0, 0, 2524, 2525, 5, 2, 0, 0, 2525, 2530, 3, 180, 90, 0, 2526, 2527, 5, 4, 0, 0, 2527, 2529, 3, 180, 90, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2535, 5, 119, 0, 0, 2535, 2536, 3, 182, 91, 0, 2536, 2537, 5, 140, 0, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2543, 3, 178, 89, 0, 2539, 2540, 5, 4, 0, 0, 2540, 2542, 3, 178, 89, 0, 2541, 2539, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2547, 5, 3, 0, 0, 2547, 177, 1, 0, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2554, 3, 186, 93, 0, 2550, 2551, 5, 4, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2550, 1, 0, 0, 0, 2553, 2556, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2559, 5, 3, 0, 0, 2558, 2560, 3, 188, 94, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 179, 1, 0, 0, 0, 2561, 2562, 3, 376, 188, 0, 2562, 181, 1, 0, 0, 0, 2563, 2564, 3, 376, 188, 0, 2564, 183, 1, 0, 0, 0, 2565, 2567, 3, 186, 93, 0, 2566, 2568, 3, 188, 94, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 185, 1, 0, 0, 0, 2569, 2570, 3, 246, 123, 0, 2570, 187, 1, 0, 0, 0, 2571, 2573, 5, 20, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2575, 3, 376, 188, 0, 2575, 189, 1, 0, 0, 0, 2576, 2577, 5, 137, 0, 0, 2577, 2578, 5, 197, 0, 0, 2578, 2579, 5, 105, 0, 0, 2579, 191, 1, 0, 0, 0, 2580, 2581, 5, 137, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 193, 1, 0, 0, 0, 2583, 2584, 5, 158, 0, 0, 2584, 2586, 5, 338, 0, 0, 2585, 2587, 5, 211, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 3, 90, 45, 0, 2589, 2598, 5, 2, 0, 0, 2590, 2595, 3, 268, 134, 0, 2591, 2592, 5, 4, 0, 0, 2592, 2594, 3, 268, 134, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2590, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2613, 3, 240, 120, 0, 2602, 2604, 5, 20, 0, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2610, 3, 376, 188, 0, 2606, 2607, 5, 4, 0, 0, 2607, 2609, 3, 376, 188, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2603, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 195, 1, 0, 0, 0, 2615, 2616, 7, 22, 0, 0, 2616, 197, 1, 0, 0, 0, 2617, 2629, 3, 86, 43, 0, 2618, 2620, 5, 158, 0, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2625, 3, 224, 112, 0, 2622, 2624, 3, 200, 100, 0, 2623, 2622, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2617, 1, 0, 0, 0, 2628, 2619, 1, 0, 0, 0, 2629, 199, 1, 0, 0, 0, 2630, 2634, 3, 202, 101, 0, 2631, 2634, 3, 162, 81, 0, 2632, 2634, 3, 168, 84, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 201, 1, 0, 0, 0, 2635, 2636, 3, 204, 102, 0, 2636, 2638, 5, 155, 0, 0, 2637, 2639, 5, 158, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 224, 112, 0, 2641, 2643, 3, 206, 103, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2653, 1, 0, 0, 0, 2644, 2645, 5, 194, 0, 0, 2645, 2646, 3, 204, 102, 0, 2646, 2648, 5, 155, 0, 0, 2647, 2649, 5, 158, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 224, 112, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2635, 1, 0, 0, 0, 2652, 2644, 1, 0, 0, 0, 2653, 203, 1, 0, 0, 0, 2654, 2656, 5, 144, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2679, 1, 0, 0, 0, 2657, 2679, 5, 60, 0, 0, 2658, 2660, 5, 161, 0, 0, 2659, 2661, 5, 211, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2679, 1, 0, 0, 0, 2662, 2664, 5, 161, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2679, 5, 264, 0, 0, 2666, 2668, 5, 250, 0, 0, 2667, 2669, 5, 211, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2679, 1, 0, 0, 0, 2670, 2672, 5, 124, 0, 0, 2671, 2673, 5, 211, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2679, 1, 0, 0, 0, 2674, 2676, 5, 161, 0, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 5, 15, 0, 0, 2678, 2655, 1, 0, 0, 0, 2678, 2657, 1, 0, 0, 0, 2678, 2658, 1, 0, 0, 0, 2678, 2663, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2670, 1, 0, 0, 0, 2678, 2675, 1, 0, 0, 0, 2679, 205, 1, 0, 0, 0, 2680, 2681, 5, 203, 0, 0, 2681, 2685, 3, 276, 138, 0, 2682, 2683, 5, 332, 0, 0, 2683, 2685, 3, 212, 106, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 207, 1, 0, 0, 0, 2686, 2687, 5, 295, 0, 0, 2687, 2689, 5, 2, 0, 0, 2688, 2690, 3, 210, 105, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2696, 5, 3, 0, 0, 2692, 2693, 5, 243, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2695, 5, 382, 0, 0, 2695, 2697, 5, 3, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 209, 1, 0, 0, 0, 2698, 2700, 5, 362, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 7, 23, 0, 0, 2702, 2723, 5, 222, 0, 0, 2703, 2704, 3, 268, 134, 0, 2704, 2705, 5, 258, 0, 0, 2705, 2723, 1, 0, 0, 0, 2706, 2707, 5, 29, 0, 0, 2707, 2708, 5, 382, 0, 0, 2708, 2709, 5, 210, 0, 0, 2709, 2710, 5, 201, 0, 0, 2710, 2719, 5, 382, 0, 0, 2711, 2717, 5, 203, 0, 0, 2712, 2718, 3, 376, 188, 0, 2713, 2714, 3, 370, 185, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2716, 5, 3, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2712, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 268, 134, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2703, 1, 0, 0, 0, 2722, 2706, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 211, 1, 0, 0, 0, 2724, 2725, 5, 2, 0, 0, 2725, 2726, 3, 214, 107, 0, 2726, 2727, 5, 3, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2733, 3, 372, 186, 0, 2729, 2730, 5, 4, 0, 0, 2730, 2732, 3, 372, 186, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 215, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2742, 3, 218, 109, 0, 2738, 2739, 5, 4, 0, 0, 2739, 2741, 3, 218, 109, 0, 2740, 2738, 1, 0, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2746, 5, 3, 0, 0, 2746, 217, 1, 0, 0, 0, 2747, 2749, 3, 372, 186, 0, 2748, 2750, 7, 15, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 219, 1, 0, 0, 0, 2751, 2752, 5, 2, 0, 0, 2752, 2757, 3, 222, 111, 0, 2753, 2754, 5, 4, 0, 0, 2754, 2756, 3, 222, 111, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2759, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2761, 5, 3, 0, 0, 2761, 221, 1, 0, 0, 0, 2762, 2764, 3, 96, 48, 0, 2763, 2765, 3, 24, 12, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 223, 1, 0, 0, 0, 2766, 2770, 3, 86, 43, 0, 2767, 2770, 3, 90, 45, 0, 2768, 2770, 3, 98, 49, 0, 2769, 2766, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 3, 150, 75, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 3, 208, 104, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 3, 240, 120, 0, 2778, 2798, 1, 0, 0, 0, 2779, 2780, 5, 2, 0, 0, 2780, 2781, 3, 26, 13, 0, 2781, 2783, 5, 3, 0, 0, 2782, 2784, 3, 208, 104, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 3, 240, 120, 0, 2786, 2798, 1, 0, 0, 0, 2787, 2788, 5, 2, 0, 0, 2788, 2789, 3, 198, 99, 0, 2789, 2791, 5, 3, 0, 0, 2790, 2792, 3, 208, 104, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 240, 120, 0, 2794, 2798, 1, 0, 0, 0, 2795, 2798, 3, 226, 113, 0, 2796, 2798, 3, 238, 119, 0, 2797, 2769, 1, 0, 0, 0, 2797, 2779, 1, 0, 0, 0, 2797, 2787, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 225, 1, 0, 0, 0, 2799, 2800, 5, 333, 0, 0, 2800, 2805, 3, 268, 134, 0, 2801, 2802, 5, 4, 0, 0, 2802, 2804, 3, 268, 134, 0, 2803, 2801, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2809, 3, 240, 120, 0, 2809, 227, 1, 0, 0, 0, 2810, 2811, 5, 293, 0, 0, 2811, 2813, 3, 86, 43, 0, 2812, 2814, 3, 230, 115, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2830, 1, 0, 0, 0, 2815, 2816, 5, 293, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 86, 43, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 230, 115, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2830, 1, 0, 0, 0, 2822, 2823, 5, 293, 0, 0, 2823, 2824, 5, 2, 0, 0, 2824, 2825, 3, 26, 13, 0, 2825, 2827, 5, 3, 0, 0, 2826, 2828, 3, 230, 115, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2830, 1, 0, 0, 0, 2829, 2810, 1, 0, 0, 0, 2829, 2815, 1, 0, 0, 0, 2829, 2822, 1, 0, 0, 0, 2830, 229, 1, 0, 0, 0, 2831, 2832, 5, 346, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2851, 5, 217, 0, 0, 2834, 2835, 7, 24, 0, 0, 2835, 2848, 5, 31, 0, 0, 2836, 2837, 5, 2, 0, 0, 2837, 2842, 3, 268, 134, 0, 2838, 2839, 5, 4, 0, 0, 2839, 2841, 3, 268, 134, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2844, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2846, 5, 3, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2849, 3, 268, 134, 0, 2848, 2836, 1, 0, 0, 0, 2848, 2847, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2831, 1, 0, 0, 0, 2850, 2834, 1, 0, 0, 0, 2851, 2868, 1, 0, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2866, 5, 31, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2860, 3, 108, 54, 0, 2856, 2857, 5, 4, 0, 0, 2857, 2859, 3, 108, 54, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2863, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2864, 5, 3, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2867, 3, 108, 54, 0, 2866, 2854, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2852, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 231, 1, 0, 0, 0, 2870, 2871, 3, 376, 188, 0, 2871, 2872, 5, 373, 0, 0, 2872, 2873, 3, 228, 114, 0, 2873, 233, 1, 0, 0, 0, 2874, 2877, 3, 228, 114, 0, 2875, 2877, 3, 232, 116, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2875, 1, 0, 0, 0, 2877, 235, 1, 0, 0, 0, 2878, 2881, 3, 234, 117, 0, 2879, 2881, 3, 272, 136, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 237, 1, 0, 0, 0, 2882, 2883, 3, 366, 183, 0, 2883, 2892, 5, 2, 0, 0, 2884, 2889, 3, 236, 118, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 236, 118, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2896, 3, 240, 120, 0, 2896, 239, 1, 0, 0, 0, 2897, 2899, 5, 20, 0, 0, 2898, 2897, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 3, 378, 189, 0, 2901, 2903, 3, 212, 106, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2898, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 241, 1, 0, 0, 0, 2906, 2907, 5, 257, 0, 0, 2907, 2908, 5, 121, 0, 0, 2908, 2909, 5, 266, 0, 0, 2909, 2913, 3, 388, 194, 0, 2910, 2911, 5, 346, 0, 0, 2911, 2912, 5, 267, 0, 0, 2912, 2914, 3, 54, 27, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2956, 1, 0, 0, 0, 2915, 2916, 5, 257, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2927, 5, 85, 0, 0, 2918, 2919, 5, 113, 0, 0, 2919, 2920, 5, 299, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2925, 3, 388, 194, 0, 2922, 2923, 5, 101, 0, 0, 2923, 2924, 5, 31, 0, 0, 2924, 2926, 3, 388, 194, 0, 2925, 2922, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2918, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 48, 0, 0, 2930, 2931, 5, 154, 0, 0, 2931, 2932, 5, 299, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 388, 194, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2941, 1, 0, 0, 0, 2936, 2937, 5, 177, 0, 0, 2937, 2938, 5, 156, 0, 0, 2938, 2939, 5, 299, 0, 0, 2939, 2940, 5, 31, 0, 0, 2940, 2942, 3, 388, 194, 0, 2941, 2936, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2947, 1, 0, 0, 0, 2943, 2944, 5, 166, 0, 0, 2944, 2945, 5, 299, 0, 0, 2945, 2946, 5, 31, 0, 0, 2946, 2948, 3, 388, 194, 0, 2947, 2943, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2953, 1, 0, 0, 0, 2949, 2950, 5, 198, 0, 0, 2950, 2951, 5, 83, 0, 0, 2951, 2952, 5, 20, 0, 0, 2952, 2954, 3, 388, 194, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2906, 1, 0, 0, 0, 2955, 2915, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2962, 3, 246, 123, 0, 2958, 2959, 5, 4, 0, 0, 2959, 2961, 3, 246, 123, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 245, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 372, 186, 0, 2966, 2967, 5, 5, 0, 0, 2967, 2969, 3, 372, 186, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 247, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2978, 3, 250, 125, 0, 2974, 2975, 5, 4, 0, 0, 2975, 2977, 3, 250, 125, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2980, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 249, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 2984, 3, 246, 123, 0, 2982, 2983, 5, 207, 0, 0, 2983, 2985, 3, 54, 27, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 372, 186, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 372, 186, 0, 2992, 253, 1, 0, 0, 0, 2993, 2994, 3, 372, 186, 0, 2994, 2995, 5, 5, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2993, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 372, 186, 0, 2999, 255, 1, 0, 0, 0, 3000, 3003, 3, 92, 46, 0, 3001, 3003, 3, 268, 134, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3011, 1, 0, 0, 0, 3004, 3006, 5, 20, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3009, 1, 0, 0, 0, 3007, 3010, 3, 372, 186, 0, 3008, 3010, 3, 212, 106, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3008, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3005, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3018, 3, 256, 128, 0, 3014, 3015, 5, 4, 0, 0, 3015, 3017, 3, 256, 128, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3022, 5, 2, 0, 0, 3022, 3027, 3, 262, 131, 0, 3023, 3024, 5, 4, 0, 0, 3024, 3026, 3, 262, 131, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3031, 5, 3, 0, 0, 3031, 261, 1, 0, 0, 0, 3032, 3035, 3, 264, 132, 0, 3033, 3035, 3, 336, 168, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 263, 1, 0, 0, 0, 3036, 3050, 3, 370, 185, 0, 3037, 3038, 3, 376, 188, 0, 3038, 3039, 5, 2, 0, 0, 3039, 3044, 3, 266, 133, 0, 3040, 3041, 5, 4, 0, 0, 3041, 3043, 3, 266, 133, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 3, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3037, 1, 0, 0, 0, 3050, 265, 1, 0, 0, 0, 3051, 3054, 3, 370, 185, 0, 3052, 3054, 3, 288, 144, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 267, 1, 0, 0, 0, 3055, 3056, 3, 276, 138, 0, 3056, 269, 1, 0, 0, 0, 3057, 3058, 3, 376, 188, 0, 3058, 3059, 5, 373, 0, 0, 3059, 3060, 3, 268, 134, 0, 3060, 271, 1, 0, 0, 0, 3061, 3064, 3, 268, 134, 0, 3062, 3064, 3, 270, 135, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3070, 3, 268, 134, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 268, 134, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 275, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 6, 138, -1, 0, 3074, 3075, 7, 26, 0, 0, 3075, 3086, 3, 276, 138, 5, 3076, 3077, 5, 105, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3079, 3, 26, 13, 0, 3079, 3080, 5, 3, 0, 0, 3080, 3086, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3084, 3, 278, 139, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3073, 1, 0, 0, 0, 3085, 3076, 1, 0, 0, 0, 3085, 3081, 1, 0, 0, 0, 3086, 3095, 1, 0, 0, 0, 3087, 3088, 10, 2, 0, 0, 3088, 3089, 5, 14, 0, 0, 3089, 3094, 3, 276, 138, 3, 3090, 3091, 10, 1, 0, 0, 3091, 3092, 5, 208, 0, 0, 3092, 3094, 3, 276, 138, 2, 3093, 3087, 1, 0, 0, 0, 3093, 3090, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 277, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 24, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 3104, 5, 14, 0, 0, 3104, 3105, 3, 280, 140, 0, 3105, 3181, 1, 0, 0, 0, 3106, 3108, 5, 197, 0, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 5, 140, 0, 0, 3110, 3111, 5, 2, 0, 0, 3111, 3116, 3, 268, 134, 0, 3112, 3113, 5, 4, 0, 0, 3113, 3115, 3, 268, 134, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3181, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 140, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3127, 3, 26, 13, 0, 3127, 3128, 5, 3, 0, 0, 3128, 3181, 1, 0, 0, 0, 3129, 3131, 5, 197, 0, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 7, 27, 0, 0, 3133, 3181, 3, 280, 140, 0, 3134, 3136, 5, 197, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 7, 28, 0, 0, 3138, 3152, 7, 29, 0, 0, 3139, 3140, 5, 2, 0, 0, 3140, 3153, 5, 3, 0, 0, 3141, 3142, 5, 2, 0, 0, 3142, 3147, 3, 268, 134, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3146, 3, 268, 134, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3151, 5, 3, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3139, 1, 0, 0, 0, 3152, 3141, 1, 0, 0, 0, 3153, 3181, 1, 0, 0, 0, 3154, 3156, 5, 197, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 7, 28, 0, 0, 3158, 3161, 3, 280, 140, 0, 3159, 3160, 5, 100, 0, 0, 3160, 3162, 3, 388, 194, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3181, 1, 0, 0, 0, 3163, 3165, 5, 153, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3181, 5, 198, 0, 0, 3168, 3170, 5, 153, 0, 0, 3169, 3171, 5, 197, 0, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3181, 7, 30, 0, 0, 3173, 3175, 5, 153, 0, 0, 3174, 3176, 5, 197, 0, 0, 3175, 3174, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 92, 0, 0, 3178, 3179, 5, 123, 0, 0, 3179, 3181, 3, 280, 140, 0, 3180, 3099, 1, 0, 0, 0, 3180, 3107, 1, 0, 0, 0, 3180, 3122, 1, 0, 0, 0, 3180, 3130, 1, 0, 0, 0, 3180, 3135, 1, 0, 0, 0, 3180, 3155, 1, 0, 0, 0, 3180, 3163, 1, 0, 0, 0, 3180, 3168, 1, 0, 0, 0, 3180, 3173, 1, 0, 0, 0, 3181, 279, 1, 0, 0, 0, 3182, 3183, 6, 140, -1, 0, 3183, 3187, 3, 284, 142, 0, 3184, 3185, 7, 31, 0, 0, 3185, 3187, 3, 280, 140, 7, 3186, 3182, 1, 0, 0, 0, 3186, 3184, 1, 0, 0, 0, 3187, 3209, 1, 0, 0, 0, 3188, 3189, 10, 6, 0, 0, 3189, 3190, 7, 32, 0, 0, 3190, 3208, 3, 280, 140, 7, 3191, 3192, 10, 5, 0, 0, 3192, 3193, 7, 33, 0, 0, 3193, 3208, 3, 280, 140, 6, 3194, 3195, 10, 4, 0, 0, 3195, 3196, 5, 367, 0, 0, 3196, 3208, 3, 280, 140, 5, 3197, 3198, 10, 3, 0, 0, 3198, 3199, 5, 370, 0, 0, 3199, 3208, 3, 280, 140, 4, 3200, 3201, 10, 2, 0, 0, 3201, 3202, 5, 368, 0, 0, 3202, 3208, 3, 280, 140, 3, 3203, 3204, 10, 1, 0, 0, 3204, 3205, 3, 290, 145, 0, 3205, 3206, 3, 280, 140, 2, 3206, 3208, 1, 0, 0, 0, 3207, 3188, 1, 0, 0, 0, 3207, 3191, 1, 0, 0, 0, 3207, 3194, 1, 0, 0, 0, 3207, 3197, 1, 0, 0, 0, 3207, 3200, 1, 0, 0, 0, 3207, 3203, 1, 0, 0, 0, 3208, 3211, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 281, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3212, 3213, 7, 34, 0, 0, 3213, 283, 1, 0, 0, 0, 3214, 3215, 6, 142, -1, 0, 3215, 3464, 7, 35, 0, 0, 3216, 3217, 7, 36, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 282, 141, 0, 3219, 3221, 3, 388, 194, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 280, 140, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 280, 140, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3464, 1, 0, 0, 0, 3228, 3229, 7, 37, 0, 0, 3229, 3232, 5, 2, 0, 0, 3230, 3233, 3, 282, 141, 0, 3231, 3233, 3, 388, 194, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 4, 0, 0, 3235, 3236, 3, 280, 140, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3238, 3, 280, 140, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3464, 1, 0, 0, 0, 3240, 3242, 5, 35, 0, 0, 3241, 3243, 3, 350, 175, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3248, 1, 0, 0, 0, 3246, 3247, 5, 97, 0, 0, 3247, 3249, 3, 268, 134, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 5, 99, 0, 0, 3251, 3464, 1, 0, 0, 0, 3252, 3253, 5, 35, 0, 0, 3253, 3255, 3, 268, 134, 0, 3254, 3256, 3, 350, 175, 0, 3255, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3261, 1, 0, 0, 0, 3259, 3260, 5, 97, 0, 0, 3260, 3262, 3, 268, 134, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 5, 99, 0, 0, 3264, 3464, 1, 0, 0, 0, 3265, 3266, 7, 38, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3268, 3, 268, 134, 0, 3268, 3269, 5, 20, 0, 0, 3269, 3270, 3, 318, 159, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3464, 1, 0, 0, 0, 3272, 3273, 5, 286, 0, 0, 3273, 3282, 5, 2, 0, 0, 3274, 3279, 3, 256, 128, 0, 3275, 3276, 5, 4, 0, 0, 3276, 3278, 3, 256, 128, 0, 3277, 3275, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 3274, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3464, 5, 3, 0, 0, 3285, 3286, 5, 116, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3290, 3, 268, 134, 0, 3288, 3289, 5, 138, 0, 0, 3289, 3291, 5, 199, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 5, 3, 0, 0, 3293, 3464, 1, 0, 0, 0, 3294, 3295, 5, 17, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 268, 134, 0, 3297, 3298, 5, 138, 0, 0, 3298, 3300, 5, 199, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3464, 1, 0, 0, 0, 3303, 3304, 5, 157, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3308, 3, 268, 134, 0, 3306, 3307, 5, 138, 0, 0, 3307, 3309, 5, 199, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3464, 1, 0, 0, 0, 3312, 3313, 5, 225, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 280, 140, 0, 3315, 3316, 5, 140, 0, 0, 3316, 3317, 3, 280, 140, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3464, 1, 0, 0, 0, 3319, 3464, 3, 288, 144, 0, 3320, 3464, 5, 363, 0, 0, 3321, 3322, 3, 370, 185, 0, 3322, 3323, 5, 5, 0, 0, 3323, 3324, 5, 363, 0, 0, 3324, 3464, 1, 0, 0, 0, 3325, 3326, 5, 2, 0, 0, 3326, 3329, 3, 256, 128, 0, 3327, 3328, 5, 4, 0, 0, 3328, 3330, 3, 256, 128, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 5, 3, 0, 0, 3334, 3464, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 3337, 3, 26, 13, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3464, 1, 0, 0, 0, 3339, 3340, 5, 136, 0, 0, 3340, 3341, 5, 2, 0, 0, 3341, 3342, 3, 268, 134, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3464, 1, 0, 0, 0, 3344, 3345, 3, 366, 183, 0, 3345, 3357, 5, 2, 0, 0, 3346, 3348, 3, 196, 98, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3354, 3, 272, 136, 0, 3350, 3351, 5, 4, 0, 0, 3351, 3353, 3, 272, 136, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3347, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 5, 3, 0, 0, 3360, 3361, 5, 114, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 344, 0, 0, 3363, 3364, 3, 276, 138, 0, 3364, 3365, 5, 3, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3369, 7, 39, 0, 0, 3369, 3371, 5, 199, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3373, 5, 213, 0, 0, 3373, 3375, 3, 358, 179, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3464, 1, 0, 0, 0, 3376, 3377, 3, 376, 188, 0, 3377, 3378, 5, 372, 0, 0, 3378, 3379, 3, 268, 134, 0, 3379, 3464, 1, 0, 0, 0, 3380, 3381, 5, 2, 0, 0, 3381, 3384, 3, 376, 188, 0, 3382, 3383, 5, 4, 0, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3390, 5, 372, 0, 0, 3390, 3391, 3, 268, 134, 0, 3391, 3464, 1, 0, 0, 0, 3392, 3464, 3, 376, 188, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 268, 134, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3464, 1, 0, 0, 0, 3397, 3398, 5, 110, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 376, 188, 0, 3400, 3401, 5, 123, 0, 0, 3401, 3402, 3, 280, 140, 0, 3402, 3403, 5, 3, 0, 0, 3403, 3464, 1, 0, 0, 0, 3404, 3405, 7, 40, 0, 0, 3405, 3406, 5, 2, 0, 0, 3406, 3407, 3, 280, 140, 0, 3407, 3408, 7, 41, 0, 0, 3408, 3411, 3, 280, 140, 0, 3409, 3410, 7, 42, 0, 0, 3410, 3412, 3, 280, 140, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3464, 1, 0, 0, 0, 3415, 3416, 5, 315, 0, 0, 3416, 3418, 5, 2, 0, 0, 3417, 3419, 7, 43, 0, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 280, 140, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 5, 123, 0, 0, 3424, 3425, 3, 280, 140, 0, 3425, 3426, 5, 3, 0, 0, 3426, 3464, 1, 0, 0, 0, 3427, 3428, 5, 215, 0, 0, 3428, 3429, 5, 2, 0, 0, 3429, 3430, 3, 280, 140, 0, 3430, 3431, 5, 224, 0, 0, 3431, 3432, 3, 280, 140, 0, 3432, 3433, 5, 123, 0, 0, 3433, 3436, 3, 280, 140, 0, 3434, 3435, 5, 119, 0, 0, 3435, 3437, 3, 280, 140, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3464, 1, 0, 0, 0, 3440, 3441, 7, 44, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 280, 140, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3445, 5, 347, 0, 0, 3445, 3446, 5, 130, 0, 0, 3446, 3447, 5, 2, 0, 0, 3447, 3448, 5, 209, 0, 0, 3448, 3449, 5, 31, 0, 0, 3449, 3450, 3, 108, 54, 0, 3450, 3457, 5, 3, 0, 0, 3451, 3452, 5, 114, 0, 0, 3452, 3453, 5, 2, 0, 0, 3453, 3454, 5, 344, 0, 0, 3454, 3455, 3, 276, 138, 0, 3455, 3456, 5, 3, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3460, 5, 213, 0, 0, 3460, 3462, 3, 358, 179, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3214, 1, 0, 0, 0, 3463, 3216, 1, 0, 0, 0, 3463, 3228, 1, 0, 0, 0, 3463, 3240, 1, 0, 0, 0, 3463, 3252, 1, 0, 0, 0, 3463, 3265, 1, 0, 0, 0, 3463, 3272, 1, 0, 0, 0, 3463, 3285, 1, 0, 0, 0, 3463, 3294, 1, 0, 0, 0, 3463, 3303, 1, 0, 0, 0, 3463, 3312, 1, 0, 0, 0, 3463, 3319, 1, 0, 0, 0, 3463, 3320, 1, 0, 0, 0, 3463, 3321, 1, 0, 0, 0, 3463, 3325, 1, 0, 0, 0, 3463, 3335, 1, 0, 0, 0, 3463, 3339, 1, 0, 0, 0, 3463, 3344, 1, 0, 0, 0, 3463, 3376, 1, 0, 0, 0, 3463, 3380, 1, 0, 0, 0, 3463, 3392, 1, 0, 0, 0, 3463, 3393, 1, 0, 0, 0, 3463, 3397, 1, 0, 0, 0, 3463, 3404, 1, 0, 0, 0, 3463, 3415, 1, 0, 0, 0, 3463, 3427, 1, 0, 0, 0, 3463, 3440, 1, 0, 0, 0, 3464, 3475, 1, 0, 0, 0, 3465, 3466, 10, 9, 0, 0, 3466, 3467, 5, 6, 0, 0, 3467, 3468, 3, 280, 140, 0, 3468, 3469, 5, 7, 0, 0, 3469, 3474, 1, 0, 0, 0, 3470, 3471, 10, 7, 0, 0, 3471, 3472, 5, 5, 0, 0, 3472, 3474, 3, 376, 188, 0, 3473, 3465, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 285, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3486, 5, 71, 0, 0, 3479, 3486, 5, 303, 0, 0, 3480, 3486, 5, 304, 0, 0, 3481, 3486, 5, 305, 0, 0, 3482, 3486, 5, 149, 0, 0, 3483, 3486, 5, 133, 0, 0, 3484, 3486, 3, 376, 188, 0, 3485, 3478, 1, 0, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 287, 1, 0, 0, 0, 3487, 3503, 5, 198, 0, 0, 3488, 3503, 5, 376, 0, 0, 3489, 3490, 5, 371, 0, 0, 3490, 3503, 3, 376, 188, 0, 3491, 3503, 3, 298, 149, 0, 3492, 3493, 3, 286, 143, 0, 3493, 3494, 3, 388, 194, 0, 3494, 3503, 1, 0, 0, 0, 3495, 3503, 3, 384, 192, 0, 3496, 3503, 3, 296, 148, 0, 3497, 3499, 3, 388, 194, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3487, 1, 0, 0, 0, 3502, 3488, 1, 0, 0, 0, 3502, 3489, 1, 0, 0, 0, 3502, 3491, 1, 0, 0, 0, 3502, 3492, 1, 0, 0, 0, 3502, 3495, 1, 0, 0, 0, 3502, 3496, 1, 0, 0, 0, 3502, 3498, 1, 0, 0, 0, 3503, 289, 1, 0, 0, 0, 3504, 3505, 7, 45, 0, 0, 3505, 291, 1, 0, 0, 0, 3506, 3507, 7, 46, 0, 0, 3507, 293, 1, 0, 0, 0, 3508, 3509, 7, 47, 0, 0, 3509, 295, 1, 0, 0, 0, 3510, 3511, 7, 48, 0, 0, 3511, 297, 1, 0, 0, 0, 3512, 3515, 5, 149, 0, 0, 3513, 3516, 3, 300, 150, 0, 3514, 3516, 3, 304, 152, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 299, 1, 0, 0, 0, 3517, 3519, 3, 302, 151, 0, 3518, 3520, 3, 306, 153, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3522, 3, 308, 154, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3525, 1, 0, 0, 0, 3524, 3521, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 303, 1, 0, 0, 0, 3528, 3531, 3, 306, 153, 0, 3529, 3532, 3, 302, 151, 0, 3530, 3532, 3, 306, 153, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 305, 1, 0, 0, 0, 3533, 3534, 3, 308, 154, 0, 3534, 3535, 3, 312, 156, 0, 3535, 3536, 5, 309, 0, 0, 3536, 3537, 3, 312, 156, 0, 3537, 307, 1, 0, 0, 0, 3538, 3540, 7, 49, 0, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3544, 1, 0, 0, 0, 3541, 3545, 5, 382, 0, 0, 3542, 3545, 5, 384, 0, 0, 3543, 3545, 3, 388, 194, 0, 3544, 3541, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3543, 1, 0, 0, 0, 3545, 309, 1, 0, 0, 0, 3546, 3547, 7, 50, 0, 0, 3547, 311, 1, 0, 0, 0, 3548, 3549, 7, 51, 0, 0, 3549, 313, 1, 0, 0, 0, 3550, 3554, 5, 116, 0, 0, 3551, 3552, 5, 9, 0, 0, 3552, 3554, 3, 372, 186, 0, 3553, 3550, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 315, 1, 0, 0, 0, 3555, 3586, 5, 27, 0, 0, 3556, 3586, 5, 308, 0, 0, 3557, 3586, 5, 32, 0, 0, 3558, 3586, 5, 276, 0, 0, 3559, 3586, 5, 272, 0, 0, 3560, 3586, 5, 150, 0, 0, 3561, 3586, 5, 151, 0, 0, 3562, 3586, 5, 25, 0, 0, 3563, 3586, 5, 174, 0, 0, 3564, 3586, 5, 117, 0, 0, 3565, 3586, 5, 234, 0, 0, 3566, 3586, 5, 95, 0, 0, 3567, 3586, 5, 71, 0, 0, 3568, 3586, 5, 303, 0, 0, 3569, 3586, 5, 305, 0, 0, 3570, 3586, 5, 304, 0, 0, 3571, 3586, 5, 285, 0, 0, 3572, 3586, 5, 41, 0, 0, 3573, 3586, 5, 40, 0, 0, 3574, 3586, 5, 334, 0, 0, 3575, 3586, 5, 26, 0, 0, 3576, 3586, 5, 80, 0, 0, 3577, 3586, 5, 79, 0, 0, 3578, 3586, 5, 200, 0, 0, 3579, 3586, 5, 340, 0, 0, 3580, 3586, 5, 149, 0, 0, 3581, 3586, 5, 19, 0, 0, 3582, 3586, 5, 286, 0, 0, 3583, 3586, 5, 177, 0, 0, 3584, 3586, 3, 376, 188, 0, 3585, 3555, 1, 0, 0, 0, 3585, 3556, 1, 0, 0, 0, 3585, 3557, 1, 0, 0, 0, 3585, 3558, 1, 0, 0, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3560, 1, 0, 0, 0, 3585, 3561, 1, 0, 0, 0, 3585, 3562, 1, 0, 0, 0, 3585, 3563, 1, 0, 0, 0, 3585, 3564, 1, 0, 0, 0, 3585, 3565, 1, 0, 0, 0, 3585, 3566, 1, 0, 0, 0, 3585, 3567, 1, 0, 0, 0, 3585, 3568, 1, 0, 0, 0, 3585, 3569, 1, 0, 0, 0, 3585, 3570, 1, 0, 0, 0, 3585, 3571, 1, 0, 0, 0, 3585, 3572, 1, 0, 0, 0, 3585, 3573, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3576, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3578, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3585, 3580, 1, 0, 0, 0, 3585, 3581, 1, 0, 0, 0, 3585, 3582, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3585, 3584, 1, 0, 0, 0, 3586, 317, 1, 0, 0, 0, 3587, 3588, 5, 19, 0, 0, 3588, 3589, 5, 356, 0, 0, 3589, 3590, 3, 318, 159, 0, 3590, 3591, 5, 358, 0, 0, 3591, 3634, 1, 0, 0, 0, 3592, 3593, 5, 177, 0, 0, 3593, 3594, 5, 356, 0, 0, 3594, 3595, 3, 318, 159, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 318, 159, 0, 3597, 3598, 5, 358, 0, 0, 3598, 3634, 1, 0, 0, 0, 3599, 3606, 5, 286, 0, 0, 3600, 3602, 5, 356, 0, 0, 3601, 3603, 3, 346, 173, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3607, 5, 358, 0, 0, 3605, 3607, 5, 354, 0, 0, 3606, 3600, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 3634, 1, 0, 0, 0, 3608, 3609, 5, 149, 0, 0, 3609, 3612, 7, 52, 0, 0, 3610, 3611, 5, 309, 0, 0, 3611, 3613, 5, 186, 0, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3634, 1, 0, 0, 0, 3614, 3615, 5, 149, 0, 0, 3615, 3618, 7, 53, 0, 0, 3616, 3617, 5, 309, 0, 0, 3617, 3619, 7, 54, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3634, 1, 0, 0, 0, 3620, 3631, 3, 316, 158, 0, 3621, 3622, 5, 2, 0, 0, 3622, 3627, 5, 382, 0, 0, 3623, 3624, 5, 4, 0, 0, 3624, 3626, 5, 382, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 3, 0, 0, 3631, 3621, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3587, 1, 0, 0, 0, 3633, 3592, 1, 0, 0, 0, 3633, 3599, 1, 0, 0, 0, 3633, 3608, 1, 0, 0, 0, 3633, 3614, 1, 0, 0, 0, 3633, 3620, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3640, 3, 322, 161, 0, 3636, 3637, 5, 4, 0, 0, 3637, 3639, 3, 322, 161, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 321, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3644, 3, 96, 48, 0, 3644, 3648, 3, 318, 159, 0, 3645, 3647, 3, 328, 164, 0, 3646, 3645, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 323, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3656, 3, 326, 163, 0, 3652, 3653, 5, 4, 0, 0, 3653, 3655, 3, 326, 163, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 325, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 3, 92, 46, 0, 3660, 3664, 3, 318, 159, 0, 3661, 3663, 3, 328, 164, 0, 3662, 3661, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 327, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3667, 3668, 5, 197, 0, 0, 3668, 3673, 5, 198, 0, 0, 3669, 3673, 3, 330, 165, 0, 3670, 3673, 3, 24, 12, 0, 3671, 3673, 3, 314, 157, 0, 3672, 3667, 1, 0, 0, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 329, 1, 0, 0, 0, 3674, 3675, 5, 82, 0, 0, 3675, 3676, 3, 268, 134, 0, 3676, 331, 1, 0, 0, 0, 3677, 3678, 7, 55, 0, 0, 3678, 3679, 3, 268, 134, 0, 3679, 333, 1, 0, 0, 0, 3680, 3685, 3, 336, 168, 0, 3681, 3682, 5, 4, 0, 0, 3682, 3684, 3, 336, 168, 0, 3683, 3681, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 335, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3688, 3689, 3, 372, 186, 0, 3689, 3692, 3, 318, 159, 0, 3690, 3691, 5, 197, 0, 0, 3691, 3693, 5, 198, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 3, 24, 12, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3702, 3, 340, 170, 0, 3698, 3699, 5, 4, 0, 0, 3699, 3701, 3, 340, 170, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 339, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 3, 96, 48, 0, 3706, 3710, 3, 318, 159, 0, 3707, 3709, 3, 342, 171, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 341, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 5, 197, 0, 0, 3714, 3719, 5, 198, 0, 0, 3715, 3719, 3, 330, 165, 0, 3716, 3719, 3, 344, 172, 0, 3717, 3719, 3, 24, 12, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 5, 127, 0, 0, 3721, 3722, 5, 12, 0, 0, 3722, 3723, 5, 20, 0, 0, 3723, 3724, 5, 2, 0, 0, 3724, 3725, 3, 268, 134, 0, 3725, 3726, 5, 3, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3732, 3, 348, 174, 0, 3728, 3729, 5, 4, 0, 0, 3729, 3731, 3, 348, 174, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3734, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 347, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3737, 3, 376, 188, 0, 3736, 3738, 5, 371, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3742, 3, 318, 159, 0, 3740, 3741, 5, 197, 0, 0, 3741, 3743, 5, 198, 0, 0, 3742, 3740, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 3, 24, 12, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 349, 1, 0, 0, 0, 3747, 3748, 5, 343, 0, 0, 3748, 3749, 3, 268, 134, 0, 3749, 3750, 5, 300, 0, 0, 3750, 3751, 3, 268, 134, 0, 3751, 351, 1, 0, 0, 0, 3752, 3753, 5, 345, 0, 0, 3753, 3758, 3, 356, 178, 0, 3754, 3755, 5, 4, 0, 0, 3755, 3757, 3, 356, 178, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 353, 1, 0, 0, 0, 3760, 3758, 1, 0, 0, 0, 3761, 3762, 5, 351, 0, 0, 3762, 3763, 5, 31, 0, 0, 3763, 3764, 3, 94, 47, 0, 3764, 355, 1, 0, 0, 0, 3765, 3766, 3, 372, 186, 0, 3766, 3767, 5, 20, 0, 0, 3767, 3768, 3, 358, 179, 0, 3768, 357, 1, 0, 0, 0, 3769, 3816, 3, 372, 186, 0, 3770, 3771, 5, 2, 0, 0, 3771, 3772, 3, 372, 186, 0, 3772, 3773, 5, 3, 0, 0, 3773, 3816, 1, 0, 0, 0, 3774, 3809, 5, 2, 0, 0, 3775, 3776, 5, 44, 0, 0, 3776, 3777, 5, 31, 0, 0, 3777, 3782, 3, 268, 134, 0, 3778, 3779, 5, 4, 0, 0, 3779, 3781, 3, 268, 134, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3810, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 7, 24, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 268, 134, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 268, 134, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3807, 1, 0, 0, 0, 3797, 3798, 7, 25, 0, 0, 3798, 3799, 5, 31, 0, 0, 3799, 3804, 3, 108, 54, 0, 3800, 3801, 5, 4, 0, 0, 3801, 3803, 3, 108, 54, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3808, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3797, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3775, 1, 0, 0, 0, 3809, 3795, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 360, 180, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 5, 3, 0, 0, 3815, 3769, 1, 0, 0, 0, 3815, 3770, 1, 0, 0, 0, 3815, 3774, 1, 0, 0, 0, 3816, 359, 1, 0, 0, 0, 3817, 3818, 5, 233, 0, 0, 3818, 3834, 3, 362, 181, 0, 3819, 3820, 5, 258, 0, 0, 3820, 3834, 3, 362, 181, 0, 3821, 3822, 5, 233, 0, 0, 3822, 3823, 5, 24, 0, 0, 3823, 3824, 3, 362, 181, 0, 3824, 3825, 5, 14, 0, 0, 3825, 3826, 3, 362, 181, 0, 3826, 3834, 1, 0, 0, 0, 3827, 3828, 5, 258, 0, 0, 3828, 3829, 5, 24, 0, 0, 3829, 3830, 3, 362, 181, 0, 3830, 3831, 5, 14, 0, 0, 3831, 3832, 3, 362, 181, 0, 3832, 3834, 1, 0, 0, 0, 3833, 3817, 1, 0, 0, 0, 3833, 3819, 1, 0, 0, 0, 3833, 3821, 1, 0, 0, 0, 3833, 3827, 1, 0, 0, 0, 3834, 361, 1, 0, 0, 0, 3835, 3836, 5, 321, 0, 0, 3836, 3843, 7, 56, 0, 0, 3837, 3838, 5, 62, 0, 0, 3838, 3843, 5, 257, 0, 0, 3839, 3840, 3, 268, 134, 0, 3840, 3841, 7, 56, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3835, 1, 0, 0, 0, 3842, 3837, 1, 0, 0, 0, 3842, 3839, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3849, 3, 370, 185, 0, 3845, 3846, 5, 4, 0, 0, 3846, 3848, 3, 370, 185, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3853, 5, 136, 0, 0, 3853, 3854, 5, 2, 0, 0, 3854, 3855, 3, 268, 134, 0, 3855, 3856, 5, 3, 0, 0, 3856, 3862, 1, 0, 0, 0, 3857, 3862, 3, 370, 185, 0, 3858, 3862, 5, 114, 0, 0, 3859, 3862, 5, 161, 0, 0, 3860, 3862, 5, 250, 0, 0, 3861, 3852, 1, 0, 0, 0, 3861, 3857, 1, 0, 0, 0, 3861, 3858, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3861, 3860, 1, 0, 0, 0, 3862, 367, 1, 0, 0, 0, 3863, 3864, 3, 370, 185, 0, 3864, 369, 1, 0, 0, 0, 3865, 3870, 3, 376, 188, 0, 3866, 3867, 5, 5, 0, 0, 3867, 3869, 3, 376, 188, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 371, 1, 0, 0, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3874, 3, 376, 188, 0, 3874, 3875, 3, 374, 187, 0, 3875, 373, 1, 0, 0, 0, 3876, 3877, 5, 362, 0, 0, 3877, 3879, 3, 376, 188, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3878, 1, 0, 0, 0, 3883, 3882, 1, 0, 0, 0, 3884, 375, 1, 0, 0, 0, 3885, 3888, 3, 378, 189, 0, 3886, 3888, 3, 396, 198, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3886, 1, 0, 0, 0, 3888, 377, 1, 0, 0, 0, 3889, 3894, 5, 388, 0, 0, 3890, 3894, 3, 380, 190, 0, 3891, 3894, 3, 394, 197, 0, 3892, 3894, 3, 398, 199, 0, 3893, 3889, 1, 0, 0, 0, 3893, 3890, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3892, 1, 0, 0, 0, 3894, 379, 1, 0, 0, 0, 3895, 3896, 7, 57, 0, 0, 3896, 381, 1, 0, 0, 0, 3897, 3898, 5, 389, 0, 0, 3898, 383, 1, 0, 0, 0, 3899, 3901, 5, 362, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3940, 5, 383, 0, 0, 3903, 3905, 5, 362, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3940, 5, 384, 0, 0, 3907, 3909, 5, 362, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3940, 7, 58, 0, 0, 3911, 3913, 5, 362, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3940, 5, 382, 0, 0, 3915, 3917, 5, 362, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3940, 5, 379, 0, 0, 3919, 3921, 5, 362, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3940, 5, 380, 0, 0, 3923, 3925, 5, 362, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3940, 5, 381, 0, 0, 3927, 3929, 5, 362, 0, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3940, 5, 386, 0, 0, 3931, 3933, 5, 362, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3940, 5, 385, 0, 0, 3935, 3937, 5, 362, 0, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 5, 387, 0, 0, 3939, 3900, 1, 0, 0, 0, 3939, 3904, 1, 0, 0, 0, 3939, 3908, 1, 0, 0, 0, 3939, 3912, 1, 0, 0, 0, 3939, 3916, 1, 0, 0, 0, 3939, 3920, 1, 0, 0, 0, 3939, 3924, 1, 0, 0, 0, 3939, 3928, 1, 0, 0, 0, 3939, 3932, 1, 0, 0, 0, 3939, 3936, 1, 0, 0, 0, 3940, 385, 1, 0, 0, 0, 3941, 3942, 5, 319, 0, 0, 3942, 3953, 3, 318, 159, 0, 3943, 3953, 3, 24, 12, 0, 3944, 3953, 3, 314, 157, 0, 3945, 3946, 7, 59, 0, 0, 3946, 3947, 5, 197, 0, 0, 3947, 3953, 5, 198, 0, 0, 3948, 3949, 5, 269, 0, 0, 3949, 3953, 3, 330, 165, 0, 3950, 3951, 5, 96, 0, 0, 3951, 3953, 5, 82, 0, 0, 3952, 3941, 1, 0, 0, 0, 3952, 3943, 1, 0, 0, 0, 3952, 3944, 1, 0, 0, 0, 3952, 3945, 1, 0, 0, 0, 3952, 3948, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 387, 1, 0, 0, 0, 3954, 3955, 7, 60, 0, 0, 3955, 389, 1, 0, 0, 0, 3956, 3959, 3, 388, 194, 0, 3957, 3959, 5, 198, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 391, 1, 0, 0, 0, 3960, 3963, 5, 382, 0, 0, 3961, 3963, 3, 388, 194, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3961, 1, 0, 0, 0, 3963, 393, 1, 0, 0, 0, 3964, 3965, 7, 61, 0, 0, 3965, 395, 1, 0, 0, 0, 3966, 3967, 7, 62, 0, 0, 3967, 397, 1, 0, 0, 0, 3968, 3969, 7, 63, 0, 0, 3969, 399, 1, 0, 0, 0, 517, 403, 410, 414, 419, 426, 431, 439, 441, 460, 464, 470, 473, 476, 483, 486, 490, 493, 498, 510, 512, 520, 523, 527, 530, 536, 547, 553, 558, 591, 601, 612, 623, 634, 639, 648, 652, 658, 662, 667, 673, 685, 693, 699, 710, 714, 719, 734, 738, 745, 749, 755, 784, 788, 793, 800, 806, 809, 812, 816, 820, 828, 830, 839, 842, 851, 856, 862, 869, 872, 876, 887, 890, 896, 900, 915, 917, 925, 929, 935, 938, 942, 945, 951, 956, 960, 967, 970, 973, 980, 985, 994, 1002, 1008, 1011, 1014, 1020, 1024, 1029, 1032, 1036, 1038, 1046, 1054, 1057, 1064, 1067, 1070, 1079, 1084, 1090, 1095, 1098, 1102, 1105, 1109, 1137, 1140, 1148, 1154, 1157, 1160, 1165, 1173, 1178, 1184, 1190, 1193, 1200, 1207, 1215, 1232, 1259, 1262, 1268, 1277, 1286, 1292, 1297, 1302, 1309, 1314, 1319, 1326, 1334, 1337, 1341, 1353, 1357, 1364, 1480, 1488, 1496, 1505, 1515, 1519, 1522, 1526, 1532, 1544, 1556, 1561, 1570, 1578, 1583, 1585, 1593, 1598, 1602, 1605, 1613, 1618, 1627, 1632, 1635, 1640, 1644, 1649, 1651, 1655, 1664, 1672, 1678, 1689, 1696, 1705, 1710, 1713, 1736, 1738, 1750, 1757, 1760, 1767, 1771, 1777, 1785, 1792, 1795, 1803, 1814, 1825, 1833, 1839, 1851, 1858, 1865, 1877, 1885, 1891, 1897, 1900, 1916, 1923, 1934, 1943, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1985, 1990, 1992, 1996, 2007, 2013, 2019, 2022, 2024, 2036, 2040, 2043, 2047, 2053, 2057, 2065, 2069, 2072, 2075, 2078, 2082, 2086, 2091, 2095, 2098, 2101, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2128, 2134, 2141, 2146, 2149, 2152, 2156, 2166, 2170, 2172, 2175, 2179, 2185, 2189, 2200, 2210, 2214, 2226, 2238, 2253, 2258, 2264, 2271, 2287, 2292, 2305, 2310, 2318, 2324, 2328, 2331, 2336, 2343, 2349, 2358, 2368, 2383, 2388, 2390, 2395, 2404, 2417, 2422, 2426, 2433, 2438, 2442, 2445, 2448, 2462, 2475, 2480, 2484, 2487, 2491, 2497, 2500, 2507, 2519, 2530, 2543, 2554, 2559, 2567, 2572, 2586, 2595, 2598, 2603, 2610, 2613, 2619, 2625, 2628, 2633, 2638, 2642, 2648, 2652, 2655, 2660, 2663, 2668, 2672, 2675, 2678, 2684, 2689, 2696, 2699, 2717, 2719, 2722, 2733, 2742, 2749, 2757, 2764, 2769, 2772, 2775, 2783, 2791, 2797, 2805, 2813, 2820, 2827, 2829, 2842, 2848, 2850, 2860, 2866, 2868, 2876, 2880, 2889, 2892, 2898, 2902, 2904, 2913, 2925, 2927, 2934, 2941, 2947, 2953, 2955, 2962, 2970, 2978, 2984, 2989, 2996, 3002, 3005, 3009, 3011, 3018, 3027, 3034, 3044, 3049, 3053, 3063, 3070, 3083, 3085, 3093, 3095, 3099, 3107, 3116, 3122, 3130, 3135, 3147, 3152, 3155, 3161, 3165, 3170, 3175, 3180, 3186, 3207, 3209, 3220, 3232, 3244, 3248, 3257, 3261, 3279, 3282, 3290, 3299, 3308, 3331, 3347, 3354, 3357, 3366, 3370, 3374, 3386, 3411, 3418, 3421, 3436, 3457, 3461, 3463, 3473, 3475, 3485, 3500, 3502, 3515, 3519, 3526, 3531, 3539, 3544, 3553, 3585, 3602, 3606, 3612, 3618, 3627, 3631, 3633, 3640, 3648, 3656, 3664, 3672, 3685, 3692, 3695, 3702, 3710, 3718, 3732, 3737, 3742, 3745, 3758, 3782, 3792, 3795, 3804, 3807, 3809, 3812, 3815, 3833, 3842, 3849, 3861, 3870, 3880, 3883, 3887, 3893, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3939, 3952, 3958, 3962] \ No newline at end of file +[4, 1, 393, 3956, 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, 1, 0, 5, 0, 410, 8, 0, 10, 0, 12, 0, 413, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 419, 8, 1, 1, 2, 1, 2, 3, 2, 423, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 428, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 435, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 448, 8, 2, 10, 2, 12, 2, 451, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 469, 8, 2, 1, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 479, 8, 2, 1, 2, 3, 2, 482, 8, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 492, 8, 2, 1, 2, 3, 2, 495, 8, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 3, 2, 502, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 507, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 519, 8, 2, 10, 2, 12, 2, 522, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 529, 8, 2, 1, 2, 3, 2, 532, 8, 2, 1, 2, 1, 2, 3, 2, 536, 8, 2, 1, 2, 3, 2, 539, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 545, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 556, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 562, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 567, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 600, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 610, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 621, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 632, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 643, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 648, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 667, 8, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 676, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 682, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 702, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 719, 8, 2, 1, 2, 1, 2, 3, 2, 723, 8, 2, 1, 2, 4, 2, 726, 8, 2, 11, 2, 12, 2, 727, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 752, 8, 2, 10, 2, 12, 2, 755, 9, 2, 1, 2, 3, 2, 758, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 764, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 793, 8, 2, 1, 2, 1, 2, 3, 2, 797, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 802, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 809, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 3, 2, 818, 8, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 837, 8, 2, 10, 2, 12, 2, 840, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 848, 8, 2, 1, 2, 3, 2, 851, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 860, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 865, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 871, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 878, 8, 2, 1, 2, 3, 2, 881, 8, 2, 1, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 894, 8, 2, 10, 2, 12, 2, 897, 9, 2, 3, 2, 899, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 905, 8, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 924, 8, 2, 10, 2, 12, 2, 927, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 934, 8, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 3, 2, 951, 8, 2, 1, 2, 3, 2, 954, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 960, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 965, 8, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 976, 8, 2, 1, 2, 3, 2, 979, 8, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 989, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 994, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1011, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1017, 8, 2, 1, 2, 3, 2, 1020, 8, 2, 1, 2, 3, 2, 1023, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1029, 8, 2, 1, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1038, 8, 2, 1, 2, 3, 2, 1041, 8, 2, 1, 2, 1, 2, 3, 2, 1045, 8, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1063, 8, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1073, 8, 2, 1, 2, 3, 2, 1076, 8, 2, 1, 2, 3, 2, 1079, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1088, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1093, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 3, 2, 1114, 8, 2, 1, 2, 1, 2, 3, 2, 1118, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1144, 8, 2, 10, 2, 12, 2, 1147, 9, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1157, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1163, 8, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 3, 2, 1169, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1182, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1187, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1193, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1199, 8, 2, 1, 2, 3, 2, 1202, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1209, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1222, 8, 2, 10, 2, 12, 2, 1225, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1239, 8, 2, 10, 2, 12, 2, 1242, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1266, 8, 2, 10, 2, 12, 2, 1269, 9, 2, 3, 2, 1271, 8, 2, 1, 2, 1, 2, 5, 2, 1275, 8, 2, 10, 2, 12, 2, 1278, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1284, 8, 2, 10, 2, 12, 2, 1287, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1293, 8, 2, 10, 2, 12, 2, 1296, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1301, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1306, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1311, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1318, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1323, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1328, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1335, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1341, 8, 2, 10, 2, 12, 2, 1344, 9, 2, 3, 2, 1346, 8, 2, 1, 3, 1, 3, 3, 3, 1350, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1362, 8, 6, 1, 6, 1, 6, 3, 6, 1366, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1373, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1505, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1514, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1524, 8, 6, 1, 7, 1, 7, 3, 7, 1528, 8, 7, 1, 7, 3, 7, 1531, 8, 7, 1, 7, 1, 7, 3, 7, 1535, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1541, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1553, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1565, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1570, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1579, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1587, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1592, 8, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1602, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1607, 8, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1622, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1627, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 3, 14, 1644, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1649, 8, 14, 1, 14, 1, 14, 3, 14, 1653, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1658, 8, 14, 3, 14, 1660, 8, 14, 1, 15, 1, 15, 3, 15, 1664, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1671, 8, 16, 10, 16, 12, 16, 1674, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1681, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1687, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1698, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1703, 8, 21, 10, 21, 12, 21, 1706, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1712, 8, 22, 10, 22, 12, 22, 1715, 9, 22, 1, 23, 1, 23, 3, 23, 1719, 8, 23, 1, 23, 3, 23, 1722, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1745, 8, 25, 10, 25, 12, 25, 1748, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1757, 8, 27, 10, 27, 12, 27, 1760, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1766, 8, 28, 1, 28, 3, 28, 1769, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1774, 8, 29, 10, 29, 12, 29, 1777, 9, 29, 1, 29, 3, 29, 1780, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1786, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1792, 8, 31, 10, 31, 12, 31, 1795, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1801, 8, 32, 1, 32, 3, 32, 1804, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1810, 8, 33, 10, 33, 12, 33, 1813, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1821, 8, 34, 10, 34, 12, 34, 1824, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1834, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1842, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1848, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1858, 8, 39, 11, 39, 12, 39, 1859, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1867, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1874, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1886, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1892, 8, 39, 10, 39, 12, 39, 1895, 9, 39, 1, 39, 5, 39, 1898, 8, 39, 10, 39, 12, 39, 1901, 9, 39, 1, 39, 5, 39, 1904, 8, 39, 10, 39, 12, 39, 1907, 9, 39, 3, 39, 1909, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1925, 8, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 1932, 8, 48, 10, 48, 12, 48, 1935, 9, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1945, 8, 50, 1, 51, 1, 51, 1, 51, 3, 51, 1950, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1955, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1960, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1965, 8, 51, 1, 51, 3, 51, 1968, 8, 51, 1, 51, 3, 51, 1971, 8, 51, 1, 51, 1, 51, 3, 51, 1975, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 53, 1, 53, 1, 53, 5, 53, 1985, 8, 53, 10, 53, 12, 53, 1988, 9, 53, 1, 54, 1, 54, 1, 54, 5, 54, 1993, 8, 54, 10, 54, 12, 54, 1996, 9, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2007, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2013, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2019, 8, 56, 1, 56, 5, 56, 2022, 8, 56, 10, 56, 12, 56, 2025, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2036, 8, 57, 1, 58, 1, 58, 3, 58, 2040, 8, 58, 1, 58, 3, 58, 2043, 8, 58, 1, 58, 1, 58, 3, 58, 2047, 8, 58, 1, 59, 1, 59, 4, 59, 2051, 8, 59, 11, 59, 12, 59, 2052, 1, 60, 1, 60, 3, 60, 2057, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2063, 8, 60, 10, 60, 12, 60, 2066, 9, 60, 1, 60, 3, 60, 2069, 8, 60, 1, 60, 3, 60, 2072, 8, 60, 1, 60, 3, 60, 2075, 8, 60, 1, 60, 3, 60, 2078, 8, 60, 1, 60, 1, 60, 3, 60, 2082, 8, 60, 1, 61, 1, 61, 3, 61, 2086, 8, 61, 1, 61, 5, 61, 2089, 8, 61, 10, 61, 12, 61, 2092, 9, 61, 1, 61, 3, 61, 2095, 8, 61, 1, 61, 3, 61, 2098, 8, 61, 1, 61, 3, 61, 2101, 8, 61, 1, 61, 3, 61, 2104, 8, 61, 1, 61, 1, 61, 3, 61, 2108, 8, 61, 1, 61, 5, 61, 2111, 8, 61, 10, 61, 12, 61, 2114, 9, 61, 1, 61, 3, 61, 2117, 8, 61, 1, 61, 3, 61, 2120, 8, 61, 1, 61, 3, 61, 2123, 8, 61, 1, 61, 3, 61, 2126, 8, 61, 3, 61, 2128, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2134, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2141, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2146, 8, 62, 1, 62, 3, 62, 2149, 8, 62, 1, 62, 3, 62, 2152, 8, 62, 1, 62, 1, 62, 3, 62, 2156, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2166, 8, 62, 1, 62, 1, 62, 3, 62, 2170, 8, 62, 3, 62, 2172, 8, 62, 1, 62, 3, 62, 2175, 8, 62, 1, 62, 1, 62, 3, 62, 2179, 8, 62, 1, 63, 1, 63, 5, 63, 2183, 8, 63, 10, 63, 12, 63, 2186, 9, 63, 1, 63, 3, 63, 2189, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2200, 8, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2210, 8, 66, 1, 66, 1, 66, 3, 66, 2214, 8, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2226, 8, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2238, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2251, 8, 69, 10, 69, 12, 69, 2254, 9, 69, 1, 69, 1, 69, 3, 69, 2258, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2264, 8, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2269, 8, 71, 10, 71, 12, 71, 2272, 9, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2287, 8, 75, 1, 75, 5, 75, 2290, 8, 75, 10, 75, 12, 75, 2293, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2303, 8, 76, 10, 76, 12, 76, 2306, 9, 76, 1, 76, 1, 76, 3, 76, 2310, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2316, 8, 77, 10, 77, 12, 77, 2319, 9, 77, 1, 77, 5, 77, 2322, 8, 77, 10, 77, 12, 77, 2325, 9, 77, 1, 77, 3, 77, 2328, 8, 77, 1, 77, 3, 77, 2331, 8, 77, 1, 78, 1, 78, 1, 79, 3, 79, 2336, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2343, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2349, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2356, 8, 80, 10, 80, 12, 80, 2359, 9, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2366, 8, 80, 10, 80, 12, 80, 2369, 9, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2381, 8, 80, 10, 80, 12, 80, 2384, 9, 80, 1, 80, 1, 80, 3, 80, 2388, 8, 80, 3, 80, 2390, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 2395, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2402, 8, 82, 10, 82, 12, 82, 2405, 9, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2415, 8, 82, 10, 82, 12, 82, 2418, 9, 82, 1, 82, 1, 82, 3, 82, 2422, 8, 82, 1, 83, 1, 83, 3, 83, 2426, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2433, 8, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2438, 8, 84, 5, 84, 2440, 8, 84, 10, 84, 12, 84, 2443, 9, 84, 3, 84, 2445, 8, 84, 1, 84, 3, 84, 2448, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 2460, 8, 85, 10, 85, 12, 85, 2463, 9, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2473, 8, 86, 10, 86, 12, 86, 2476, 9, 86, 1, 86, 1, 86, 3, 86, 2480, 8, 86, 1, 87, 1, 87, 3, 87, 2484, 8, 87, 1, 87, 3, 87, 2487, 8, 87, 1, 88, 1, 88, 3, 88, 2491, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2497, 8, 88, 1, 88, 3, 88, 2500, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2507, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 2517, 8, 91, 10, 91, 12, 91, 2520, 9, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2528, 8, 92, 10, 92, 12, 92, 2531, 9, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2541, 8, 92, 10, 92, 12, 92, 2544, 9, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 2552, 8, 93, 10, 93, 12, 93, 2555, 9, 93, 1, 93, 1, 93, 3, 93, 2559, 8, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 3, 96, 2567, 8, 96, 1, 97, 1, 97, 1, 98, 3, 98, 2572, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2586, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2593, 8, 101, 10, 101, 12, 101, 2596, 9, 101, 3, 101, 2598, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2603, 8, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2608, 8, 101, 10, 101, 12, 101, 2611, 9, 101, 3, 101, 2613, 8, 101, 1, 102, 1, 102, 1, 103, 1, 103, 3, 103, 2619, 8, 103, 1, 103, 1, 103, 5, 103, 2623, 8, 103, 10, 103, 12, 103, 2626, 9, 103, 3, 103, 2628, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2633, 8, 104, 1, 105, 1, 105, 1, 105, 3, 105, 2638, 8, 105, 1, 105, 1, 105, 3, 105, 2642, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2648, 8, 105, 1, 105, 1, 105, 3, 105, 2652, 8, 105, 1, 106, 3, 106, 2655, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2660, 8, 106, 1, 106, 3, 106, 2663, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2668, 8, 106, 1, 106, 1, 106, 3, 106, 2672, 8, 106, 1, 106, 3, 106, 2675, 8, 106, 1, 106, 3, 106, 2678, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2684, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 2689, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 2696, 8, 108, 1, 109, 3, 109, 2699, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2717, 8, 109, 3, 109, 2719, 8, 109, 1, 109, 3, 109, 2722, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2731, 8, 111, 10, 111, 12, 111, 2734, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2740, 8, 112, 10, 112, 12, 112, 2743, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 3, 113, 2749, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2755, 8, 114, 10, 114, 12, 114, 2758, 9, 114, 1, 114, 1, 114, 1, 115, 1, 115, 3, 115, 2764, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 2769, 8, 116, 1, 116, 3, 116, 2772, 8, 116, 1, 116, 3, 116, 2775, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2783, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2791, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2797, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 5, 117, 2803, 8, 117, 10, 117, 12, 117, 2806, 9, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 2813, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2820, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2827, 8, 118, 3, 118, 2829, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2840, 8, 119, 10, 119, 12, 119, 2843, 9, 119, 1, 119, 1, 119, 1, 119, 3, 119, 2848, 8, 119, 3, 119, 2850, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 2859, 8, 119, 3, 119, 2861, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2869, 8, 121, 1, 122, 1, 122, 3, 122, 2873, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 2880, 8, 123, 10, 123, 12, 123, 2883, 9, 123, 3, 123, 2885, 8, 123, 1, 123, 1, 123, 1, 123, 1, 124, 3, 124, 2891, 8, 124, 1, 124, 1, 124, 3, 124, 2895, 8, 124, 3, 124, 2897, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2906, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2918, 8, 125, 3, 125, 2920, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2927, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2934, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2940, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2946, 8, 125, 3, 125, 2948, 8, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2953, 8, 126, 10, 126, 12, 126, 2956, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2961, 8, 127, 10, 127, 12, 127, 2964, 9, 127, 1, 128, 1, 128, 1, 128, 5, 128, 2969, 8, 128, 10, 128, 12, 128, 2972, 9, 128, 1, 129, 1, 129, 1, 129, 3, 129, 2977, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2982, 8, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 3, 131, 2989, 8, 131, 1, 131, 1, 131, 1, 132, 1, 132, 3, 132, 2995, 8, 132, 1, 132, 3, 132, 2998, 8, 132, 1, 132, 1, 132, 3, 132, 3002, 8, 132, 3, 132, 3004, 8, 132, 1, 133, 1, 133, 1, 133, 5, 133, 3009, 8, 133, 10, 133, 12, 133, 3012, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3018, 8, 134, 10, 134, 12, 134, 3021, 9, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3027, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 3035, 8, 136, 10, 136, 12, 136, 3038, 9, 136, 1, 136, 1, 136, 3, 136, 3042, 8, 136, 1, 137, 1, 137, 3, 137, 3046, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 3056, 8, 140, 1, 141, 1, 141, 1, 141, 5, 141, 3061, 8, 141, 10, 141, 12, 141, 3064, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3076, 8, 142, 3, 142, 3078, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3086, 8, 142, 10, 142, 12, 142, 3089, 9, 142, 1, 143, 3, 143, 3092, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3100, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 3107, 8, 143, 10, 143, 12, 143, 3110, 9, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3115, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3123, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3128, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 3138, 8, 143, 10, 143, 12, 143, 3141, 9, 143, 1, 143, 1, 143, 3, 143, 3145, 8, 143, 1, 143, 3, 143, 3148, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3154, 8, 143, 1, 143, 1, 143, 3, 143, 3158, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3163, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3168, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3173, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3179, 8, 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, 144, 1, 144, 1, 144, 1, 144, 5, 144, 3200, 8, 144, 10, 144, 12, 144, 3203, 9, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3213, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3225, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 4, 146, 3235, 8, 146, 11, 146, 12, 146, 3236, 1, 146, 1, 146, 3, 146, 3241, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 4, 146, 3248, 8, 146, 11, 146, 12, 146, 3249, 1, 146, 1, 146, 3, 146, 3254, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3270, 8, 146, 10, 146, 12, 146, 3273, 9, 146, 3, 146, 3275, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3283, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3292, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3301, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 4, 146, 3322, 8, 146, 11, 146, 12, 146, 3323, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3340, 8, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3345, 8, 146, 10, 146, 12, 146, 3348, 9, 146, 3, 146, 3350, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3359, 8, 146, 1, 146, 1, 146, 3, 146, 3363, 8, 146, 1, 146, 1, 146, 3, 146, 3367, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 4, 146, 3377, 8, 146, 11, 146, 12, 146, 3378, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3404, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3411, 8, 146, 1, 146, 3, 146, 3414, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3429, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3450, 8, 146, 1, 146, 1, 146, 3, 146, 3454, 8, 146, 3, 146, 3456, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3466, 8, 146, 10, 146, 12, 146, 3469, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3478, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3491, 8, 148, 11, 148, 12, 148, 3492, 3, 148, 3495, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 3508, 8, 153, 1, 154, 1, 154, 3, 154, 3512, 8, 154, 1, 155, 1, 155, 1, 155, 4, 155, 3517, 8, 155, 11, 155, 12, 155, 3518, 1, 156, 1, 156, 1, 156, 3, 156, 3524, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 3, 158, 3532, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3537, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 3, 161, 3546, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3578, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3595, 8, 163, 1, 163, 1, 163, 3, 163, 3599, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3605, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3611, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 5, 163, 3618, 8, 163, 10, 163, 12, 163, 3621, 9, 163, 1, 163, 3, 163, 3624, 8, 163, 3, 163, 3626, 8, 163, 1, 164, 1, 164, 1, 164, 5, 164, 3631, 8, 164, 10, 164, 12, 164, 3634, 9, 164, 1, 165, 1, 165, 1, 165, 5, 165, 3639, 8, 165, 10, 165, 12, 165, 3642, 9, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3647, 8, 166, 10, 166, 12, 166, 3650, 9, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3655, 8, 167, 10, 167, 12, 167, 3658, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3665, 8, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3676, 8, 171, 10, 171, 12, 171, 3679, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 3685, 8, 172, 1, 172, 3, 172, 3688, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3693, 8, 173, 10, 173, 12, 173, 3696, 9, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3701, 8, 174, 10, 174, 12, 174, 3704, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 3711, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 5, 177, 3723, 8, 177, 10, 177, 12, 177, 3726, 9, 177, 1, 178, 1, 178, 3, 178, 3730, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3735, 8, 178, 1, 178, 3, 178, 3738, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 5, 180, 3749, 8, 180, 10, 180, 12, 180, 3752, 9, 180, 1, 181, 1, 181, 1, 181, 1, 181, 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, 183, 1, 183, 1, 183, 5, 183, 3773, 8, 183, 10, 183, 12, 183, 3776, 9, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 3783, 8, 183, 10, 183, 12, 183, 3786, 9, 183, 3, 183, 3788, 8, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3793, 8, 183, 3, 183, 3795, 8, 183, 1, 183, 3, 183, 3798, 8, 183, 1, 183, 3, 183, 3801, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3819, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3828, 8, 185, 1, 186, 1, 186, 1, 186, 5, 186, 3833, 8, 186, 10, 186, 12, 186, 3836, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3847, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 5, 189, 3854, 8, 189, 10, 189, 12, 189, 3857, 9, 189, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 4, 191, 3864, 8, 191, 11, 191, 12, 191, 3865, 1, 191, 3, 191, 3869, 8, 191, 1, 192, 1, 192, 3, 192, 3873, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3879, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 3, 196, 3886, 8, 196, 1, 196, 1, 196, 3, 196, 3890, 8, 196, 1, 196, 1, 196, 3, 196, 3894, 8, 196, 1, 196, 1, 196, 3, 196, 3898, 8, 196, 1, 196, 1, 196, 3, 196, 3902, 8, 196, 1, 196, 1, 196, 3, 196, 3906, 8, 196, 1, 196, 1, 196, 3, 196, 3910, 8, 196, 1, 196, 1, 196, 3, 196, 3914, 8, 196, 1, 196, 1, 196, 3, 196, 3918, 8, 196, 1, 196, 1, 196, 3, 196, 3922, 8, 196, 1, 196, 3, 196, 3925, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 3, 197, 3938, 8, 197, 1, 198, 1, 198, 1, 199, 1, 199, 3, 199, 3944, 8, 199, 1, 200, 1, 200, 3, 200, 3948, 8, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 9, 1145, 1215, 1223, 1240, 1267, 1276, 1285, 1294, 1342, 4, 112, 284, 288, 292, 204, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4563, 0, 411, 1, 0, 0, 0, 2, 416, 1, 0, 0, 0, 4, 1345, 1, 0, 0, 0, 6, 1349, 1, 0, 0, 0, 8, 1351, 1, 0, 0, 0, 10, 1353, 1, 0, 0, 0, 12, 1523, 1, 0, 0, 0, 14, 1525, 1, 0, 0, 0, 16, 1540, 1, 0, 0, 0, 18, 1546, 1, 0, 0, 0, 20, 1558, 1, 0, 0, 0, 22, 1571, 1, 0, 0, 0, 24, 1574, 1, 0, 0, 0, 26, 1578, 1, 0, 0, 0, 28, 1659, 1, 0, 0, 0, 30, 1661, 1, 0, 0, 0, 32, 1665, 1, 0, 0, 0, 34, 1686, 1, 0, 0, 0, 36, 1688, 1, 0, 0, 0, 38, 1690, 1, 0, 0, 0, 40, 1697, 1, 0, 0, 0, 42, 1699, 1, 0, 0, 0, 44, 1707, 1, 0, 0, 0, 46, 1716, 1, 0, 0, 0, 48, 1727, 1, 0, 0, 0, 50, 1746, 1, 0, 0, 0, 52, 1749, 1, 0, 0, 0, 54, 1752, 1, 0, 0, 0, 56, 1763, 1, 0, 0, 0, 58, 1779, 1, 0, 0, 0, 60, 1785, 1, 0, 0, 0, 62, 1787, 1, 0, 0, 0, 64, 1798, 1, 0, 0, 0, 66, 1805, 1, 0, 0, 0, 68, 1816, 1, 0, 0, 0, 70, 1833, 1, 0, 0, 0, 72, 1841, 1, 0, 0, 0, 74, 1843, 1, 0, 0, 0, 76, 1849, 1, 0, 0, 0, 78, 1908, 1, 0, 0, 0, 80, 1910, 1, 0, 0, 0, 82, 1912, 1, 0, 0, 0, 84, 1914, 1, 0, 0, 0, 86, 1916, 1, 0, 0, 0, 88, 1918, 1, 0, 0, 0, 90, 1920, 1, 0, 0, 0, 92, 1924, 1, 0, 0, 0, 94, 1926, 1, 0, 0, 0, 96, 1928, 1, 0, 0, 0, 98, 1936, 1, 0, 0, 0, 100, 1944, 1, 0, 0, 0, 102, 1949, 1, 0, 0, 0, 104, 1976, 1, 0, 0, 0, 106, 1981, 1, 0, 0, 0, 108, 1989, 1, 0, 0, 0, 110, 1997, 1, 0, 0, 0, 112, 2000, 1, 0, 0, 0, 114, 2035, 1, 0, 0, 0, 116, 2039, 1, 0, 0, 0, 118, 2048, 1, 0, 0, 0, 120, 2081, 1, 0, 0, 0, 122, 2127, 1, 0, 0, 0, 124, 2148, 1, 0, 0, 0, 126, 2180, 1, 0, 0, 0, 128, 2192, 1, 0, 0, 0, 130, 2195, 1, 0, 0, 0, 132, 2204, 1, 0, 0, 0, 134, 2218, 1, 0, 0, 0, 136, 2237, 1, 0, 0, 0, 138, 2257, 1, 0, 0, 0, 140, 2263, 1, 0, 0, 0, 142, 2265, 1, 0, 0, 0, 144, 2273, 1, 0, 0, 0, 146, 2277, 1, 0, 0, 0, 148, 2280, 1, 0, 0, 0, 150, 2283, 1, 0, 0, 0, 152, 2309, 1, 0, 0, 0, 154, 2311, 1, 0, 0, 0, 156, 2332, 1, 0, 0, 0, 158, 2348, 1, 0, 0, 0, 160, 2389, 1, 0, 0, 0, 162, 2394, 1, 0, 0, 0, 164, 2421, 1, 0, 0, 0, 166, 2425, 1, 0, 0, 0, 168, 2447, 1, 0, 0, 0, 170, 2449, 1, 0, 0, 0, 172, 2479, 1, 0, 0, 0, 174, 2481, 1, 0, 0, 0, 176, 2488, 1, 0, 0, 0, 178, 2501, 1, 0, 0, 0, 180, 2506, 1, 0, 0, 0, 182, 2508, 1, 0, 0, 0, 184, 2523, 1, 0, 0, 0, 186, 2547, 1, 0, 0, 0, 188, 2560, 1, 0, 0, 0, 190, 2562, 1, 0, 0, 0, 192, 2564, 1, 0, 0, 0, 194, 2568, 1, 0, 0, 0, 196, 2571, 1, 0, 0, 0, 198, 2575, 1, 0, 0, 0, 200, 2579, 1, 0, 0, 0, 202, 2582, 1, 0, 0, 0, 204, 2614, 1, 0, 0, 0, 206, 2627, 1, 0, 0, 0, 208, 2632, 1, 0, 0, 0, 210, 2651, 1, 0, 0, 0, 212, 2677, 1, 0, 0, 0, 214, 2683, 1, 0, 0, 0, 216, 2685, 1, 0, 0, 0, 218, 2721, 1, 0, 0, 0, 220, 2723, 1, 0, 0, 0, 222, 2727, 1, 0, 0, 0, 224, 2735, 1, 0, 0, 0, 226, 2746, 1, 0, 0, 0, 228, 2750, 1, 0, 0, 0, 230, 2761, 1, 0, 0, 0, 232, 2796, 1, 0, 0, 0, 234, 2798, 1, 0, 0, 0, 236, 2828, 1, 0, 0, 0, 238, 2849, 1, 0, 0, 0, 240, 2862, 1, 0, 0, 0, 242, 2868, 1, 0, 0, 0, 244, 2872, 1, 0, 0, 0, 246, 2874, 1, 0, 0, 0, 248, 2896, 1, 0, 0, 0, 250, 2947, 1, 0, 0, 0, 252, 2949, 1, 0, 0, 0, 254, 2957, 1, 0, 0, 0, 256, 2965, 1, 0, 0, 0, 258, 2973, 1, 0, 0, 0, 260, 2981, 1, 0, 0, 0, 262, 2988, 1, 0, 0, 0, 264, 2994, 1, 0, 0, 0, 266, 3005, 1, 0, 0, 0, 268, 3013, 1, 0, 0, 0, 270, 3026, 1, 0, 0, 0, 272, 3041, 1, 0, 0, 0, 274, 3045, 1, 0, 0, 0, 276, 3047, 1, 0, 0, 0, 278, 3049, 1, 0, 0, 0, 280, 3055, 1, 0, 0, 0, 282, 3057, 1, 0, 0, 0, 284, 3077, 1, 0, 0, 0, 286, 3172, 1, 0, 0, 0, 288, 3178, 1, 0, 0, 0, 290, 3204, 1, 0, 0, 0, 292, 3455, 1, 0, 0, 0, 294, 3477, 1, 0, 0, 0, 296, 3494, 1, 0, 0, 0, 298, 3496, 1, 0, 0, 0, 300, 3498, 1, 0, 0, 0, 302, 3500, 1, 0, 0, 0, 304, 3502, 1, 0, 0, 0, 306, 3504, 1, 0, 0, 0, 308, 3509, 1, 0, 0, 0, 310, 3516, 1, 0, 0, 0, 312, 3520, 1, 0, 0, 0, 314, 3525, 1, 0, 0, 0, 316, 3531, 1, 0, 0, 0, 318, 3538, 1, 0, 0, 0, 320, 3540, 1, 0, 0, 0, 322, 3545, 1, 0, 0, 0, 324, 3577, 1, 0, 0, 0, 326, 3625, 1, 0, 0, 0, 328, 3627, 1, 0, 0, 0, 330, 3635, 1, 0, 0, 0, 332, 3643, 1, 0, 0, 0, 334, 3651, 1, 0, 0, 0, 336, 3664, 1, 0, 0, 0, 338, 3666, 1, 0, 0, 0, 340, 3669, 1, 0, 0, 0, 342, 3672, 1, 0, 0, 0, 344, 3680, 1, 0, 0, 0, 346, 3689, 1, 0, 0, 0, 348, 3697, 1, 0, 0, 0, 350, 3710, 1, 0, 0, 0, 352, 3712, 1, 0, 0, 0, 354, 3719, 1, 0, 0, 0, 356, 3727, 1, 0, 0, 0, 358, 3739, 1, 0, 0, 0, 360, 3744, 1, 0, 0, 0, 362, 3753, 1, 0, 0, 0, 364, 3757, 1, 0, 0, 0, 366, 3800, 1, 0, 0, 0, 368, 3818, 1, 0, 0, 0, 370, 3827, 1, 0, 0, 0, 372, 3829, 1, 0, 0, 0, 374, 3846, 1, 0, 0, 0, 376, 3848, 1, 0, 0, 0, 378, 3850, 1, 0, 0, 0, 380, 3858, 1, 0, 0, 0, 382, 3868, 1, 0, 0, 0, 384, 3872, 1, 0, 0, 0, 386, 3878, 1, 0, 0, 0, 388, 3880, 1, 0, 0, 0, 390, 3882, 1, 0, 0, 0, 392, 3924, 1, 0, 0, 0, 394, 3937, 1, 0, 0, 0, 396, 3939, 1, 0, 0, 0, 398, 3943, 1, 0, 0, 0, 400, 3947, 1, 0, 0, 0, 402, 3949, 1, 0, 0, 0, 404, 3951, 1, 0, 0, 0, 406, 3953, 1, 0, 0, 0, 408, 410, 3, 2, 1, 0, 409, 408, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 414, 415, 5, 0, 0, 1, 415, 1, 1, 0, 0, 0, 416, 418, 3, 4, 2, 0, 417, 419, 5, 1, 0, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 3, 1, 0, 0, 0, 420, 1346, 3, 26, 13, 0, 421, 423, 3, 44, 22, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 1346, 3, 78, 39, 0, 425, 427, 5, 330, 0, 0, 426, 428, 3, 36, 18, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 1346, 3, 80, 40, 0, 430, 431, 5, 269, 0, 0, 431, 434, 5, 37, 0, 0, 432, 435, 3, 384, 192, 0, 433, 435, 3, 396, 198, 0, 434, 432, 1, 0, 0, 0, 434, 433, 1, 0, 0, 0, 435, 1346, 1, 0, 0, 0, 436, 437, 5, 59, 0, 0, 437, 439, 3, 36, 18, 0, 438, 440, 3, 198, 99, 0, 439, 438, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 449, 3, 82, 41, 0, 442, 448, 3, 24, 12, 0, 443, 448, 3, 22, 11, 0, 444, 445, 5, 346, 0, 0, 445, 446, 7, 0, 0, 0, 446, 448, 3, 54, 27, 0, 447, 442, 1, 0, 0, 0, 447, 443, 1, 0, 0, 0, 447, 444, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 1346, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 452, 453, 5, 11, 0, 0, 453, 454, 3, 36, 18, 0, 454, 455, 3, 80, 40, 0, 455, 456, 5, 269, 0, 0, 456, 457, 7, 0, 0, 0, 457, 458, 3, 54, 27, 0, 458, 1346, 1, 0, 0, 0, 459, 460, 5, 11, 0, 0, 460, 461, 3, 36, 18, 0, 461, 462, 3, 80, 40, 0, 462, 463, 5, 269, 0, 0, 463, 464, 3, 22, 11, 0, 464, 1346, 1, 0, 0, 0, 465, 466, 5, 96, 0, 0, 466, 468, 3, 36, 18, 0, 467, 469, 3, 200, 100, 0, 468, 467, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 3, 80, 40, 0, 471, 473, 7, 1, 0, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 1346, 1, 0, 0, 0, 474, 475, 5, 273, 0, 0, 475, 478, 3, 38, 19, 0, 476, 477, 7, 2, 0, 0, 477, 479, 3, 254, 127, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 484, 1, 0, 0, 0, 480, 482, 5, 163, 0, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 485, 3, 396, 198, 0, 484, 481, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 1346, 1, 0, 0, 0, 486, 491, 3, 14, 7, 0, 487, 488, 5, 2, 0, 0, 488, 489, 3, 346, 173, 0, 489, 490, 5, 3, 0, 0, 490, 492, 1, 0, 0, 0, 491, 487, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 1, 0, 0, 0, 493, 495, 3, 48, 24, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 501, 3, 50, 25, 0, 497, 499, 5, 20, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 502, 3, 26, 13, 0, 501, 498, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 1346, 1, 0, 0, 0, 503, 504, 5, 59, 0, 0, 504, 506, 5, 293, 0, 0, 505, 507, 3, 198, 99, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 3, 84, 42, 0, 509, 510, 5, 163, 0, 0, 510, 520, 3, 86, 43, 0, 511, 519, 3, 48, 24, 0, 512, 519, 3, 250, 125, 0, 513, 519, 3, 70, 35, 0, 514, 519, 3, 22, 11, 0, 515, 516, 5, 297, 0, 0, 516, 519, 3, 54, 27, 0, 517, 519, 3, 52, 26, 0, 518, 511, 1, 0, 0, 0, 518, 512, 1, 0, 0, 0, 518, 513, 1, 0, 0, 0, 518, 514, 1, 0, 0, 0, 518, 515, 1, 0, 0, 0, 518, 517, 1, 0, 0, 0, 519, 522, 1, 0, 0, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 1346, 1, 0, 0, 0, 522, 520, 1, 0, 0, 0, 523, 528, 3, 16, 8, 0, 524, 525, 5, 2, 0, 0, 525, 526, 3, 346, 173, 0, 526, 527, 5, 3, 0, 0, 527, 529, 1, 0, 0, 0, 528, 524, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 1, 0, 0, 0, 530, 532, 3, 48, 24, 0, 531, 530, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 538, 3, 50, 25, 0, 534, 536, 5, 20, 0, 0, 535, 534, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 539, 3, 26, 13, 0, 538, 535, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 1346, 1, 0, 0, 0, 540, 541, 5, 13, 0, 0, 541, 542, 5, 293, 0, 0, 542, 544, 3, 86, 43, 0, 543, 545, 3, 32, 16, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 5, 55, 0, 0, 547, 555, 5, 282, 0, 0, 548, 556, 5, 196, 0, 0, 549, 550, 5, 119, 0, 0, 550, 551, 5, 50, 0, 0, 551, 556, 3, 96, 48, 0, 552, 553, 5, 119, 0, 0, 553, 554, 5, 10, 0, 0, 554, 556, 5, 50, 0, 0, 555, 548, 1, 0, 0, 0, 555, 549, 1, 0, 0, 0, 555, 552, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 1346, 1, 0, 0, 0, 557, 558, 5, 13, 0, 0, 558, 561, 5, 294, 0, 0, 559, 560, 7, 2, 0, 0, 560, 562, 3, 80, 40, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 5, 55, 0, 0, 564, 566, 5, 282, 0, 0, 565, 567, 5, 196, 0, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 1346, 1, 0, 0, 0, 568, 569, 5, 11, 0, 0, 569, 570, 5, 293, 0, 0, 570, 571, 3, 86, 43, 0, 571, 572, 5, 8, 0, 0, 572, 573, 5, 49, 0, 0, 573, 574, 3, 330, 165, 0, 574, 1346, 1, 0, 0, 0, 575, 576, 5, 11, 0, 0, 576, 577, 5, 293, 0, 0, 577, 578, 3, 86, 43, 0, 578, 579, 5, 8, 0, 0, 579, 580, 5, 50, 0, 0, 580, 581, 5, 2, 0, 0, 581, 582, 3, 328, 164, 0, 582, 583, 5, 3, 0, 0, 583, 1346, 1, 0, 0, 0, 584, 585, 5, 11, 0, 0, 585, 586, 5, 293, 0, 0, 586, 587, 3, 86, 43, 0, 587, 588, 5, 241, 0, 0, 588, 589, 5, 49, 0, 0, 589, 590, 3, 92, 46, 0, 590, 591, 5, 309, 0, 0, 591, 592, 3, 98, 49, 0, 592, 1346, 1, 0, 0, 0, 593, 594, 5, 11, 0, 0, 594, 595, 5, 293, 0, 0, 595, 596, 3, 86, 43, 0, 596, 597, 5, 96, 0, 0, 597, 599, 5, 49, 0, 0, 598, 600, 3, 200, 100, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 92, 46, 0, 602, 1346, 1, 0, 0, 0, 603, 604, 5, 11, 0, 0, 604, 605, 5, 293, 0, 0, 605, 606, 3, 86, 43, 0, 606, 607, 5, 96, 0, 0, 607, 609, 5, 50, 0, 0, 608, 610, 3, 200, 100, 0, 609, 608, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 2, 0, 0, 612, 613, 3, 96, 48, 0, 613, 614, 5, 3, 0, 0, 614, 1346, 1, 0, 0, 0, 615, 620, 5, 11, 0, 0, 616, 617, 5, 293, 0, 0, 617, 621, 3, 86, 43, 0, 618, 619, 5, 338, 0, 0, 619, 621, 3, 90, 45, 0, 620, 616, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 5, 241, 0, 0, 623, 624, 5, 309, 0, 0, 624, 625, 3, 254, 127, 0, 625, 1346, 1, 0, 0, 0, 626, 631, 5, 11, 0, 0, 627, 628, 5, 293, 0, 0, 628, 632, 3, 86, 43, 0, 629, 630, 5, 338, 0, 0, 630, 632, 3, 90, 45, 0, 631, 627, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 269, 0, 0, 634, 635, 5, 297, 0, 0, 635, 636, 3, 54, 27, 0, 636, 1346, 1, 0, 0, 0, 637, 642, 5, 11, 0, 0, 638, 639, 5, 293, 0, 0, 639, 643, 3, 86, 43, 0, 640, 641, 5, 338, 0, 0, 641, 643, 3, 90, 45, 0, 642, 638, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 5, 328, 0, 0, 645, 647, 5, 297, 0, 0, 646, 648, 3, 200, 100, 0, 647, 646, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 3, 54, 27, 0, 650, 1346, 1, 0, 0, 0, 651, 652, 5, 11, 0, 0, 652, 653, 5, 293, 0, 0, 653, 654, 3, 86, 43, 0, 654, 656, 7, 3, 0, 0, 655, 657, 5, 49, 0, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 3, 92, 46, 0, 659, 661, 3, 394, 197, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 1346, 1, 0, 0, 0, 662, 663, 5, 11, 0, 0, 663, 664, 5, 293, 0, 0, 664, 666, 3, 86, 43, 0, 665, 667, 3, 32, 16, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 5, 39, 0, 0, 669, 671, 5, 49, 0, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 3, 92, 46, 0, 673, 675, 3, 344, 172, 0, 674, 676, 3, 322, 161, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 1346, 1, 0, 0, 0, 677, 678, 5, 11, 0, 0, 678, 679, 5, 293, 0, 0, 679, 681, 3, 86, 43, 0, 680, 682, 3, 32, 16, 0, 681, 680, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 5, 244, 0, 0, 684, 685, 5, 50, 0, 0, 685, 686, 5, 2, 0, 0, 686, 687, 3, 332, 166, 0, 687, 688, 5, 3, 0, 0, 688, 1346, 1, 0, 0, 0, 689, 690, 5, 11, 0, 0, 690, 691, 5, 293, 0, 0, 691, 693, 3, 86, 43, 0, 692, 694, 3, 32, 16, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 269, 0, 0, 696, 697, 5, 266, 0, 0, 697, 701, 3, 396, 198, 0, 698, 699, 5, 346, 0, 0, 699, 700, 5, 267, 0, 0, 700, 702, 3, 54, 27, 0, 701, 698, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 1346, 1, 0, 0, 0, 703, 704, 5, 11, 0, 0, 704, 705, 5, 293, 0, 0, 705, 707, 3, 86, 43, 0, 706, 708, 3, 32, 16, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 269, 0, 0, 710, 711, 5, 267, 0, 0, 711, 712, 3, 54, 27, 0, 712, 1346, 1, 0, 0, 0, 713, 718, 5, 11, 0, 0, 714, 715, 5, 293, 0, 0, 715, 719, 3, 86, 43, 0, 716, 717, 5, 338, 0, 0, 717, 719, 3, 90, 45, 0, 718, 714, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 5, 8, 0, 0, 721, 723, 3, 198, 99, 0, 722, 721, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 3, 30, 15, 0, 725, 724, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 1346, 1, 0, 0, 0, 729, 730, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 732, 3, 86, 43, 0, 732, 733, 3, 32, 16, 0, 733, 734, 5, 241, 0, 0, 734, 735, 5, 309, 0, 0, 735, 736, 3, 32, 16, 0, 736, 1346, 1, 0, 0, 0, 737, 742, 5, 11, 0, 0, 738, 739, 5, 293, 0, 0, 739, 743, 3, 86, 43, 0, 740, 741, 5, 338, 0, 0, 741, 743, 3, 90, 45, 0, 742, 738, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 746, 5, 96, 0, 0, 745, 747, 3, 200, 100, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 753, 3, 32, 16, 0, 749, 750, 5, 4, 0, 0, 750, 752, 3, 32, 16, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 758, 5, 230, 0, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 1346, 1, 0, 0, 0, 759, 760, 5, 11, 0, 0, 760, 761, 5, 293, 0, 0, 761, 763, 3, 86, 43, 0, 762, 764, 3, 32, 16, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 269, 0, 0, 766, 767, 3, 22, 11, 0, 767, 1346, 1, 0, 0, 0, 768, 769, 5, 11, 0, 0, 769, 770, 5, 293, 0, 0, 770, 771, 3, 86, 43, 0, 771, 772, 5, 237, 0, 0, 772, 773, 5, 219, 0, 0, 773, 1346, 1, 0, 0, 0, 774, 775, 5, 11, 0, 0, 775, 776, 5, 176, 0, 0, 776, 777, 5, 338, 0, 0, 777, 778, 3, 90, 45, 0, 778, 779, 7, 4, 0, 0, 779, 780, 5, 248, 0, 0, 780, 1346, 1, 0, 0, 0, 781, 782, 5, 11, 0, 0, 782, 783, 5, 176, 0, 0, 783, 784, 5, 338, 0, 0, 784, 785, 3, 90, 45, 0, 785, 786, 5, 269, 0, 0, 786, 787, 5, 297, 0, 0, 787, 788, 3, 54, 27, 0, 788, 1346, 1, 0, 0, 0, 789, 790, 5, 96, 0, 0, 790, 792, 5, 293, 0, 0, 791, 793, 3, 200, 100, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 3, 86, 43, 0, 795, 797, 5, 230, 0, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 1346, 1, 0, 0, 0, 798, 799, 5, 96, 0, 0, 799, 801, 5, 338, 0, 0, 800, 802, 3, 200, 100, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 1346, 3, 90, 45, 0, 804, 805, 5, 96, 0, 0, 805, 806, 5, 176, 0, 0, 806, 808, 5, 338, 0, 0, 807, 809, 3, 200, 100, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1346, 3, 90, 45, 0, 811, 814, 5, 59, 0, 0, 812, 813, 5, 208, 0, 0, 813, 815, 5, 244, 0, 0, 814, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 820, 1, 0, 0, 0, 816, 818, 5, 128, 0, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 5, 298, 0, 0, 820, 817, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 5, 338, 0, 0, 823, 825, 3, 198, 99, 0, 824, 823, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 3, 88, 44, 0, 827, 829, 3, 228, 114, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 838, 1, 0, 0, 0, 830, 837, 3, 24, 12, 0, 831, 832, 5, 218, 0, 0, 832, 833, 5, 203, 0, 0, 833, 837, 3, 220, 110, 0, 834, 835, 5, 297, 0, 0, 835, 837, 3, 54, 27, 0, 836, 830, 1, 0, 0, 0, 836, 831, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 837, 840, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 841, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 842, 5, 20, 0, 0, 842, 843, 3, 26, 13, 0, 843, 1346, 1, 0, 0, 0, 844, 847, 5, 59, 0, 0, 845, 846, 5, 208, 0, 0, 846, 848, 5, 244, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 850, 1, 0, 0, 0, 849, 851, 5, 128, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 298, 0, 0, 853, 854, 5, 338, 0, 0, 854, 859, 3, 88, 44, 0, 855, 856, 5, 2, 0, 0, 856, 857, 3, 342, 171, 0, 857, 858, 5, 3, 0, 0, 858, 860, 1, 0, 0, 0, 859, 855, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 864, 3, 48, 24, 0, 862, 863, 5, 207, 0, 0, 863, 865, 3, 54, 27, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 1346, 1, 0, 0, 0, 866, 867, 5, 11, 0, 0, 867, 868, 5, 338, 0, 0, 868, 870, 3, 90, 45, 0, 869, 871, 5, 20, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 3, 26, 13, 0, 873, 1346, 1, 0, 0, 0, 874, 877, 5, 59, 0, 0, 875, 876, 5, 208, 0, 0, 876, 878, 5, 244, 0, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 880, 1, 0, 0, 0, 879, 881, 5, 298, 0, 0, 880, 879, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 5, 125, 0, 0, 883, 885, 3, 198, 99, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 3, 376, 188, 0, 887, 888, 5, 20, 0, 0, 888, 898, 3, 396, 198, 0, 889, 890, 5, 332, 0, 0, 890, 895, 3, 76, 38, 0, 891, 892, 5, 4, 0, 0, 892, 894, 3, 76, 38, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 899, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 889, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 1346, 1, 0, 0, 0, 900, 901, 5, 59, 0, 0, 901, 902, 5, 176, 0, 0, 902, 904, 5, 338, 0, 0, 903, 905, 3, 198, 99, 0, 904, 903, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 908, 3, 88, 44, 0, 907, 909, 3, 48, 24, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 925, 1, 0, 0, 0, 910, 911, 5, 207, 0, 0, 911, 924, 3, 54, 27, 0, 912, 913, 5, 218, 0, 0, 913, 914, 5, 31, 0, 0, 914, 924, 3, 268, 134, 0, 915, 924, 3, 20, 10, 0, 916, 924, 3, 18, 9, 0, 917, 924, 3, 250, 125, 0, 918, 924, 3, 70, 35, 0, 919, 924, 3, 22, 11, 0, 920, 924, 3, 24, 12, 0, 921, 922, 5, 297, 0, 0, 922, 924, 3, 54, 27, 0, 923, 910, 1, 0, 0, 0, 923, 912, 1, 0, 0, 0, 923, 915, 1, 0, 0, 0, 923, 916, 1, 0, 0, 0, 923, 917, 1, 0, 0, 0, 923, 918, 1, 0, 0, 0, 923, 919, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 924, 927, 1, 0, 0, 0, 925, 923, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 928, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 928, 929, 5, 20, 0, 0, 929, 930, 3, 26, 13, 0, 930, 1346, 1, 0, 0, 0, 931, 933, 5, 96, 0, 0, 932, 934, 5, 298, 0, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 5, 125, 0, 0, 936, 938, 3, 200, 100, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 1346, 3, 374, 187, 0, 940, 943, 5, 81, 0, 0, 941, 942, 5, 208, 0, 0, 942, 944, 5, 244, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 947, 5, 336, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 3, 374, 187, 0, 949, 951, 3, 326, 163, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 953, 1, 0, 0, 0, 952, 954, 3, 340, 170, 0, 953, 952, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 1346, 1, 0, 0, 0, 955, 956, 5, 96, 0, 0, 956, 957, 5, 298, 0, 0, 957, 959, 5, 336, 0, 0, 958, 960, 3, 200, 100, 0, 959, 958, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 964, 1, 0, 0, 0, 961, 965, 3, 86, 43, 0, 962, 965, 3, 90, 45, 0, 963, 965, 3, 374, 187, 0, 964, 961, 1, 0, 0, 0, 964, 962, 1, 0, 0, 0, 964, 963, 1, 0, 0, 0, 965, 1346, 1, 0, 0, 0, 966, 968, 5, 106, 0, 0, 967, 969, 7, 5, 0, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 1346, 3, 4, 2, 0, 971, 972, 5, 273, 0, 0, 972, 975, 5, 294, 0, 0, 973, 974, 7, 2, 0, 0, 974, 976, 3, 80, 40, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 981, 1, 0, 0, 0, 977, 979, 5, 163, 0, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 982, 3, 396, 198, 0, 981, 978, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1346, 1, 0, 0, 0, 983, 984, 5, 273, 0, 0, 984, 985, 5, 293, 0, 0, 985, 988, 5, 108, 0, 0, 986, 987, 7, 2, 0, 0, 987, 989, 3, 80, 40, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 163, 0, 0, 991, 993, 3, 396, 198, 0, 992, 994, 3, 32, 16, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1346, 1, 0, 0, 0, 995, 996, 5, 273, 0, 0, 996, 997, 5, 297, 0, 0, 997, 1002, 3, 86, 43, 0, 998, 999, 5, 2, 0, 0, 999, 1000, 3, 58, 29, 0, 1000, 1001, 5, 3, 0, 0, 1001, 1003, 1, 0, 0, 0, 1002, 998, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1346, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1006, 5, 50, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1010, 3, 86, 43, 0, 1008, 1009, 7, 2, 0, 0, 1009, 1011, 3, 80, 40, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1346, 1, 0, 0, 0, 1012, 1013, 5, 273, 0, 0, 1013, 1016, 5, 339, 0, 0, 1014, 1015, 7, 2, 0, 0, 1015, 1017, 3, 80, 40, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1022, 1, 0, 0, 0, 1018, 1020, 5, 163, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1023, 3, 396, 198, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1346, 1, 0, 0, 0, 1024, 1025, 5, 273, 0, 0, 1025, 1026, 5, 219, 0, 0, 1026, 1028, 3, 86, 43, 0, 1027, 1029, 3, 32, 16, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1346, 1, 0, 0, 0, 1030, 1032, 5, 273, 0, 0, 1031, 1033, 3, 156, 78, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1037, 5, 126, 0, 0, 1035, 1036, 7, 2, 0, 0, 1036, 1038, 3, 80, 40, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1046, 1, 0, 0, 0, 1039, 1041, 5, 163, 0, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1044, 1, 0, 0, 0, 1042, 1045, 3, 254, 127, 0, 1043, 1045, 3, 396, 198, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1043, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1040, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1346, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 59, 0, 0, 1050, 1051, 5, 293, 0, 0, 1051, 1054, 3, 86, 43, 0, 1052, 1053, 5, 20, 0, 0, 1053, 1055, 5, 266, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1346, 1, 0, 0, 0, 1056, 1057, 5, 273, 0, 0, 1057, 1058, 5, 62, 0, 0, 1058, 1346, 3, 36, 18, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1065, 5, 38, 0, 0, 1061, 1063, 5, 163, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1066, 3, 396, 198, 0, 1065, 1062, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1346, 1, 0, 0, 0, 1067, 1068, 5, 273, 0, 0, 1068, 1069, 5, 176, 0, 0, 1069, 1072, 5, 339, 0, 0, 1070, 1071, 7, 2, 0, 0, 1071, 1073, 3, 80, 40, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1078, 1, 0, 0, 0, 1074, 1076, 5, 163, 0, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1079, 3, 396, 198, 0, 1078, 1075, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1346, 1, 0, 0, 0, 1080, 1081, 5, 273, 0, 0, 1081, 1082, 5, 59, 0, 0, 1082, 1083, 5, 176, 0, 0, 1083, 1084, 5, 338, 0, 0, 1084, 1087, 3, 90, 45, 0, 1085, 1086, 5, 20, 0, 0, 1086, 1088, 5, 266, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1346, 1, 0, 0, 0, 1089, 1090, 7, 6, 0, 0, 1090, 1092, 5, 125, 0, 0, 1091, 1093, 5, 108, 0, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1346, 3, 40, 20, 0, 1095, 1096, 7, 6, 0, 0, 1096, 1098, 5, 72, 0, 0, 1097, 1099, 5, 108, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1346, 3, 80, 40, 0, 1101, 1103, 7, 6, 0, 0, 1102, 1104, 5, 293, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 7, 7, 0, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 3, 86, 43, 0, 1109, 1111, 3, 32, 16, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1114, 3, 42, 21, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1346, 1, 0, 0, 0, 1115, 1117, 7, 6, 0, 0, 1116, 1118, 5, 232, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1346, 3, 26, 13, 0, 1120, 1121, 5, 51, 0, 0, 1121, 1122, 5, 203, 0, 0, 1122, 1123, 3, 36, 18, 0, 1123, 1124, 3, 80, 40, 0, 1124, 1125, 5, 153, 0, 0, 1125, 1126, 3, 398, 199, 0, 1126, 1346, 1, 0, 0, 0, 1127, 1128, 5, 51, 0, 0, 1128, 1129, 5, 203, 0, 0, 1129, 1130, 5, 293, 0, 0, 1130, 1131, 3, 86, 43, 0, 1131, 1132, 5, 153, 0, 0, 1132, 1133, 3, 398, 199, 0, 1133, 1346, 1, 0, 0, 0, 1134, 1135, 5, 240, 0, 0, 1135, 1136, 5, 293, 0, 0, 1136, 1346, 3, 86, 43, 0, 1137, 1138, 5, 240, 0, 0, 1138, 1139, 5, 125, 0, 0, 1139, 1346, 3, 374, 187, 0, 1140, 1148, 5, 240, 0, 0, 1141, 1149, 3, 396, 198, 0, 1142, 1144, 9, 0, 0, 0, 1143, 1142, 1, 0, 0, 0, 1144, 1147, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1146, 1149, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1141, 1, 0, 0, 0, 1148, 1145, 1, 0, 0, 0, 1149, 1346, 1, 0, 0, 0, 1150, 1151, 5, 240, 0, 0, 1151, 1152, 5, 176, 0, 0, 1152, 1153, 5, 338, 0, 0, 1153, 1346, 3, 90, 45, 0, 1154, 1156, 5, 33, 0, 0, 1155, 1157, 5, 159, 0, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 5, 293, 0, 0, 1159, 1162, 3, 86, 43, 0, 1160, 1161, 5, 207, 0, 0, 1161, 1163, 3, 54, 27, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1168, 1, 0, 0, 0, 1164, 1166, 5, 20, 0, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1169, 3, 26, 13, 0, 1168, 1165, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1346, 1, 0, 0, 0, 1170, 1171, 5, 322, 0, 0, 1171, 1173, 5, 293, 0, 0, 1172, 1174, 3, 200, 100, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1346, 3, 86, 43, 0, 1176, 1177, 5, 43, 0, 0, 1177, 1346, 5, 33, 0, 0, 1178, 1179, 5, 168, 0, 0, 1179, 1181, 5, 70, 0, 0, 1180, 1182, 5, 169, 0, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 5, 145, 0, 0, 1184, 1186, 3, 396, 198, 0, 1185, 1187, 5, 216, 0, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 5, 152, 0, 0, 1189, 1190, 5, 293, 0, 0, 1190, 1192, 3, 86, 43, 0, 1191, 1193, 3, 32, 16, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1346, 1, 0, 0, 0, 1194, 1195, 5, 317, 0, 0, 1195, 1196, 5, 293, 0, 0, 1196, 1198, 3, 86, 43, 0, 1197, 1199, 3, 32, 16, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1346, 1, 0, 0, 0, 1200, 1202, 5, 188, 0, 0, 1201, 1200, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 5, 242, 0, 0, 1204, 1205, 5, 293, 0, 0, 1205, 1208, 3, 86, 43, 0, 1206, 1207, 7, 8, 0, 0, 1207, 1209, 5, 219, 0, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1346, 1, 0, 0, 0, 1210, 1211, 7, 9, 0, 0, 1211, 1215, 3, 384, 192, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1346, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1223, 5, 253, 0, 0, 1220, 1222, 9, 0, 0, 0, 1221, 1220, 1, 0, 0, 0, 1222, 1225, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1346, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1229, 5, 350, 0, 0, 1229, 1346, 3, 306, 153, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1233, 5, 350, 0, 0, 1233, 1346, 3, 6, 3, 0, 1234, 1235, 5, 269, 0, 0, 1235, 1236, 5, 301, 0, 0, 1236, 1240, 5, 350, 0, 0, 1237, 1239, 9, 0, 0, 0, 1238, 1237, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1241, 1346, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1244, 5, 269, 0, 0, 1244, 1245, 7, 10, 0, 0, 1245, 1346, 3, 142, 71, 0, 1246, 1247, 5, 269, 0, 0, 1247, 1248, 7, 10, 0, 0, 1248, 1249, 5, 2, 0, 0, 1249, 1250, 3, 252, 126, 0, 1250, 1251, 5, 3, 0, 0, 1251, 1252, 5, 352, 0, 0, 1252, 1253, 5, 2, 0, 0, 1253, 1254, 3, 26, 13, 0, 1254, 1255, 5, 3, 0, 0, 1255, 1346, 1, 0, 0, 0, 1256, 1257, 5, 269, 0, 0, 1257, 1258, 3, 8, 4, 0, 1258, 1259, 5, 352, 0, 0, 1259, 1260, 3, 10, 5, 0, 1260, 1346, 1, 0, 0, 0, 1261, 1262, 5, 269, 0, 0, 1262, 1270, 3, 8, 4, 0, 1263, 1267, 5, 352, 0, 0, 1264, 1266, 9, 0, 0, 0, 1265, 1264, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1263, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1346, 1, 0, 0, 0, 1272, 1276, 5, 269, 0, 0, 1273, 1275, 9, 0, 0, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1280, 5, 352, 0, 0, 1280, 1346, 3, 10, 5, 0, 1281, 1285, 5, 269, 0, 0, 1282, 1284, 9, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1346, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1289, 5, 245, 0, 0, 1289, 1346, 3, 8, 4, 0, 1290, 1294, 5, 245, 0, 0, 1291, 1293, 9, 0, 0, 0, 1292, 1291, 1, 0, 0, 0, 1293, 1296, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1294, 1292, 1, 0, 0, 0, 1295, 1346, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1297, 1298, 5, 59, 0, 0, 1298, 1300, 5, 142, 0, 0, 1299, 1301, 3, 198, 99, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 3, 384, 192, 0, 1303, 1305, 5, 203, 0, 0, 1304, 1306, 5, 293, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1310, 3, 86, 43, 0, 1308, 1309, 5, 332, 0, 0, 1309, 1311, 3, 384, 192, 0, 1310, 1308, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 5, 2, 0, 0, 1313, 1314, 3, 256, 128, 0, 1314, 1317, 5, 3, 0, 0, 1315, 1316, 5, 207, 0, 0, 1316, 1318, 3, 54, 27, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1346, 1, 0, 0, 0, 1319, 1320, 5, 96, 0, 0, 1320, 1322, 5, 142, 0, 0, 1321, 1323, 3, 200, 100, 0, 1322, 1321, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 3, 384, 192, 0, 1325, 1327, 5, 203, 0, 0, 1326, 1328, 5, 293, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1330, 3, 86, 43, 0, 1330, 1346, 1, 0, 0, 0, 1331, 1332, 5, 205, 0, 0, 1332, 1334, 3, 86, 43, 0, 1333, 1335, 3, 146, 73, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 3, 362, 181, 0, 1337, 1346, 1, 0, 0, 0, 1338, 1342, 3, 12, 6, 0, 1339, 1341, 9, 0, 0, 0, 1340, 1339, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1346, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 420, 1, 0, 0, 0, 1345, 422, 1, 0, 0, 0, 1345, 425, 1, 0, 0, 0, 1345, 430, 1, 0, 0, 0, 1345, 436, 1, 0, 0, 0, 1345, 452, 1, 0, 0, 0, 1345, 459, 1, 0, 0, 0, 1345, 465, 1, 0, 0, 0, 1345, 474, 1, 0, 0, 0, 1345, 486, 1, 0, 0, 0, 1345, 503, 1, 0, 0, 0, 1345, 523, 1, 0, 0, 0, 1345, 540, 1, 0, 0, 0, 1345, 557, 1, 0, 0, 0, 1345, 568, 1, 0, 0, 0, 1345, 575, 1, 0, 0, 0, 1345, 584, 1, 0, 0, 0, 1345, 593, 1, 0, 0, 0, 1345, 603, 1, 0, 0, 0, 1345, 615, 1, 0, 0, 0, 1345, 626, 1, 0, 0, 0, 1345, 637, 1, 0, 0, 0, 1345, 651, 1, 0, 0, 0, 1345, 662, 1, 0, 0, 0, 1345, 677, 1, 0, 0, 0, 1345, 689, 1, 0, 0, 0, 1345, 703, 1, 0, 0, 0, 1345, 713, 1, 0, 0, 0, 1345, 729, 1, 0, 0, 0, 1345, 737, 1, 0, 0, 0, 1345, 759, 1, 0, 0, 0, 1345, 768, 1, 0, 0, 0, 1345, 774, 1, 0, 0, 0, 1345, 781, 1, 0, 0, 0, 1345, 789, 1, 0, 0, 0, 1345, 798, 1, 0, 0, 0, 1345, 804, 1, 0, 0, 0, 1345, 811, 1, 0, 0, 0, 1345, 844, 1, 0, 0, 0, 1345, 866, 1, 0, 0, 0, 1345, 874, 1, 0, 0, 0, 1345, 900, 1, 0, 0, 0, 1345, 931, 1, 0, 0, 0, 1345, 940, 1, 0, 0, 0, 1345, 955, 1, 0, 0, 0, 1345, 966, 1, 0, 0, 0, 1345, 971, 1, 0, 0, 0, 1345, 983, 1, 0, 0, 0, 1345, 995, 1, 0, 0, 0, 1345, 1004, 1, 0, 0, 0, 1345, 1012, 1, 0, 0, 0, 1345, 1024, 1, 0, 0, 0, 1345, 1030, 1, 0, 0, 0, 1345, 1048, 1, 0, 0, 0, 1345, 1056, 1, 0, 0, 0, 1345, 1059, 1, 0, 0, 0, 1345, 1067, 1, 0, 0, 0, 1345, 1080, 1, 0, 0, 0, 1345, 1089, 1, 0, 0, 0, 1345, 1095, 1, 0, 0, 0, 1345, 1101, 1, 0, 0, 0, 1345, 1115, 1, 0, 0, 0, 1345, 1120, 1, 0, 0, 0, 1345, 1127, 1, 0, 0, 0, 1345, 1134, 1, 0, 0, 0, 1345, 1137, 1, 0, 0, 0, 1345, 1140, 1, 0, 0, 0, 1345, 1150, 1, 0, 0, 0, 1345, 1154, 1, 0, 0, 0, 1345, 1170, 1, 0, 0, 0, 1345, 1176, 1, 0, 0, 0, 1345, 1178, 1, 0, 0, 0, 1345, 1194, 1, 0, 0, 0, 1345, 1201, 1, 0, 0, 0, 1345, 1210, 1, 0, 0, 0, 1345, 1218, 1, 0, 0, 0, 1345, 1226, 1, 0, 0, 0, 1345, 1230, 1, 0, 0, 0, 1345, 1234, 1, 0, 0, 0, 1345, 1243, 1, 0, 0, 0, 1345, 1246, 1, 0, 0, 0, 1345, 1256, 1, 0, 0, 0, 1345, 1261, 1, 0, 0, 0, 1345, 1272, 1, 0, 0, 0, 1345, 1281, 1, 0, 0, 0, 1345, 1288, 1, 0, 0, 0, 1345, 1290, 1, 0, 0, 0, 1345, 1297, 1, 0, 0, 0, 1345, 1319, 1, 0, 0, 0, 1345, 1331, 1, 0, 0, 0, 1345, 1338, 1, 0, 0, 0, 1346, 5, 1, 0, 0, 0, 1347, 1350, 3, 396, 198, 0, 1348, 1350, 5, 169, 0, 0, 1349, 1347, 1, 0, 0, 0, 1349, 1348, 1, 0, 0, 0, 1350, 7, 1, 0, 0, 0, 1351, 1352, 3, 388, 194, 0, 1352, 9, 1, 0, 0, 0, 1353, 1354, 3, 390, 195, 0, 1354, 11, 1, 0, 0, 0, 1355, 1356, 5, 59, 0, 0, 1356, 1524, 5, 253, 0, 0, 1357, 1358, 5, 96, 0, 0, 1358, 1524, 5, 253, 0, 0, 1359, 1361, 5, 129, 0, 0, 1360, 1362, 5, 253, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1524, 1, 0, 0, 0, 1363, 1365, 5, 249, 0, 0, 1364, 1366, 5, 253, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1524, 1, 0, 0, 0, 1367, 1368, 5, 273, 0, 0, 1368, 1524, 5, 129, 0, 0, 1369, 1370, 5, 273, 0, 0, 1370, 1372, 5, 253, 0, 0, 1371, 1373, 5, 129, 0, 0, 1372, 1371, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1524, 1, 0, 0, 0, 1374, 1375, 5, 273, 0, 0, 1375, 1524, 5, 228, 0, 0, 1376, 1377, 5, 273, 0, 0, 1377, 1524, 5, 254, 0, 0, 1378, 1379, 5, 273, 0, 0, 1379, 1380, 5, 62, 0, 0, 1380, 1524, 5, 254, 0, 0, 1381, 1382, 5, 107, 0, 0, 1382, 1524, 5, 293, 0, 0, 1383, 1384, 5, 139, 0, 0, 1384, 1524, 5, 293, 0, 0, 1385, 1386, 5, 273, 0, 0, 1386, 1524, 5, 54, 0, 0, 1387, 1388, 5, 273, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1524, 5, 293, 0, 0, 1390, 1391, 5, 273, 0, 0, 1391, 1524, 5, 313, 0, 0, 1392, 1393, 5, 273, 0, 0, 1393, 1524, 5, 143, 0, 0, 1394, 1395, 5, 273, 0, 0, 1395, 1524, 5, 172, 0, 0, 1396, 1397, 5, 59, 0, 0, 1397, 1524, 5, 142, 0, 0, 1398, 1399, 5, 96, 0, 0, 1399, 1524, 5, 142, 0, 0, 1400, 1401, 5, 11, 0, 0, 1401, 1524, 5, 142, 0, 0, 1402, 1403, 5, 171, 0, 0, 1403, 1524, 5, 293, 0, 0, 1404, 1405, 5, 171, 0, 0, 1405, 1524, 5, 72, 0, 0, 1406, 1407, 5, 326, 0, 0, 1407, 1524, 5, 293, 0, 0, 1408, 1409, 5, 326, 0, 0, 1409, 1524, 5, 72, 0, 0, 1410, 1411, 5, 59, 0, 0, 1411, 1412, 5, 298, 0, 0, 1412, 1524, 5, 175, 0, 0, 1413, 1414, 5, 96, 0, 0, 1414, 1415, 5, 298, 0, 0, 1415, 1524, 5, 175, 0, 0, 1416, 1417, 5, 11, 0, 0, 1417, 1418, 5, 293, 0, 0, 1418, 1419, 3, 86, 43, 0, 1419, 1420, 5, 197, 0, 0, 1420, 1421, 5, 45, 0, 0, 1421, 1524, 1, 0, 0, 0, 1422, 1423, 5, 11, 0, 0, 1423, 1424, 5, 293, 0, 0, 1424, 1425, 3, 86, 43, 0, 1425, 1426, 5, 45, 0, 0, 1426, 1427, 5, 31, 0, 0, 1427, 1524, 1, 0, 0, 0, 1428, 1429, 5, 11, 0, 0, 1429, 1430, 5, 293, 0, 0, 1430, 1431, 3, 86, 43, 0, 1431, 1432, 5, 197, 0, 0, 1432, 1433, 5, 279, 0, 0, 1433, 1524, 1, 0, 0, 0, 1434, 1435, 5, 11, 0, 0, 1435, 1436, 5, 293, 0, 0, 1436, 1437, 3, 86, 43, 0, 1437, 1438, 5, 275, 0, 0, 1438, 1439, 5, 31, 0, 0, 1439, 1524, 1, 0, 0, 0, 1440, 1441, 5, 11, 0, 0, 1441, 1442, 5, 293, 0, 0, 1442, 1443, 3, 86, 43, 0, 1443, 1444, 5, 197, 0, 0, 1444, 1445, 5, 275, 0, 0, 1445, 1524, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 197, 0, 0, 1450, 1451, 5, 283, 0, 0, 1451, 1452, 5, 20, 0, 0, 1452, 1453, 5, 89, 0, 0, 1453, 1524, 1, 0, 0, 0, 1454, 1455, 5, 11, 0, 0, 1455, 1456, 5, 293, 0, 0, 1456, 1457, 3, 86, 43, 0, 1457, 1458, 5, 269, 0, 0, 1458, 1459, 5, 275, 0, 0, 1459, 1460, 5, 170, 0, 0, 1460, 1524, 1, 0, 0, 0, 1461, 1462, 5, 11, 0, 0, 1462, 1463, 5, 293, 0, 0, 1463, 1464, 3, 86, 43, 0, 1464, 1465, 5, 103, 0, 0, 1465, 1466, 5, 217, 0, 0, 1466, 1524, 1, 0, 0, 0, 1467, 1468, 5, 11, 0, 0, 1468, 1469, 5, 293, 0, 0, 1469, 1470, 3, 86, 43, 0, 1470, 1471, 5, 18, 0, 0, 1471, 1472, 5, 217, 0, 0, 1472, 1524, 1, 0, 0, 0, 1473, 1474, 5, 11, 0, 0, 1474, 1475, 5, 293, 0, 0, 1475, 1476, 3, 86, 43, 0, 1476, 1477, 5, 320, 0, 0, 1477, 1478, 5, 217, 0, 0, 1478, 1524, 1, 0, 0, 0, 1479, 1480, 5, 11, 0, 0, 1480, 1481, 5, 293, 0, 0, 1481, 1482, 3, 86, 43, 0, 1482, 1483, 5, 310, 0, 0, 1483, 1524, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 53, 0, 0, 1491, 1524, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 56, 0, 0, 1499, 1524, 1, 0, 0, 0, 1500, 1501, 5, 11, 0, 0, 1501, 1502, 5, 293, 0, 0, 1502, 1504, 3, 86, 43, 0, 1503, 1505, 3, 32, 16, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 5, 269, 0, 0, 1507, 1508, 5, 115, 0, 0, 1508, 1524, 1, 0, 0, 0, 1509, 1510, 5, 11, 0, 0, 1510, 1511, 5, 293, 0, 0, 1511, 1513, 3, 86, 43, 0, 1512, 1514, 3, 32, 16, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1516, 5, 244, 0, 0, 1516, 1517, 5, 50, 0, 0, 1517, 1524, 1, 0, 0, 0, 1518, 1519, 5, 281, 0, 0, 1519, 1524, 5, 312, 0, 0, 1520, 1524, 5, 52, 0, 0, 1521, 1524, 5, 255, 0, 0, 1522, 1524, 5, 88, 0, 0, 1523, 1355, 1, 0, 0, 0, 1523, 1357, 1, 0, 0, 0, 1523, 1359, 1, 0, 0, 0, 1523, 1363, 1, 0, 0, 0, 1523, 1367, 1, 0, 0, 0, 1523, 1369, 1, 0, 0, 0, 1523, 1374, 1, 0, 0, 0, 1523, 1376, 1, 0, 0, 0, 1523, 1378, 1, 0, 0, 0, 1523, 1381, 1, 0, 0, 0, 1523, 1383, 1, 0, 0, 0, 1523, 1385, 1, 0, 0, 0, 1523, 1387, 1, 0, 0, 0, 1523, 1390, 1, 0, 0, 0, 1523, 1392, 1, 0, 0, 0, 1523, 1394, 1, 0, 0, 0, 1523, 1396, 1, 0, 0, 0, 1523, 1398, 1, 0, 0, 0, 1523, 1400, 1, 0, 0, 0, 1523, 1402, 1, 0, 0, 0, 1523, 1404, 1, 0, 0, 0, 1523, 1406, 1, 0, 0, 0, 1523, 1408, 1, 0, 0, 0, 1523, 1410, 1, 0, 0, 0, 1523, 1413, 1, 0, 0, 0, 1523, 1416, 1, 0, 0, 0, 1523, 1422, 1, 0, 0, 0, 1523, 1428, 1, 0, 0, 0, 1523, 1434, 1, 0, 0, 0, 1523, 1440, 1, 0, 0, 0, 1523, 1446, 1, 0, 0, 0, 1523, 1454, 1, 0, 0, 0, 1523, 1461, 1, 0, 0, 0, 1523, 1467, 1, 0, 0, 0, 1523, 1473, 1, 0, 0, 0, 1523, 1479, 1, 0, 0, 0, 1523, 1484, 1, 0, 0, 0, 1523, 1492, 1, 0, 0, 0, 1523, 1500, 1, 0, 0, 0, 1523, 1509, 1, 0, 0, 0, 1523, 1518, 1, 0, 0, 0, 1523, 1520, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 13, 1, 0, 0, 0, 1525, 1527, 5, 59, 0, 0, 1526, 1528, 5, 298, 0, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1530, 1, 0, 0, 0, 1529, 1531, 5, 109, 0, 0, 1530, 1529, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 5, 293, 0, 0, 1533, 1535, 3, 198, 99, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 15, 1, 0, 0, 0, 1538, 1539, 5, 59, 0, 0, 1539, 1541, 5, 208, 0, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 5, 244, 0, 0, 1543, 1544, 5, 293, 0, 0, 1544, 1545, 3, 84, 42, 0, 1545, 17, 1, 0, 0, 0, 1546, 1547, 5, 45, 0, 0, 1547, 1548, 5, 31, 0, 0, 1548, 1552, 3, 220, 110, 0, 1549, 1550, 5, 279, 0, 0, 1550, 1551, 5, 31, 0, 0, 1551, 1553, 3, 224, 112, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 5, 152, 0, 0, 1555, 1556, 5, 382, 0, 0, 1556, 1557, 5, 30, 0, 0, 1557, 19, 1, 0, 0, 0, 1558, 1559, 5, 275, 0, 0, 1559, 1560, 5, 31, 0, 0, 1560, 1561, 3, 220, 110, 0, 1561, 1564, 5, 203, 0, 0, 1562, 1565, 3, 66, 33, 0, 1563, 1565, 3, 68, 34, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1563, 1, 0, 0, 0, 1565, 1569, 1, 0, 0, 0, 1566, 1567, 5, 283, 0, 0, 1567, 1568, 5, 20, 0, 0, 1568, 1570, 5, 89, 0, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 21, 1, 0, 0, 0, 1571, 1572, 5, 170, 0, 0, 1572, 1573, 3, 396, 198, 0, 1573, 23, 1, 0, 0, 0, 1574, 1575, 5, 51, 0, 0, 1575, 1576, 3, 396, 198, 0, 1576, 25, 1, 0, 0, 0, 1577, 1579, 3, 44, 22, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 3, 112, 56, 0, 1581, 1582, 3, 102, 51, 0, 1582, 27, 1, 0, 0, 0, 1583, 1584, 5, 147, 0, 0, 1584, 1586, 5, 216, 0, 0, 1585, 1587, 5, 293, 0, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1593, 3, 86, 43, 0, 1589, 1591, 3, 32, 16, 0, 1590, 1592, 3, 198, 99, 0, 1591, 1590, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1601, 1, 0, 0, 0, 1595, 1596, 5, 31, 0, 0, 1596, 1602, 5, 189, 0, 0, 1597, 1598, 5, 2, 0, 0, 1598, 1599, 3, 96, 48, 0, 1599, 1600, 5, 3, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1595, 1, 0, 0, 0, 1601, 1597, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1660, 1, 0, 0, 0, 1603, 1604, 5, 147, 0, 0, 1604, 1606, 5, 152, 0, 0, 1605, 1607, 5, 293, 0, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1610, 3, 86, 43, 0, 1609, 1611, 3, 32, 16, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1613, 1, 0, 0, 0, 1612, 1614, 3, 198, 99, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1621, 1, 0, 0, 0, 1615, 1616, 5, 31, 0, 0, 1616, 1622, 5, 189, 0, 0, 1617, 1618, 5, 2, 0, 0, 1618, 1619, 3, 96, 48, 0, 1619, 1620, 5, 3, 0, 0, 1620, 1622, 1, 0, 0, 0, 1621, 1615, 1, 0, 0, 0, 1621, 1617, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1660, 1, 0, 0, 0, 1623, 1624, 5, 147, 0, 0, 1624, 1626, 5, 152, 0, 0, 1625, 1627, 5, 293, 0, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 3, 86, 43, 0, 1629, 1630, 5, 244, 0, 0, 1630, 1631, 3, 146, 73, 0, 1631, 1660, 1, 0, 0, 0, 1632, 1633, 5, 147, 0, 0, 1633, 1635, 5, 216, 0, 0, 1634, 1636, 5, 169, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 5, 90, 0, 0, 1638, 1640, 3, 396, 198, 0, 1639, 1641, 3, 250, 125, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 3, 70, 35, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1660, 1, 0, 0, 0, 1645, 1646, 5, 147, 0, 0, 1646, 1648, 5, 216, 0, 0, 1647, 1649, 5, 169, 0, 0, 1648, 1647, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 5, 90, 0, 0, 1651, 1653, 3, 396, 198, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1657, 3, 48, 24, 0, 1655, 1656, 5, 207, 0, 0, 1656, 1658, 3, 54, 27, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1583, 1, 0, 0, 0, 1659, 1603, 1, 0, 0, 0, 1659, 1623, 1, 0, 0, 0, 1659, 1632, 1, 0, 0, 0, 1659, 1645, 1, 0, 0, 0, 1660, 29, 1, 0, 0, 0, 1661, 1663, 3, 32, 16, 0, 1662, 1664, 3, 22, 11, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 31, 1, 0, 0, 0, 1665, 1666, 5, 217, 0, 0, 1666, 1667, 5, 2, 0, 0, 1667, 1672, 3, 34, 17, 0, 1668, 1669, 5, 4, 0, 0, 1669, 1671, 3, 34, 17, 0, 1670, 1668, 1, 0, 0, 0, 1671, 1674, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1676, 5, 3, 0, 0, 1676, 33, 1, 0, 0, 0, 1677, 1680, 3, 384, 192, 0, 1678, 1679, 5, 352, 0, 0, 1679, 1681, 3, 296, 148, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1687, 1, 0, 0, 0, 1682, 1683, 3, 384, 192, 0, 1683, 1684, 5, 352, 0, 0, 1684, 1685, 5, 82, 0, 0, 1685, 1687, 1, 0, 0, 0, 1686, 1677, 1, 0, 0, 0, 1686, 1682, 1, 0, 0, 0, 1687, 35, 1, 0, 0, 0, 1688, 1689, 7, 11, 0, 0, 1689, 37, 1, 0, 0, 0, 1690, 1691, 7, 12, 0, 0, 1691, 39, 1, 0, 0, 0, 1692, 1698, 3, 100, 50, 0, 1693, 1698, 3, 396, 198, 0, 1694, 1698, 3, 298, 149, 0, 1695, 1698, 3, 300, 150, 0, 1696, 1698, 3, 302, 151, 0, 1697, 1692, 1, 0, 0, 0, 1697, 1693, 1, 0, 0, 0, 1697, 1694, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1697, 1696, 1, 0, 0, 0, 1698, 41, 1, 0, 0, 0, 1699, 1704, 3, 384, 192, 0, 1700, 1701, 5, 5, 0, 0, 1701, 1703, 3, 384, 192, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 43, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1708, 5, 346, 0, 0, 1708, 1713, 3, 46, 23, 0, 1709, 1710, 5, 4, 0, 0, 1710, 1712, 3, 46, 23, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1715, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 45, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1718, 3, 380, 190, 0, 1717, 1719, 3, 220, 110, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1721, 1, 0, 0, 0, 1720, 1722, 5, 20, 0, 0, 1721, 1720, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 5, 2, 0, 0, 1724, 1725, 3, 26, 13, 0, 1725, 1726, 5, 3, 0, 0, 1726, 47, 1, 0, 0, 0, 1727, 1728, 5, 332, 0, 0, 1728, 1729, 3, 254, 127, 0, 1729, 49, 1, 0, 0, 0, 1730, 1731, 5, 207, 0, 0, 1731, 1745, 3, 62, 31, 0, 1732, 1733, 5, 218, 0, 0, 1733, 1734, 5, 31, 0, 0, 1734, 1745, 3, 268, 134, 0, 1735, 1745, 3, 20, 10, 0, 1736, 1745, 3, 18, 9, 0, 1737, 1745, 3, 250, 125, 0, 1738, 1745, 3, 70, 35, 0, 1739, 1745, 3, 22, 11, 0, 1740, 1745, 3, 24, 12, 0, 1741, 1742, 5, 297, 0, 0, 1742, 1745, 3, 54, 27, 0, 1743, 1745, 3, 52, 26, 0, 1744, 1730, 1, 0, 0, 0, 1744, 1732, 1, 0, 0, 0, 1744, 1735, 1, 0, 0, 0, 1744, 1736, 1, 0, 0, 0, 1744, 1737, 1, 0, 0, 0, 1744, 1738, 1, 0, 0, 0, 1744, 1739, 1, 0, 0, 0, 1744, 1740, 1, 0, 0, 0, 1744, 1741, 1, 0, 0, 0, 1744, 1743, 1, 0, 0, 0, 1745, 1748, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 51, 1, 0, 0, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1750, 5, 162, 0, 0, 1750, 1751, 5, 382, 0, 0, 1751, 53, 1, 0, 0, 0, 1752, 1753, 5, 2, 0, 0, 1753, 1758, 3, 56, 28, 0, 1754, 1755, 5, 4, 0, 0, 1755, 1757, 3, 56, 28, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1760, 1, 0, 0, 0, 1758, 1756, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1762, 5, 3, 0, 0, 1762, 55, 1, 0, 0, 0, 1763, 1768, 3, 58, 29, 0, 1764, 1766, 5, 352, 0, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1769, 3, 60, 30, 0, 1768, 1765, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 57, 1, 0, 0, 0, 1770, 1775, 3, 384, 192, 0, 1771, 1772, 5, 5, 0, 0, 1772, 1774, 3, 384, 192, 0, 1773, 1771, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1780, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1780, 3, 396, 198, 0, 1779, 1770, 1, 0, 0, 0, 1779, 1778, 1, 0, 0, 0, 1780, 59, 1, 0, 0, 0, 1781, 1786, 5, 382, 0, 0, 1782, 1786, 5, 384, 0, 0, 1783, 1786, 3, 304, 152, 0, 1784, 1786, 3, 396, 198, 0, 1785, 1781, 1, 0, 0, 0, 1785, 1782, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1784, 1, 0, 0, 0, 1786, 61, 1, 0, 0, 0, 1787, 1788, 5, 2, 0, 0, 1788, 1793, 3, 64, 32, 0, 1789, 1790, 5, 4, 0, 0, 1790, 1792, 3, 64, 32, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1797, 5, 3, 0, 0, 1797, 63, 1, 0, 0, 0, 1798, 1803, 3, 58, 29, 0, 1799, 1801, 5, 352, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1804, 3, 276, 138, 0, 1803, 1800, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 65, 1, 0, 0, 0, 1805, 1806, 5, 2, 0, 0, 1806, 1811, 3, 296, 148, 0, 1807, 1808, 5, 4, 0, 0, 1808, 1810, 3, 296, 148, 0, 1809, 1807, 1, 0, 0, 0, 1810, 1813, 1, 0, 0, 0, 1811, 1809, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1814, 1, 0, 0, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1815, 5, 3, 0, 0, 1815, 67, 1, 0, 0, 0, 1816, 1817, 5, 2, 0, 0, 1817, 1822, 3, 66, 33, 0, 1818, 1819, 5, 4, 0, 0, 1819, 1821, 3, 66, 33, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1824, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1825, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1826, 5, 3, 0, 0, 1826, 69, 1, 0, 0, 0, 1827, 1828, 5, 283, 0, 0, 1828, 1829, 5, 20, 0, 0, 1829, 1834, 3, 72, 36, 0, 1830, 1831, 5, 283, 0, 0, 1831, 1832, 5, 31, 0, 0, 1832, 1834, 3, 74, 37, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1830, 1, 0, 0, 0, 1834, 71, 1, 0, 0, 0, 1835, 1836, 5, 146, 0, 0, 1836, 1837, 3, 396, 198, 0, 1837, 1838, 5, 212, 0, 0, 1838, 1839, 3, 396, 198, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1842, 3, 384, 192, 0, 1841, 1835, 1, 0, 0, 0, 1841, 1840, 1, 0, 0, 0, 1842, 73, 1, 0, 0, 0, 1843, 1847, 3, 396, 198, 0, 1844, 1845, 5, 346, 0, 0, 1845, 1846, 5, 267, 0, 0, 1846, 1848, 3, 54, 27, 0, 1847, 1844, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 75, 1, 0, 0, 0, 1849, 1850, 3, 384, 192, 0, 1850, 1851, 3, 396, 198, 0, 1851, 77, 1, 0, 0, 0, 1852, 1853, 3, 28, 14, 0, 1853, 1854, 3, 26, 13, 0, 1854, 1909, 1, 0, 0, 0, 1855, 1857, 3, 154, 77, 0, 1856, 1858, 3, 110, 55, 0, 1857, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1909, 1, 0, 0, 0, 1861, 1862, 5, 84, 0, 0, 1862, 1863, 5, 123, 0, 0, 1863, 1864, 3, 86, 43, 0, 1864, 1866, 3, 248, 124, 0, 1865, 1867, 3, 146, 73, 0, 1866, 1865, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1909, 1, 0, 0, 0, 1868, 1869, 5, 329, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 248, 124, 0, 1871, 1873, 3, 128, 64, 0, 1872, 1874, 3, 146, 73, 0, 1873, 1872, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1909, 1, 0, 0, 0, 1875, 1876, 5, 179, 0, 0, 1876, 1877, 5, 152, 0, 0, 1877, 1878, 3, 86, 43, 0, 1878, 1879, 3, 248, 124, 0, 1879, 1885, 5, 332, 0, 0, 1880, 1886, 3, 100, 50, 0, 1881, 1882, 5, 2, 0, 0, 1882, 1883, 3, 26, 13, 0, 1883, 1884, 5, 3, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1880, 1, 0, 0, 0, 1885, 1881, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 3, 248, 124, 0, 1888, 1889, 5, 203, 0, 0, 1889, 1893, 3, 284, 142, 0, 1890, 1892, 3, 130, 65, 0, 1891, 1890, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1899, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1896, 1898, 3, 132, 66, 0, 1897, 1896, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1905, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1904, 3, 134, 67, 0, 1903, 1902, 1, 0, 0, 0, 1904, 1907, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1852, 1, 0, 0, 0, 1908, 1855, 1, 0, 0, 0, 1908, 1861, 1, 0, 0, 0, 1908, 1868, 1, 0, 0, 0, 1908, 1875, 1, 0, 0, 0, 1909, 79, 1, 0, 0, 0, 1910, 1911, 3, 100, 50, 0, 1911, 81, 1, 0, 0, 0, 1912, 1913, 3, 100, 50, 0, 1913, 83, 1, 0, 0, 0, 1914, 1915, 3, 260, 130, 0, 1915, 85, 1, 0, 0, 0, 1916, 1917, 3, 260, 130, 0, 1917, 87, 1, 0, 0, 0, 1918, 1919, 3, 262, 131, 0, 1919, 89, 1, 0, 0, 0, 1920, 1921, 3, 262, 131, 0, 1921, 91, 1, 0, 0, 0, 1922, 1925, 3, 254, 127, 0, 1923, 1925, 4, 46, 0, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1923, 1, 0, 0, 0, 1925, 93, 1, 0, 0, 0, 1926, 1927, 3, 254, 127, 0, 1927, 95, 1, 0, 0, 0, 1928, 1933, 3, 92, 46, 0, 1929, 1930, 5, 4, 0, 0, 1930, 1932, 3, 92, 46, 0, 1931, 1929, 1, 0, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1931, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 97, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1936, 1937, 3, 380, 190, 0, 1937, 99, 1, 0, 0, 0, 1938, 1939, 5, 136, 0, 0, 1939, 1940, 5, 2, 0, 0, 1940, 1941, 3, 276, 138, 0, 1941, 1942, 5, 3, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1945, 3, 254, 127, 0, 1944, 1938, 1, 0, 0, 0, 1944, 1943, 1, 0, 0, 0, 1945, 101, 1, 0, 0, 0, 1946, 1947, 5, 209, 0, 0, 1947, 1948, 5, 31, 0, 0, 1948, 1950, 3, 106, 53, 0, 1949, 1946, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1952, 5, 44, 0, 0, 1952, 1953, 5, 31, 0, 0, 1953, 1955, 3, 108, 54, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1959, 1, 0, 0, 0, 1956, 1957, 5, 93, 0, 0, 1957, 1958, 5, 31, 0, 0, 1958, 1960, 3, 108, 54, 0, 1959, 1956, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1964, 1, 0, 0, 0, 1961, 1962, 5, 278, 0, 0, 1962, 1963, 5, 31, 0, 0, 1963, 1965, 3, 106, 53, 0, 1964, 1961, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 1, 0, 0, 0, 1966, 1968, 3, 360, 180, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1970, 1, 0, 0, 0, 1969, 1971, 3, 104, 52, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1973, 5, 202, 0, 0, 1973, 1975, 3, 276, 138, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 103, 1, 0, 0, 0, 1976, 1979, 5, 165, 0, 0, 1977, 1980, 5, 10, 0, 0, 1978, 1980, 3, 276, 138, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1978, 1, 0, 0, 0, 1980, 105, 1, 0, 0, 0, 1981, 1986, 3, 116, 58, 0, 1982, 1983, 5, 4, 0, 0, 1983, 1985, 3, 116, 58, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 107, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1994, 3, 276, 138, 0, 1990, 1991, 5, 4, 0, 0, 1991, 1993, 3, 276, 138, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 109, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1997, 1998, 3, 28, 14, 0, 1998, 1999, 3, 120, 60, 0, 1999, 111, 1, 0, 0, 0, 2000, 2001, 6, 56, -1, 0, 2001, 2002, 3, 114, 57, 0, 2002, 2023, 1, 0, 0, 0, 2003, 2004, 10, 3, 0, 0, 2004, 2006, 7, 13, 0, 0, 2005, 2007, 3, 204, 102, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2022, 3, 112, 56, 4, 2009, 2010, 10, 2, 0, 0, 2010, 2012, 5, 148, 0, 0, 2011, 2013, 3, 204, 102, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2022, 3, 112, 56, 3, 2015, 2016, 10, 1, 0, 0, 2016, 2018, 7, 14, 0, 0, 2017, 2019, 3, 204, 102, 0, 2018, 2017, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2022, 3, 112, 56, 2, 2021, 2003, 1, 0, 0, 0, 2021, 2009, 1, 0, 0, 0, 2021, 2015, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 113, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2036, 3, 122, 61, 0, 2027, 2036, 3, 118, 59, 0, 2028, 2029, 5, 293, 0, 0, 2029, 2036, 3, 86, 43, 0, 2030, 2036, 3, 234, 117, 0, 2031, 2032, 5, 2, 0, 0, 2032, 2033, 3, 26, 13, 0, 2033, 2034, 5, 3, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2026, 1, 0, 0, 0, 2035, 2027, 1, 0, 0, 0, 2035, 2028, 1, 0, 0, 0, 2035, 2030, 1, 0, 0, 0, 2035, 2031, 1, 0, 0, 0, 2036, 115, 1, 0, 0, 0, 2037, 2040, 3, 92, 46, 0, 2038, 2040, 3, 276, 138, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2038, 1, 0, 0, 0, 2040, 2042, 1, 0, 0, 0, 2041, 2043, 7, 15, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2045, 5, 199, 0, 0, 2045, 2047, 7, 16, 0, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 117, 1, 0, 0, 0, 2048, 2050, 3, 154, 77, 0, 2049, 2051, 3, 120, 60, 0, 2050, 2049, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 119, 1, 0, 0, 0, 2054, 2056, 3, 124, 62, 0, 2055, 2057, 3, 146, 73, 0, 2056, 2055, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 3, 102, 51, 0, 2059, 2082, 1, 0, 0, 0, 2060, 2064, 3, 126, 63, 0, 2061, 2063, 3, 202, 101, 0, 2062, 2061, 1, 0, 0, 0, 2063, 2066, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2068, 1, 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2067, 2069, 3, 146, 73, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 2072, 3, 160, 80, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2075, 3, 148, 74, 0, 2074, 2073, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2077, 1, 0, 0, 0, 2076, 2078, 3, 360, 180, 0, 2077, 2076, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 3, 102, 51, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2054, 1, 0, 0, 0, 2081, 2060, 1, 0, 0, 0, 2082, 121, 1, 0, 0, 0, 2083, 2085, 3, 124, 62, 0, 2084, 2086, 3, 154, 77, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2090, 1, 0, 0, 0, 2087, 2089, 3, 202, 101, 0, 2088, 2087, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2095, 3, 146, 73, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 160, 80, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 148, 74, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2104, 3, 360, 180, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2128, 1, 0, 0, 0, 2105, 2107, 3, 126, 63, 0, 2106, 2108, 3, 154, 77, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2112, 1, 0, 0, 0, 2109, 2111, 3, 202, 101, 0, 2110, 2109, 1, 0, 0, 0, 2111, 2114, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2116, 1, 0, 0, 0, 2114, 2112, 1, 0, 0, 0, 2115, 2117, 3, 146, 73, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 160, 80, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 148, 74, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2126, 3, 360, 180, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2083, 1, 0, 0, 0, 2127, 2105, 1, 0, 0, 0, 2128, 123, 1, 0, 0, 0, 2129, 2130, 5, 263, 0, 0, 2130, 2131, 5, 314, 0, 0, 2131, 2133, 5, 2, 0, 0, 2132, 2134, 3, 204, 102, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 3, 282, 141, 0, 2136, 2137, 5, 3, 0, 0, 2137, 2149, 1, 0, 0, 0, 2138, 2140, 5, 177, 0, 0, 2139, 2141, 3, 204, 102, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2149, 3, 282, 141, 0, 2143, 2145, 5, 238, 0, 0, 2144, 2146, 3, 204, 102, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 3, 282, 141, 0, 2148, 2129, 1, 0, 0, 0, 2148, 2138, 1, 0, 0, 0, 2148, 2143, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2152, 3, 250, 125, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2155, 1, 0, 0, 0, 2153, 2154, 5, 236, 0, 0, 2154, 2156, 3, 396, 198, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 5, 332, 0, 0, 2158, 2171, 3, 396, 198, 0, 2159, 2169, 5, 20, 0, 0, 2160, 2170, 3, 222, 111, 0, 2161, 2170, 3, 342, 171, 0, 2162, 2165, 5, 2, 0, 0, 2163, 2166, 3, 222, 111, 0, 2164, 2166, 3, 342, 171, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 5, 3, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2160, 1, 0, 0, 0, 2169, 2161, 1, 0, 0, 0, 2169, 2162, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2159, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2175, 3, 250, 125, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2177, 5, 235, 0, 0, 2177, 2179, 3, 396, 198, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 125, 1, 0, 0, 0, 2180, 2184, 5, 263, 0, 0, 2181, 2183, 3, 150, 75, 0, 2182, 2181, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2189, 3, 204, 102, 0, 2188, 2187, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 3, 266, 133, 0, 2191, 127, 1, 0, 0, 0, 2192, 2193, 5, 269, 0, 0, 2193, 2194, 3, 142, 71, 0, 2194, 129, 1, 0, 0, 0, 2195, 2196, 5, 343, 0, 0, 2196, 2199, 5, 178, 0, 0, 2197, 2198, 5, 14, 0, 0, 2198, 2200, 3, 284, 142, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 5, 300, 0, 0, 2202, 2203, 3, 136, 68, 0, 2203, 131, 1, 0, 0, 0, 2204, 2205, 5, 343, 0, 0, 2205, 2206, 5, 197, 0, 0, 2206, 2209, 5, 178, 0, 0, 2207, 2208, 5, 31, 0, 0, 2208, 2210, 5, 296, 0, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2212, 5, 14, 0, 0, 2212, 2214, 3, 284, 142, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 300, 0, 0, 2216, 2217, 3, 138, 69, 0, 2217, 133, 1, 0, 0, 0, 2218, 2219, 5, 343, 0, 0, 2219, 2220, 5, 197, 0, 0, 2220, 2221, 5, 178, 0, 0, 2221, 2222, 5, 31, 0, 0, 2222, 2225, 5, 280, 0, 0, 2223, 2224, 5, 14, 0, 0, 2224, 2226, 3, 284, 142, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 5, 300, 0, 0, 2228, 2229, 3, 140, 70, 0, 2229, 135, 1, 0, 0, 0, 2230, 2238, 5, 84, 0, 0, 2231, 2232, 5, 329, 0, 0, 2232, 2233, 5, 269, 0, 0, 2233, 2238, 5, 363, 0, 0, 2234, 2235, 5, 329, 0, 0, 2235, 2236, 5, 269, 0, 0, 2236, 2238, 3, 142, 71, 0, 2237, 2230, 1, 0, 0, 0, 2237, 2231, 1, 0, 0, 0, 2237, 2234, 1, 0, 0, 0, 2238, 137, 1, 0, 0, 0, 2239, 2240, 5, 147, 0, 0, 2240, 2258, 5, 363, 0, 0, 2241, 2242, 5, 147, 0, 0, 2242, 2243, 5, 2, 0, 0, 2243, 2244, 3, 252, 126, 0, 2244, 2245, 5, 3, 0, 0, 2245, 2246, 5, 333, 0, 0, 2246, 2247, 5, 2, 0, 0, 2247, 2252, 3, 276, 138, 0, 2248, 2249, 5, 4, 0, 0, 2249, 2251, 3, 276, 138, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2255, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2256, 5, 3, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2239, 1, 0, 0, 0, 2257, 2241, 1, 0, 0, 0, 2258, 139, 1, 0, 0, 0, 2259, 2264, 5, 84, 0, 0, 2260, 2261, 5, 329, 0, 0, 2261, 2262, 5, 269, 0, 0, 2262, 2264, 3, 142, 71, 0, 2263, 2259, 1, 0, 0, 0, 2263, 2260, 1, 0, 0, 0, 2264, 141, 1, 0, 0, 0, 2265, 2270, 3, 144, 72, 0, 2266, 2267, 5, 4, 0, 0, 2267, 2269, 3, 144, 72, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2272, 1, 0, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 143, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2274, 3, 254, 127, 0, 2274, 2275, 5, 352, 0, 0, 2275, 2276, 3, 276, 138, 0, 2276, 145, 1, 0, 0, 0, 2277, 2278, 5, 344, 0, 0, 2278, 2279, 3, 284, 142, 0, 2279, 147, 1, 0, 0, 0, 2280, 2281, 5, 132, 0, 0, 2281, 2282, 3, 284, 142, 0, 2282, 149, 1, 0, 0, 0, 2283, 2284, 5, 374, 0, 0, 2284, 2291, 3, 152, 76, 0, 2285, 2287, 5, 4, 0, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 3, 152, 76, 0, 2289, 2286, 1, 0, 0, 0, 2290, 2293, 1, 0, 0, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2294, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2294, 2295, 5, 375, 0, 0, 2295, 151, 1, 0, 0, 0, 2296, 2310, 3, 384, 192, 0, 2297, 2298, 3, 384, 192, 0, 2298, 2299, 5, 2, 0, 0, 2299, 2304, 3, 292, 146, 0, 2300, 2301, 5, 4, 0, 0, 2301, 2303, 3, 292, 146, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2308, 5, 3, 0, 0, 2308, 2310, 1, 0, 0, 0, 2309, 2296, 1, 0, 0, 0, 2309, 2297, 1, 0, 0, 0, 2310, 153, 1, 0, 0, 0, 2311, 2312, 5, 123, 0, 0, 2312, 2317, 3, 206, 103, 0, 2313, 2314, 5, 4, 0, 0, 2314, 2316, 3, 206, 103, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2323, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2322, 3, 202, 101, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2328, 3, 170, 85, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2331, 3, 176, 88, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 155, 1, 0, 0, 0, 2332, 2333, 7, 17, 0, 0, 2333, 157, 1, 0, 0, 0, 2334, 2336, 5, 119, 0, 0, 2335, 2334, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 7, 18, 0, 0, 2338, 2339, 5, 20, 0, 0, 2339, 2340, 5, 201, 0, 0, 2340, 2349, 3, 400, 200, 0, 2341, 2343, 5, 119, 0, 0, 2342, 2341, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 7, 19, 0, 0, 2345, 2346, 5, 20, 0, 0, 2346, 2347, 5, 201, 0, 0, 2347, 2349, 3, 288, 144, 0, 2348, 2335, 1, 0, 0, 0, 2348, 2342, 1, 0, 0, 0, 2349, 159, 1, 0, 0, 0, 2350, 2351, 5, 130, 0, 0, 2351, 2352, 5, 31, 0, 0, 2352, 2357, 3, 162, 81, 0, 2353, 2354, 5, 4, 0, 0, 2354, 2356, 3, 162, 81, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2359, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2390, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2360, 2361, 5, 130, 0, 0, 2361, 2362, 5, 31, 0, 0, 2362, 2367, 3, 276, 138, 0, 2363, 2364, 5, 4, 0, 0, 2364, 2366, 3, 276, 138, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2369, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2387, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2371, 5, 346, 0, 0, 2371, 2388, 5, 256, 0, 0, 2372, 2373, 5, 346, 0, 0, 2373, 2388, 5, 61, 0, 0, 2374, 2375, 5, 131, 0, 0, 2375, 2376, 5, 271, 0, 0, 2376, 2377, 5, 2, 0, 0, 2377, 2382, 3, 168, 84, 0, 2378, 2379, 5, 4, 0, 0, 2379, 2381, 3, 168, 84, 0, 2380, 2378, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2386, 5, 3, 0, 0, 2386, 2388, 1, 0, 0, 0, 2387, 2370, 1, 0, 0, 0, 2387, 2372, 1, 0, 0, 0, 2387, 2374, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2350, 1, 0, 0, 0, 2389, 2360, 1, 0, 0, 0, 2390, 161, 1, 0, 0, 0, 2391, 2395, 3, 92, 46, 0, 2392, 2395, 3, 164, 82, 0, 2393, 2395, 3, 276, 138, 0, 2394, 2391, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2393, 1, 0, 0, 0, 2395, 163, 1, 0, 0, 0, 2396, 2397, 7, 20, 0, 0, 2397, 2398, 5, 2, 0, 0, 2398, 2403, 3, 168, 84, 0, 2399, 2400, 5, 4, 0, 0, 2400, 2402, 3, 168, 84, 0, 2401, 2399, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2407, 5, 3, 0, 0, 2407, 2422, 1, 0, 0, 0, 2408, 2409, 5, 131, 0, 0, 2409, 2410, 5, 271, 0, 0, 2410, 2411, 5, 2, 0, 0, 2411, 2416, 3, 166, 83, 0, 2412, 2413, 5, 4, 0, 0, 2413, 2415, 3, 166, 83, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2418, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2420, 5, 3, 0, 0, 2420, 2422, 1, 0, 0, 0, 2421, 2396, 1, 0, 0, 0, 2421, 2408, 1, 0, 0, 0, 2422, 165, 1, 0, 0, 0, 2423, 2426, 3, 164, 82, 0, 2424, 2426, 3, 168, 84, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2424, 1, 0, 0, 0, 2426, 167, 1, 0, 0, 0, 2427, 2448, 3, 92, 46, 0, 2428, 2448, 3, 276, 138, 0, 2429, 2444, 5, 2, 0, 0, 2430, 2433, 3, 92, 46, 0, 2431, 2433, 3, 276, 138, 0, 2432, 2430, 1, 0, 0, 0, 2432, 2431, 1, 0, 0, 0, 2433, 2441, 1, 0, 0, 0, 2434, 2437, 5, 4, 0, 0, 2435, 2438, 3, 92, 46, 0, 2436, 2438, 3, 276, 138, 0, 2437, 2435, 1, 0, 0, 0, 2437, 2436, 1, 0, 0, 0, 2438, 2440, 1, 0, 0, 0, 2439, 2434, 1, 0, 0, 0, 2440, 2443, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2432, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 5, 3, 0, 0, 2447, 2427, 1, 0, 0, 0, 2447, 2428, 1, 0, 0, 0, 2447, 2429, 1, 0, 0, 0, 2448, 169, 1, 0, 0, 0, 2449, 2450, 5, 223, 0, 0, 2450, 2451, 5, 2, 0, 0, 2451, 2452, 3, 266, 133, 0, 2452, 2453, 5, 119, 0, 0, 2453, 2454, 3, 172, 86, 0, 2454, 2455, 5, 140, 0, 0, 2455, 2456, 5, 2, 0, 0, 2456, 2461, 3, 174, 87, 0, 2457, 2458, 5, 4, 0, 0, 2458, 2460, 3, 174, 87, 0, 2459, 2457, 1, 0, 0, 0, 2460, 2463, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2464, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2465, 5, 3, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 171, 1, 0, 0, 0, 2467, 2480, 3, 384, 192, 0, 2468, 2469, 5, 2, 0, 0, 2469, 2474, 3, 384, 192, 0, 2470, 2471, 5, 4, 0, 0, 2471, 2473, 3, 384, 192, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2476, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2477, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2478, 5, 3, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2467, 1, 0, 0, 0, 2479, 2468, 1, 0, 0, 0, 2480, 173, 1, 0, 0, 0, 2481, 2486, 3, 276, 138, 0, 2482, 2484, 5, 20, 0, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 3, 384, 192, 0, 2486, 2483, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 175, 1, 0, 0, 0, 2488, 2490, 5, 327, 0, 0, 2489, 2491, 3, 178, 89, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 5, 2, 0, 0, 2493, 2494, 3, 180, 90, 0, 2494, 2499, 5, 3, 0, 0, 2495, 2497, 5, 20, 0, 0, 2496, 2495, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2500, 3, 384, 192, 0, 2499, 2496, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 177, 1, 0, 0, 0, 2501, 2502, 7, 21, 0, 0, 2502, 2503, 5, 199, 0, 0, 2503, 179, 1, 0, 0, 0, 2504, 2507, 3, 182, 91, 0, 2505, 2507, 3, 184, 92, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2505, 1, 0, 0, 0, 2507, 181, 1, 0, 0, 0, 2508, 2509, 3, 188, 94, 0, 2509, 2510, 5, 119, 0, 0, 2510, 2511, 3, 190, 95, 0, 2511, 2512, 5, 140, 0, 0, 2512, 2513, 5, 2, 0, 0, 2513, 2518, 3, 192, 96, 0, 2514, 2515, 5, 4, 0, 0, 2515, 2517, 3, 192, 96, 0, 2516, 2514, 1, 0, 0, 0, 2517, 2520, 1, 0, 0, 0, 2518, 2516, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2521, 2522, 5, 3, 0, 0, 2522, 183, 1, 0, 0, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2529, 3, 188, 94, 0, 2525, 2526, 5, 4, 0, 0, 2526, 2528, 3, 188, 94, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2531, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 2533, 5, 3, 0, 0, 2533, 2534, 5, 119, 0, 0, 2534, 2535, 3, 190, 95, 0, 2535, 2536, 5, 140, 0, 0, 2536, 2537, 5, 2, 0, 0, 2537, 2542, 3, 186, 93, 0, 2538, 2539, 5, 4, 0, 0, 2539, 2541, 3, 186, 93, 0, 2540, 2538, 1, 0, 0, 0, 2541, 2544, 1, 0, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2546, 5, 3, 0, 0, 2546, 185, 1, 0, 0, 0, 2547, 2548, 5, 2, 0, 0, 2548, 2553, 3, 194, 97, 0, 2549, 2550, 5, 4, 0, 0, 2550, 2552, 3, 194, 97, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2555, 1, 0, 0, 0, 2553, 2551, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 2558, 5, 3, 0, 0, 2557, 2559, 3, 196, 98, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 187, 1, 0, 0, 0, 2560, 2561, 3, 384, 192, 0, 2561, 189, 1, 0, 0, 0, 2562, 2563, 3, 384, 192, 0, 2563, 191, 1, 0, 0, 0, 2564, 2566, 3, 194, 97, 0, 2565, 2567, 3, 196, 98, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 193, 1, 0, 0, 0, 2568, 2569, 3, 254, 127, 0, 2569, 195, 1, 0, 0, 0, 2570, 2572, 5, 20, 0, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 3, 384, 192, 0, 2574, 197, 1, 0, 0, 0, 2575, 2576, 5, 137, 0, 0, 2576, 2577, 5, 197, 0, 0, 2577, 2578, 5, 105, 0, 0, 2578, 199, 1, 0, 0, 0, 2579, 2580, 5, 137, 0, 0, 2580, 2581, 5, 105, 0, 0, 2581, 201, 1, 0, 0, 0, 2582, 2583, 5, 158, 0, 0, 2583, 2585, 5, 338, 0, 0, 2584, 2586, 5, 211, 0, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 3, 90, 45, 0, 2588, 2597, 5, 2, 0, 0, 2589, 2594, 3, 276, 138, 0, 2590, 2591, 5, 4, 0, 0, 2591, 2593, 3, 276, 138, 0, 2592, 2590, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2598, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2597, 2589, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 5, 3, 0, 0, 2600, 2612, 3, 248, 124, 0, 2601, 2603, 5, 20, 0, 0, 2602, 2601, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2609, 3, 384, 192, 0, 2605, 2606, 5, 4, 0, 0, 2606, 2608, 3, 384, 192, 0, 2607, 2605, 1, 0, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2602, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 203, 1, 0, 0, 0, 2614, 2615, 7, 22, 0, 0, 2615, 205, 1, 0, 0, 0, 2616, 2628, 3, 86, 43, 0, 2617, 2619, 5, 158, 0, 0, 2618, 2617, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2624, 3, 232, 116, 0, 2621, 2623, 3, 208, 104, 0, 2622, 2621, 1, 0, 0, 0, 2623, 2626, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2616, 1, 0, 0, 0, 2627, 2618, 1, 0, 0, 0, 2628, 207, 1, 0, 0, 0, 2629, 2633, 3, 210, 105, 0, 2630, 2633, 3, 170, 85, 0, 2631, 2633, 3, 176, 88, 0, 2632, 2629, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 209, 1, 0, 0, 0, 2634, 2635, 3, 212, 106, 0, 2635, 2637, 5, 155, 0, 0, 2636, 2638, 5, 158, 0, 0, 2637, 2636, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2641, 3, 232, 116, 0, 2640, 2642, 3, 214, 107, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2652, 1, 0, 0, 0, 2643, 2644, 5, 194, 0, 0, 2644, 2645, 3, 212, 106, 0, 2645, 2647, 5, 155, 0, 0, 2646, 2648, 5, 158, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 3, 232, 116, 0, 2650, 2652, 1, 0, 0, 0, 2651, 2634, 1, 0, 0, 0, 2651, 2643, 1, 0, 0, 0, 2652, 211, 1, 0, 0, 0, 2653, 2655, 5, 144, 0, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2678, 1, 0, 0, 0, 2656, 2678, 5, 60, 0, 0, 2657, 2659, 5, 161, 0, 0, 2658, 2660, 5, 211, 0, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2678, 1, 0, 0, 0, 2661, 2663, 5, 161, 0, 0, 2662, 2661, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2678, 5, 264, 0, 0, 2665, 2667, 5, 250, 0, 0, 2666, 2668, 5, 211, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2678, 1, 0, 0, 0, 2669, 2671, 5, 124, 0, 0, 2670, 2672, 5, 211, 0, 0, 2671, 2670, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2678, 1, 0, 0, 0, 2673, 2675, 5, 161, 0, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2678, 5, 15, 0, 0, 2677, 2654, 1, 0, 0, 0, 2677, 2656, 1, 0, 0, 0, 2677, 2657, 1, 0, 0, 0, 2677, 2662, 1, 0, 0, 0, 2677, 2665, 1, 0, 0, 0, 2677, 2669, 1, 0, 0, 0, 2677, 2674, 1, 0, 0, 0, 2678, 213, 1, 0, 0, 0, 2679, 2680, 5, 203, 0, 0, 2680, 2684, 3, 284, 142, 0, 2681, 2682, 5, 332, 0, 0, 2682, 2684, 3, 220, 110, 0, 2683, 2679, 1, 0, 0, 0, 2683, 2681, 1, 0, 0, 0, 2684, 215, 1, 0, 0, 0, 2685, 2686, 5, 295, 0, 0, 2686, 2688, 5, 2, 0, 0, 2687, 2689, 3, 218, 109, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2695, 5, 3, 0, 0, 2691, 2692, 5, 243, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 5, 382, 0, 0, 2694, 2696, 5, 3, 0, 0, 2695, 2691, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 217, 1, 0, 0, 0, 2697, 2699, 5, 362, 0, 0, 2698, 2697, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 7, 23, 0, 0, 2701, 2722, 5, 222, 0, 0, 2702, 2703, 3, 276, 138, 0, 2703, 2704, 5, 258, 0, 0, 2704, 2722, 1, 0, 0, 0, 2705, 2706, 5, 29, 0, 0, 2706, 2707, 5, 382, 0, 0, 2707, 2708, 5, 210, 0, 0, 2708, 2709, 5, 201, 0, 0, 2709, 2718, 5, 382, 0, 0, 2710, 2716, 5, 203, 0, 0, 2711, 2717, 3, 384, 192, 0, 2712, 2713, 3, 378, 189, 0, 2713, 2714, 5, 2, 0, 0, 2714, 2715, 5, 3, 0, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2711, 1, 0, 0, 0, 2716, 2712, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2710, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2722, 1, 0, 0, 0, 2720, 2722, 3, 276, 138, 0, 2721, 2698, 1, 0, 0, 0, 2721, 2702, 1, 0, 0, 0, 2721, 2705, 1, 0, 0, 0, 2721, 2720, 1, 0, 0, 0, 2722, 219, 1, 0, 0, 0, 2723, 2724, 5, 2, 0, 0, 2724, 2725, 3, 222, 111, 0, 2725, 2726, 5, 3, 0, 0, 2726, 221, 1, 0, 0, 0, 2727, 2732, 3, 380, 190, 0, 2728, 2729, 5, 4, 0, 0, 2729, 2731, 3, 380, 190, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2730, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 223, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2735, 2736, 5, 2, 0, 0, 2736, 2741, 3, 226, 113, 0, 2737, 2738, 5, 4, 0, 0, 2738, 2740, 3, 226, 113, 0, 2739, 2737, 1, 0, 0, 0, 2740, 2743, 1, 0, 0, 0, 2741, 2739, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2744, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2745, 5, 3, 0, 0, 2745, 225, 1, 0, 0, 0, 2746, 2748, 3, 380, 190, 0, 2747, 2749, 7, 15, 0, 0, 2748, 2747, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 227, 1, 0, 0, 0, 2750, 2751, 5, 2, 0, 0, 2751, 2756, 3, 230, 115, 0, 2752, 2753, 5, 4, 0, 0, 2753, 2755, 3, 230, 115, 0, 2754, 2752, 1, 0, 0, 0, 2755, 2758, 1, 0, 0, 0, 2756, 2754, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2756, 1, 0, 0, 0, 2759, 2760, 5, 3, 0, 0, 2760, 229, 1, 0, 0, 0, 2761, 2763, 3, 98, 49, 0, 2762, 2764, 3, 24, 12, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 231, 1, 0, 0, 0, 2765, 2769, 3, 86, 43, 0, 2766, 2769, 3, 90, 45, 0, 2767, 2769, 3, 100, 50, 0, 2768, 2765, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2767, 1, 0, 0, 0, 2769, 2771, 1, 0, 0, 0, 2770, 2772, 3, 158, 79, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2774, 1, 0, 0, 0, 2773, 2775, 3, 216, 108, 0, 2774, 2773, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 3, 248, 124, 0, 2777, 2797, 1, 0, 0, 0, 2778, 2779, 5, 2, 0, 0, 2779, 2780, 3, 26, 13, 0, 2780, 2782, 5, 3, 0, 0, 2781, 2783, 3, 216, 108, 0, 2782, 2781, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 3, 248, 124, 0, 2785, 2797, 1, 0, 0, 0, 2786, 2787, 5, 2, 0, 0, 2787, 2788, 3, 206, 103, 0, 2788, 2790, 5, 3, 0, 0, 2789, 2791, 3, 216, 108, 0, 2790, 2789, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 3, 248, 124, 0, 2793, 2797, 1, 0, 0, 0, 2794, 2797, 3, 234, 117, 0, 2795, 2797, 3, 246, 123, 0, 2796, 2768, 1, 0, 0, 0, 2796, 2778, 1, 0, 0, 0, 2796, 2786, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2795, 1, 0, 0, 0, 2797, 233, 1, 0, 0, 0, 2798, 2799, 5, 333, 0, 0, 2799, 2804, 3, 276, 138, 0, 2800, 2801, 5, 4, 0, 0, 2801, 2803, 3, 276, 138, 0, 2802, 2800, 1, 0, 0, 0, 2803, 2806, 1, 0, 0, 0, 2804, 2802, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2807, 1, 0, 0, 0, 2806, 2804, 1, 0, 0, 0, 2807, 2808, 3, 248, 124, 0, 2808, 235, 1, 0, 0, 0, 2809, 2810, 5, 293, 0, 0, 2810, 2812, 3, 86, 43, 0, 2811, 2813, 3, 238, 119, 0, 2812, 2811, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2829, 1, 0, 0, 0, 2814, 2815, 5, 293, 0, 0, 2815, 2816, 5, 2, 0, 0, 2816, 2817, 3, 86, 43, 0, 2817, 2819, 5, 3, 0, 0, 2818, 2820, 3, 238, 119, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2829, 1, 0, 0, 0, 2821, 2822, 5, 293, 0, 0, 2822, 2823, 5, 2, 0, 0, 2823, 2824, 3, 26, 13, 0, 2824, 2826, 5, 3, 0, 0, 2825, 2827, 3, 238, 119, 0, 2826, 2825, 1, 0, 0, 0, 2826, 2827, 1, 0, 0, 0, 2827, 2829, 1, 0, 0, 0, 2828, 2809, 1, 0, 0, 0, 2828, 2814, 1, 0, 0, 0, 2828, 2821, 1, 0, 0, 0, 2829, 237, 1, 0, 0, 0, 2830, 2831, 5, 346, 0, 0, 2831, 2832, 5, 274, 0, 0, 2832, 2850, 5, 217, 0, 0, 2833, 2834, 7, 24, 0, 0, 2834, 2847, 5, 31, 0, 0, 2835, 2836, 5, 2, 0, 0, 2836, 2841, 3, 276, 138, 0, 2837, 2838, 5, 4, 0, 0, 2838, 2840, 3, 276, 138, 0, 2839, 2837, 1, 0, 0, 0, 2840, 2843, 1, 0, 0, 0, 2841, 2839, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2844, 1, 0, 0, 0, 2843, 2841, 1, 0, 0, 0, 2844, 2845, 5, 3, 0, 0, 2845, 2848, 1, 0, 0, 0, 2846, 2848, 3, 276, 138, 0, 2847, 2835, 1, 0, 0, 0, 2847, 2846, 1, 0, 0, 0, 2848, 2850, 1, 0, 0, 0, 2849, 2830, 1, 0, 0, 0, 2849, 2833, 1, 0, 0, 0, 2850, 2860, 1, 0, 0, 0, 2851, 2852, 7, 25, 0, 0, 2852, 2858, 5, 31, 0, 0, 2853, 2854, 5, 2, 0, 0, 2854, 2855, 3, 106, 53, 0, 2855, 2856, 5, 3, 0, 0, 2856, 2859, 1, 0, 0, 0, 2857, 2859, 3, 116, 58, 0, 2858, 2853, 1, 0, 0, 0, 2858, 2857, 1, 0, 0, 0, 2859, 2861, 1, 0, 0, 0, 2860, 2851, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 239, 1, 0, 0, 0, 2862, 2863, 3, 384, 192, 0, 2863, 2864, 5, 373, 0, 0, 2864, 2865, 3, 236, 118, 0, 2865, 241, 1, 0, 0, 0, 2866, 2869, 3, 236, 118, 0, 2867, 2869, 3, 240, 120, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 243, 1, 0, 0, 0, 2870, 2873, 3, 242, 121, 0, 2871, 2873, 3, 280, 140, 0, 2872, 2870, 1, 0, 0, 0, 2872, 2871, 1, 0, 0, 0, 2873, 245, 1, 0, 0, 0, 2874, 2875, 3, 374, 187, 0, 2875, 2884, 5, 2, 0, 0, 2876, 2881, 3, 244, 122, 0, 2877, 2878, 5, 4, 0, 0, 2878, 2880, 3, 244, 122, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2883, 1, 0, 0, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2885, 1, 0, 0, 0, 2883, 2881, 1, 0, 0, 0, 2884, 2876, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2887, 5, 3, 0, 0, 2887, 2888, 3, 248, 124, 0, 2888, 247, 1, 0, 0, 0, 2889, 2891, 5, 20, 0, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 3, 386, 193, 0, 2893, 2895, 3, 220, 110, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2890, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 249, 1, 0, 0, 0, 2898, 2899, 5, 257, 0, 0, 2899, 2900, 5, 121, 0, 0, 2900, 2901, 5, 266, 0, 0, 2901, 2905, 3, 396, 198, 0, 2902, 2903, 5, 346, 0, 0, 2903, 2904, 5, 267, 0, 0, 2904, 2906, 3, 54, 27, 0, 2905, 2902, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2948, 1, 0, 0, 0, 2907, 2908, 5, 257, 0, 0, 2908, 2909, 5, 121, 0, 0, 2909, 2919, 5, 85, 0, 0, 2910, 2911, 5, 113, 0, 0, 2911, 2912, 5, 299, 0, 0, 2912, 2913, 5, 31, 0, 0, 2913, 2917, 3, 396, 198, 0, 2914, 2915, 5, 101, 0, 0, 2915, 2916, 5, 31, 0, 0, 2916, 2918, 3, 396, 198, 0, 2917, 2914, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 1, 0, 0, 0, 2919, 2910, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2926, 1, 0, 0, 0, 2921, 2922, 5, 48, 0, 0, 2922, 2923, 5, 154, 0, 0, 2923, 2924, 5, 299, 0, 0, 2924, 2925, 5, 31, 0, 0, 2925, 2927, 3, 396, 198, 0, 2926, 2921, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2933, 1, 0, 0, 0, 2928, 2929, 5, 177, 0, 0, 2929, 2930, 5, 156, 0, 0, 2930, 2931, 5, 299, 0, 0, 2931, 2932, 5, 31, 0, 0, 2932, 2934, 3, 396, 198, 0, 2933, 2928, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2939, 1, 0, 0, 0, 2935, 2936, 5, 166, 0, 0, 2936, 2937, 5, 299, 0, 0, 2937, 2938, 5, 31, 0, 0, 2938, 2940, 3, 396, 198, 0, 2939, 2935, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2945, 1, 0, 0, 0, 2941, 2942, 5, 198, 0, 0, 2942, 2943, 5, 83, 0, 0, 2943, 2944, 5, 20, 0, 0, 2944, 2946, 3, 396, 198, 0, 2945, 2941, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2948, 1, 0, 0, 0, 2947, 2898, 1, 0, 0, 0, 2947, 2907, 1, 0, 0, 0, 2948, 251, 1, 0, 0, 0, 2949, 2954, 3, 254, 127, 0, 2950, 2951, 5, 4, 0, 0, 2951, 2953, 3, 254, 127, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2956, 1, 0, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2955, 1, 0, 0, 0, 2955, 253, 1, 0, 0, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2962, 3, 380, 190, 0, 2958, 2959, 5, 5, 0, 0, 2959, 2961, 3, 380, 190, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 255, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 258, 129, 0, 2966, 2967, 5, 4, 0, 0, 2967, 2969, 3, 258, 129, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 257, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2976, 3, 254, 127, 0, 2974, 2975, 5, 207, 0, 0, 2975, 2977, 3, 54, 27, 0, 2976, 2974, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 259, 1, 0, 0, 0, 2978, 2979, 3, 380, 190, 0, 2979, 2980, 5, 5, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2978, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 3, 380, 190, 0, 2984, 261, 1, 0, 0, 0, 2985, 2986, 3, 380, 190, 0, 2986, 2987, 5, 5, 0, 0, 2987, 2989, 1, 0, 0, 0, 2988, 2985, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 3, 380, 190, 0, 2991, 263, 1, 0, 0, 0, 2992, 2995, 3, 92, 46, 0, 2993, 2995, 3, 276, 138, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2993, 1, 0, 0, 0, 2995, 3003, 1, 0, 0, 0, 2996, 2998, 5, 20, 0, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3001, 1, 0, 0, 0, 2999, 3002, 3, 380, 190, 0, 3000, 3002, 3, 220, 110, 0, 3001, 2999, 1, 0, 0, 0, 3001, 3000, 1, 0, 0, 0, 3002, 3004, 1, 0, 0, 0, 3003, 2997, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 265, 1, 0, 0, 0, 3005, 3010, 3, 264, 132, 0, 3006, 3007, 5, 4, 0, 0, 3007, 3009, 3, 264, 132, 0, 3008, 3006, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 267, 1, 0, 0, 0, 3012, 3010, 1, 0, 0, 0, 3013, 3014, 5, 2, 0, 0, 3014, 3019, 3, 270, 135, 0, 3015, 3016, 5, 4, 0, 0, 3016, 3018, 3, 270, 135, 0, 3017, 3015, 1, 0, 0, 0, 3018, 3021, 1, 0, 0, 0, 3019, 3017, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3022, 1, 0, 0, 0, 3021, 3019, 1, 0, 0, 0, 3022, 3023, 5, 3, 0, 0, 3023, 269, 1, 0, 0, 0, 3024, 3027, 3, 272, 136, 0, 3025, 3027, 3, 344, 172, 0, 3026, 3024, 1, 0, 0, 0, 3026, 3025, 1, 0, 0, 0, 3027, 271, 1, 0, 0, 0, 3028, 3042, 3, 378, 189, 0, 3029, 3030, 3, 384, 192, 0, 3030, 3031, 5, 2, 0, 0, 3031, 3036, 3, 274, 137, 0, 3032, 3033, 5, 4, 0, 0, 3033, 3035, 3, 274, 137, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3038, 1, 0, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3039, 3040, 5, 3, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3028, 1, 0, 0, 0, 3041, 3029, 1, 0, 0, 0, 3042, 273, 1, 0, 0, 0, 3043, 3046, 3, 378, 189, 0, 3044, 3046, 3, 296, 148, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 275, 1, 0, 0, 0, 3047, 3048, 3, 284, 142, 0, 3048, 277, 1, 0, 0, 0, 3049, 3050, 3, 384, 192, 0, 3050, 3051, 5, 373, 0, 0, 3051, 3052, 3, 276, 138, 0, 3052, 279, 1, 0, 0, 0, 3053, 3056, 3, 276, 138, 0, 3054, 3056, 3, 278, 139, 0, 3055, 3053, 1, 0, 0, 0, 3055, 3054, 1, 0, 0, 0, 3056, 281, 1, 0, 0, 0, 3057, 3062, 3, 276, 138, 0, 3058, 3059, 5, 4, 0, 0, 3059, 3061, 3, 276, 138, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3064, 1, 0, 0, 0, 3062, 3060, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 283, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3065, 3066, 6, 142, -1, 0, 3066, 3067, 7, 26, 0, 0, 3067, 3078, 3, 284, 142, 5, 3068, 3069, 5, 105, 0, 0, 3069, 3070, 5, 2, 0, 0, 3070, 3071, 3, 26, 13, 0, 3071, 3072, 5, 3, 0, 0, 3072, 3078, 1, 0, 0, 0, 3073, 3075, 3, 288, 144, 0, 3074, 3076, 3, 286, 143, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3065, 1, 0, 0, 0, 3077, 3068, 1, 0, 0, 0, 3077, 3073, 1, 0, 0, 0, 3078, 3087, 1, 0, 0, 0, 3079, 3080, 10, 2, 0, 0, 3080, 3081, 5, 14, 0, 0, 3081, 3086, 3, 284, 142, 3, 3082, 3083, 10, 1, 0, 0, 3083, 3084, 5, 208, 0, 0, 3084, 3086, 3, 284, 142, 2, 3085, 3079, 1, 0, 0, 0, 3085, 3082, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 285, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3092, 5, 197, 0, 0, 3091, 3090, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 5, 24, 0, 0, 3094, 3095, 3, 288, 144, 0, 3095, 3096, 5, 14, 0, 0, 3096, 3097, 3, 288, 144, 0, 3097, 3173, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 140, 0, 0, 3102, 3103, 5, 2, 0, 0, 3103, 3108, 3, 276, 138, 0, 3104, 3105, 5, 4, 0, 0, 3105, 3107, 3, 276, 138, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3110, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3111, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3112, 5, 3, 0, 0, 3112, 3173, 1, 0, 0, 0, 3113, 3115, 5, 197, 0, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 5, 140, 0, 0, 3117, 3118, 5, 2, 0, 0, 3118, 3119, 3, 26, 13, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3173, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 7, 27, 0, 0, 3125, 3173, 3, 288, 144, 0, 3126, 3128, 5, 197, 0, 0, 3127, 3126, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3130, 7, 28, 0, 0, 3130, 3144, 7, 29, 0, 0, 3131, 3132, 5, 2, 0, 0, 3132, 3145, 5, 3, 0, 0, 3133, 3134, 5, 2, 0, 0, 3134, 3139, 3, 276, 138, 0, 3135, 3136, 5, 4, 0, 0, 3136, 3138, 3, 276, 138, 0, 3137, 3135, 1, 0, 0, 0, 3138, 3141, 1, 0, 0, 0, 3139, 3137, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3142, 1, 0, 0, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3143, 5, 3, 0, 0, 3143, 3145, 1, 0, 0, 0, 3144, 3131, 1, 0, 0, 0, 3144, 3133, 1, 0, 0, 0, 3145, 3173, 1, 0, 0, 0, 3146, 3148, 5, 197, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 7, 28, 0, 0, 3150, 3153, 3, 288, 144, 0, 3151, 3152, 5, 100, 0, 0, 3152, 3154, 3, 396, 198, 0, 3153, 3151, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3173, 1, 0, 0, 0, 3155, 3157, 5, 153, 0, 0, 3156, 3158, 5, 197, 0, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3173, 5, 198, 0, 0, 3160, 3162, 5, 153, 0, 0, 3161, 3163, 5, 197, 0, 0, 3162, 3161, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3173, 7, 30, 0, 0, 3165, 3167, 5, 153, 0, 0, 3166, 3168, 5, 197, 0, 0, 3167, 3166, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 5, 92, 0, 0, 3170, 3171, 5, 123, 0, 0, 3171, 3173, 3, 288, 144, 0, 3172, 3091, 1, 0, 0, 0, 3172, 3099, 1, 0, 0, 0, 3172, 3114, 1, 0, 0, 0, 3172, 3122, 1, 0, 0, 0, 3172, 3127, 1, 0, 0, 0, 3172, 3147, 1, 0, 0, 0, 3172, 3155, 1, 0, 0, 0, 3172, 3160, 1, 0, 0, 0, 3172, 3165, 1, 0, 0, 0, 3173, 287, 1, 0, 0, 0, 3174, 3175, 6, 144, -1, 0, 3175, 3179, 3, 292, 146, 0, 3176, 3177, 7, 31, 0, 0, 3177, 3179, 3, 288, 144, 7, 3178, 3174, 1, 0, 0, 0, 3178, 3176, 1, 0, 0, 0, 3179, 3201, 1, 0, 0, 0, 3180, 3181, 10, 6, 0, 0, 3181, 3182, 7, 32, 0, 0, 3182, 3200, 3, 288, 144, 7, 3183, 3184, 10, 5, 0, 0, 3184, 3185, 7, 33, 0, 0, 3185, 3200, 3, 288, 144, 6, 3186, 3187, 10, 4, 0, 0, 3187, 3188, 5, 367, 0, 0, 3188, 3200, 3, 288, 144, 5, 3189, 3190, 10, 3, 0, 0, 3190, 3191, 5, 370, 0, 0, 3191, 3200, 3, 288, 144, 4, 3192, 3193, 10, 2, 0, 0, 3193, 3194, 5, 368, 0, 0, 3194, 3200, 3, 288, 144, 3, 3195, 3196, 10, 1, 0, 0, 3196, 3197, 3, 298, 149, 0, 3197, 3198, 3, 288, 144, 2, 3198, 3200, 1, 0, 0, 0, 3199, 3180, 1, 0, 0, 0, 3199, 3183, 1, 0, 0, 0, 3199, 3186, 1, 0, 0, 0, 3199, 3189, 1, 0, 0, 0, 3199, 3192, 1, 0, 0, 0, 3199, 3195, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 289, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 3205, 7, 34, 0, 0, 3205, 291, 1, 0, 0, 0, 3206, 3207, 6, 146, -1, 0, 3207, 3456, 7, 35, 0, 0, 3208, 3209, 7, 36, 0, 0, 3209, 3212, 5, 2, 0, 0, 3210, 3213, 3, 290, 145, 0, 3211, 3213, 3, 396, 198, 0, 3212, 3210, 1, 0, 0, 0, 3212, 3211, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 5, 4, 0, 0, 3215, 3216, 3, 288, 144, 0, 3216, 3217, 5, 4, 0, 0, 3217, 3218, 3, 288, 144, 0, 3218, 3219, 5, 3, 0, 0, 3219, 3456, 1, 0, 0, 0, 3220, 3221, 7, 37, 0, 0, 3221, 3224, 5, 2, 0, 0, 3222, 3225, 3, 290, 145, 0, 3223, 3225, 3, 396, 198, 0, 3224, 3222, 1, 0, 0, 0, 3224, 3223, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3227, 5, 4, 0, 0, 3227, 3228, 3, 288, 144, 0, 3228, 3229, 5, 4, 0, 0, 3229, 3230, 3, 288, 144, 0, 3230, 3231, 5, 3, 0, 0, 3231, 3456, 1, 0, 0, 0, 3232, 3234, 5, 35, 0, 0, 3233, 3235, 3, 358, 179, 0, 3234, 3233, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3240, 1, 0, 0, 0, 3238, 3239, 5, 97, 0, 0, 3239, 3241, 3, 276, 138, 0, 3240, 3238, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3243, 5, 99, 0, 0, 3243, 3456, 1, 0, 0, 0, 3244, 3245, 5, 35, 0, 0, 3245, 3247, 3, 276, 138, 0, 3246, 3248, 3, 358, 179, 0, 3247, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3253, 1, 0, 0, 0, 3251, 3252, 5, 97, 0, 0, 3252, 3254, 3, 276, 138, 0, 3253, 3251, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 5, 99, 0, 0, 3256, 3456, 1, 0, 0, 0, 3257, 3258, 7, 38, 0, 0, 3258, 3259, 5, 2, 0, 0, 3259, 3260, 3, 276, 138, 0, 3260, 3261, 5, 20, 0, 0, 3261, 3262, 3, 326, 163, 0, 3262, 3263, 5, 3, 0, 0, 3263, 3456, 1, 0, 0, 0, 3264, 3265, 5, 286, 0, 0, 3265, 3274, 5, 2, 0, 0, 3266, 3271, 3, 264, 132, 0, 3267, 3268, 5, 4, 0, 0, 3268, 3270, 3, 264, 132, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3273, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3275, 1, 0, 0, 0, 3273, 3271, 1, 0, 0, 0, 3274, 3266, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3456, 5, 3, 0, 0, 3277, 3278, 5, 116, 0, 0, 3278, 3279, 5, 2, 0, 0, 3279, 3282, 3, 276, 138, 0, 3280, 3281, 5, 138, 0, 0, 3281, 3283, 5, 199, 0, 0, 3282, 3280, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3285, 5, 3, 0, 0, 3285, 3456, 1, 0, 0, 0, 3286, 3287, 5, 17, 0, 0, 3287, 3288, 5, 2, 0, 0, 3288, 3291, 3, 276, 138, 0, 3289, 3290, 5, 138, 0, 0, 3290, 3292, 5, 199, 0, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 5, 3, 0, 0, 3294, 3456, 1, 0, 0, 0, 3295, 3296, 5, 157, 0, 0, 3296, 3297, 5, 2, 0, 0, 3297, 3300, 3, 276, 138, 0, 3298, 3299, 5, 138, 0, 0, 3299, 3301, 5, 199, 0, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 5, 3, 0, 0, 3303, 3456, 1, 0, 0, 0, 3304, 3305, 5, 225, 0, 0, 3305, 3306, 5, 2, 0, 0, 3306, 3307, 3, 288, 144, 0, 3307, 3308, 5, 140, 0, 0, 3308, 3309, 3, 288, 144, 0, 3309, 3310, 5, 3, 0, 0, 3310, 3456, 1, 0, 0, 0, 3311, 3456, 3, 296, 148, 0, 3312, 3456, 5, 363, 0, 0, 3313, 3314, 3, 378, 189, 0, 3314, 3315, 5, 5, 0, 0, 3315, 3316, 5, 363, 0, 0, 3316, 3456, 1, 0, 0, 0, 3317, 3318, 5, 2, 0, 0, 3318, 3321, 3, 264, 132, 0, 3319, 3320, 5, 4, 0, 0, 3320, 3322, 3, 264, 132, 0, 3321, 3319, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3321, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3326, 5, 3, 0, 0, 3326, 3456, 1, 0, 0, 0, 3327, 3328, 5, 2, 0, 0, 3328, 3329, 3, 26, 13, 0, 3329, 3330, 5, 3, 0, 0, 3330, 3456, 1, 0, 0, 0, 3331, 3332, 5, 136, 0, 0, 3332, 3333, 5, 2, 0, 0, 3333, 3334, 3, 276, 138, 0, 3334, 3335, 5, 3, 0, 0, 3335, 3456, 1, 0, 0, 0, 3336, 3337, 3, 374, 187, 0, 3337, 3349, 5, 2, 0, 0, 3338, 3340, 3, 204, 102, 0, 3339, 3338, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3346, 3, 280, 140, 0, 3342, 3343, 5, 4, 0, 0, 3343, 3345, 3, 280, 140, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3348, 1, 0, 0, 0, 3346, 3344, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3349, 3339, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3358, 5, 3, 0, 0, 3352, 3353, 5, 114, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 3355, 5, 344, 0, 0, 3355, 3356, 3, 284, 142, 0, 3356, 3357, 5, 3, 0, 0, 3357, 3359, 1, 0, 0, 0, 3358, 3352, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3362, 1, 0, 0, 0, 3360, 3361, 7, 39, 0, 0, 3361, 3363, 5, 199, 0, 0, 3362, 3360, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3366, 1, 0, 0, 0, 3364, 3365, 5, 213, 0, 0, 3365, 3367, 3, 366, 183, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3456, 1, 0, 0, 0, 3368, 3369, 3, 384, 192, 0, 3369, 3370, 5, 372, 0, 0, 3370, 3371, 3, 276, 138, 0, 3371, 3456, 1, 0, 0, 0, 3372, 3373, 5, 2, 0, 0, 3373, 3376, 3, 384, 192, 0, 3374, 3375, 5, 4, 0, 0, 3375, 3377, 3, 384, 192, 0, 3376, 3374, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3376, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 5, 3, 0, 0, 3381, 3382, 5, 372, 0, 0, 3382, 3383, 3, 276, 138, 0, 3383, 3456, 1, 0, 0, 0, 3384, 3456, 3, 94, 47, 0, 3385, 3386, 5, 2, 0, 0, 3386, 3387, 3, 276, 138, 0, 3387, 3388, 5, 3, 0, 0, 3388, 3456, 1, 0, 0, 0, 3389, 3390, 5, 110, 0, 0, 3390, 3391, 5, 2, 0, 0, 3391, 3392, 3, 384, 192, 0, 3392, 3393, 5, 123, 0, 0, 3393, 3394, 3, 288, 144, 0, 3394, 3395, 5, 3, 0, 0, 3395, 3456, 1, 0, 0, 0, 3396, 3397, 7, 40, 0, 0, 3397, 3398, 5, 2, 0, 0, 3398, 3399, 3, 288, 144, 0, 3399, 3400, 7, 41, 0, 0, 3400, 3403, 3, 288, 144, 0, 3401, 3402, 7, 42, 0, 0, 3402, 3404, 3, 288, 144, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 5, 3, 0, 0, 3406, 3456, 1, 0, 0, 0, 3407, 3408, 5, 315, 0, 0, 3408, 3410, 5, 2, 0, 0, 3409, 3411, 7, 43, 0, 0, 3410, 3409, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3413, 1, 0, 0, 0, 3412, 3414, 3, 288, 144, 0, 3413, 3412, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 5, 123, 0, 0, 3416, 3417, 3, 288, 144, 0, 3417, 3418, 5, 3, 0, 0, 3418, 3456, 1, 0, 0, 0, 3419, 3420, 5, 215, 0, 0, 3420, 3421, 5, 2, 0, 0, 3421, 3422, 3, 288, 144, 0, 3422, 3423, 5, 224, 0, 0, 3423, 3424, 3, 288, 144, 0, 3424, 3425, 5, 123, 0, 0, 3425, 3428, 3, 288, 144, 0, 3426, 3427, 5, 119, 0, 0, 3427, 3429, 3, 288, 144, 0, 3428, 3426, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 5, 3, 0, 0, 3431, 3456, 1, 0, 0, 0, 3432, 3433, 7, 44, 0, 0, 3433, 3434, 5, 2, 0, 0, 3434, 3435, 3, 288, 144, 0, 3435, 3436, 5, 3, 0, 0, 3436, 3437, 5, 347, 0, 0, 3437, 3438, 5, 130, 0, 0, 3438, 3439, 5, 2, 0, 0, 3439, 3440, 5, 209, 0, 0, 3440, 3441, 5, 31, 0, 0, 3441, 3442, 3, 116, 58, 0, 3442, 3449, 5, 3, 0, 0, 3443, 3444, 5, 114, 0, 0, 3444, 3445, 5, 2, 0, 0, 3445, 3446, 5, 344, 0, 0, 3446, 3447, 3, 284, 142, 0, 3447, 3448, 5, 3, 0, 0, 3448, 3450, 1, 0, 0, 0, 3449, 3443, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3453, 1, 0, 0, 0, 3451, 3452, 5, 213, 0, 0, 3452, 3454, 3, 366, 183, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 1, 0, 0, 0, 3455, 3206, 1, 0, 0, 0, 3455, 3208, 1, 0, 0, 0, 3455, 3220, 1, 0, 0, 0, 3455, 3232, 1, 0, 0, 0, 3455, 3244, 1, 0, 0, 0, 3455, 3257, 1, 0, 0, 0, 3455, 3264, 1, 0, 0, 0, 3455, 3277, 1, 0, 0, 0, 3455, 3286, 1, 0, 0, 0, 3455, 3295, 1, 0, 0, 0, 3455, 3304, 1, 0, 0, 0, 3455, 3311, 1, 0, 0, 0, 3455, 3312, 1, 0, 0, 0, 3455, 3313, 1, 0, 0, 0, 3455, 3317, 1, 0, 0, 0, 3455, 3327, 1, 0, 0, 0, 3455, 3331, 1, 0, 0, 0, 3455, 3336, 1, 0, 0, 0, 3455, 3368, 1, 0, 0, 0, 3455, 3372, 1, 0, 0, 0, 3455, 3384, 1, 0, 0, 0, 3455, 3385, 1, 0, 0, 0, 3455, 3389, 1, 0, 0, 0, 3455, 3396, 1, 0, 0, 0, 3455, 3407, 1, 0, 0, 0, 3455, 3419, 1, 0, 0, 0, 3455, 3432, 1, 0, 0, 0, 3456, 3467, 1, 0, 0, 0, 3457, 3458, 10, 9, 0, 0, 3458, 3459, 5, 6, 0, 0, 3459, 3460, 3, 288, 144, 0, 3460, 3461, 5, 7, 0, 0, 3461, 3466, 1, 0, 0, 0, 3462, 3463, 10, 7, 0, 0, 3463, 3464, 5, 5, 0, 0, 3464, 3466, 3, 384, 192, 0, 3465, 3457, 1, 0, 0, 0, 3465, 3462, 1, 0, 0, 0, 3466, 3469, 1, 0, 0, 0, 3467, 3465, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 293, 1, 0, 0, 0, 3469, 3467, 1, 0, 0, 0, 3470, 3478, 5, 71, 0, 0, 3471, 3478, 5, 303, 0, 0, 3472, 3478, 5, 304, 0, 0, 3473, 3478, 5, 305, 0, 0, 3474, 3478, 5, 149, 0, 0, 3475, 3478, 5, 133, 0, 0, 3476, 3478, 3, 384, 192, 0, 3477, 3470, 1, 0, 0, 0, 3477, 3471, 1, 0, 0, 0, 3477, 3472, 1, 0, 0, 0, 3477, 3473, 1, 0, 0, 0, 3477, 3474, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3477, 3476, 1, 0, 0, 0, 3478, 295, 1, 0, 0, 0, 3479, 3495, 5, 198, 0, 0, 3480, 3495, 5, 376, 0, 0, 3481, 3482, 5, 371, 0, 0, 3482, 3495, 3, 384, 192, 0, 3483, 3495, 3, 306, 153, 0, 3484, 3485, 3, 294, 147, 0, 3485, 3486, 3, 396, 198, 0, 3486, 3495, 1, 0, 0, 0, 3487, 3495, 3, 392, 196, 0, 3488, 3495, 3, 304, 152, 0, 3489, 3491, 3, 396, 198, 0, 3490, 3489, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3495, 1, 0, 0, 0, 3494, 3479, 1, 0, 0, 0, 3494, 3480, 1, 0, 0, 0, 3494, 3481, 1, 0, 0, 0, 3494, 3483, 1, 0, 0, 0, 3494, 3484, 1, 0, 0, 0, 3494, 3487, 1, 0, 0, 0, 3494, 3488, 1, 0, 0, 0, 3494, 3490, 1, 0, 0, 0, 3495, 297, 1, 0, 0, 0, 3496, 3497, 7, 45, 0, 0, 3497, 299, 1, 0, 0, 0, 3498, 3499, 7, 46, 0, 0, 3499, 301, 1, 0, 0, 0, 3500, 3501, 7, 47, 0, 0, 3501, 303, 1, 0, 0, 0, 3502, 3503, 7, 48, 0, 0, 3503, 305, 1, 0, 0, 0, 3504, 3507, 5, 149, 0, 0, 3505, 3508, 3, 308, 154, 0, 3506, 3508, 3, 312, 156, 0, 3507, 3505, 1, 0, 0, 0, 3507, 3506, 1, 0, 0, 0, 3508, 307, 1, 0, 0, 0, 3509, 3511, 3, 310, 155, 0, 3510, 3512, 3, 314, 157, 0, 3511, 3510, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 309, 1, 0, 0, 0, 3513, 3514, 3, 316, 158, 0, 3514, 3515, 3, 318, 159, 0, 3515, 3517, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 311, 1, 0, 0, 0, 3520, 3523, 3, 314, 157, 0, 3521, 3524, 3, 310, 155, 0, 3522, 3524, 3, 314, 157, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 313, 1, 0, 0, 0, 3525, 3526, 3, 316, 158, 0, 3526, 3527, 3, 320, 160, 0, 3527, 3528, 5, 309, 0, 0, 3528, 3529, 3, 320, 160, 0, 3529, 315, 1, 0, 0, 0, 3530, 3532, 7, 49, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3536, 1, 0, 0, 0, 3533, 3537, 5, 382, 0, 0, 3534, 3537, 5, 384, 0, 0, 3535, 3537, 3, 396, 198, 0, 3536, 3533, 1, 0, 0, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3535, 1, 0, 0, 0, 3537, 317, 1, 0, 0, 0, 3538, 3539, 7, 50, 0, 0, 3539, 319, 1, 0, 0, 0, 3540, 3541, 7, 51, 0, 0, 3541, 321, 1, 0, 0, 0, 3542, 3546, 5, 116, 0, 0, 3543, 3544, 5, 9, 0, 0, 3544, 3546, 3, 380, 190, 0, 3545, 3542, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3546, 323, 1, 0, 0, 0, 3547, 3578, 5, 27, 0, 0, 3548, 3578, 5, 308, 0, 0, 3549, 3578, 5, 32, 0, 0, 3550, 3578, 5, 276, 0, 0, 3551, 3578, 5, 272, 0, 0, 3552, 3578, 5, 150, 0, 0, 3553, 3578, 5, 151, 0, 0, 3554, 3578, 5, 25, 0, 0, 3555, 3578, 5, 174, 0, 0, 3556, 3578, 5, 117, 0, 0, 3557, 3578, 5, 234, 0, 0, 3558, 3578, 5, 95, 0, 0, 3559, 3578, 5, 71, 0, 0, 3560, 3578, 5, 303, 0, 0, 3561, 3578, 5, 305, 0, 0, 3562, 3578, 5, 304, 0, 0, 3563, 3578, 5, 285, 0, 0, 3564, 3578, 5, 41, 0, 0, 3565, 3578, 5, 40, 0, 0, 3566, 3578, 5, 334, 0, 0, 3567, 3578, 5, 26, 0, 0, 3568, 3578, 5, 80, 0, 0, 3569, 3578, 5, 79, 0, 0, 3570, 3578, 5, 200, 0, 0, 3571, 3578, 5, 340, 0, 0, 3572, 3578, 5, 149, 0, 0, 3573, 3578, 5, 19, 0, 0, 3574, 3578, 5, 286, 0, 0, 3575, 3578, 5, 177, 0, 0, 3576, 3578, 3, 384, 192, 0, 3577, 3547, 1, 0, 0, 0, 3577, 3548, 1, 0, 0, 0, 3577, 3549, 1, 0, 0, 0, 3577, 3550, 1, 0, 0, 0, 3577, 3551, 1, 0, 0, 0, 3577, 3552, 1, 0, 0, 0, 3577, 3553, 1, 0, 0, 0, 3577, 3554, 1, 0, 0, 0, 3577, 3555, 1, 0, 0, 0, 3577, 3556, 1, 0, 0, 0, 3577, 3557, 1, 0, 0, 0, 3577, 3558, 1, 0, 0, 0, 3577, 3559, 1, 0, 0, 0, 3577, 3560, 1, 0, 0, 0, 3577, 3561, 1, 0, 0, 0, 3577, 3562, 1, 0, 0, 0, 3577, 3563, 1, 0, 0, 0, 3577, 3564, 1, 0, 0, 0, 3577, 3565, 1, 0, 0, 0, 3577, 3566, 1, 0, 0, 0, 3577, 3567, 1, 0, 0, 0, 3577, 3568, 1, 0, 0, 0, 3577, 3569, 1, 0, 0, 0, 3577, 3570, 1, 0, 0, 0, 3577, 3571, 1, 0, 0, 0, 3577, 3572, 1, 0, 0, 0, 3577, 3573, 1, 0, 0, 0, 3577, 3574, 1, 0, 0, 0, 3577, 3575, 1, 0, 0, 0, 3577, 3576, 1, 0, 0, 0, 3578, 325, 1, 0, 0, 0, 3579, 3580, 5, 19, 0, 0, 3580, 3581, 5, 356, 0, 0, 3581, 3582, 3, 326, 163, 0, 3582, 3583, 5, 358, 0, 0, 3583, 3626, 1, 0, 0, 0, 3584, 3585, 5, 177, 0, 0, 3585, 3586, 5, 356, 0, 0, 3586, 3587, 3, 326, 163, 0, 3587, 3588, 5, 4, 0, 0, 3588, 3589, 3, 326, 163, 0, 3589, 3590, 5, 358, 0, 0, 3590, 3626, 1, 0, 0, 0, 3591, 3598, 5, 286, 0, 0, 3592, 3594, 5, 356, 0, 0, 3593, 3595, 3, 354, 177, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3599, 5, 358, 0, 0, 3597, 3599, 5, 354, 0, 0, 3598, 3592, 1, 0, 0, 0, 3598, 3597, 1, 0, 0, 0, 3599, 3626, 1, 0, 0, 0, 3600, 3601, 5, 149, 0, 0, 3601, 3604, 7, 52, 0, 0, 3602, 3603, 5, 309, 0, 0, 3603, 3605, 5, 186, 0, 0, 3604, 3602, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3626, 1, 0, 0, 0, 3606, 3607, 5, 149, 0, 0, 3607, 3610, 7, 53, 0, 0, 3608, 3609, 5, 309, 0, 0, 3609, 3611, 7, 54, 0, 0, 3610, 3608, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3626, 1, 0, 0, 0, 3612, 3623, 3, 324, 162, 0, 3613, 3614, 5, 2, 0, 0, 3614, 3619, 5, 382, 0, 0, 3615, 3616, 5, 4, 0, 0, 3616, 3618, 5, 382, 0, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3624, 5, 3, 0, 0, 3623, 3613, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3626, 1, 0, 0, 0, 3625, 3579, 1, 0, 0, 0, 3625, 3584, 1, 0, 0, 0, 3625, 3591, 1, 0, 0, 0, 3625, 3600, 1, 0, 0, 0, 3625, 3606, 1, 0, 0, 0, 3625, 3612, 1, 0, 0, 0, 3626, 327, 1, 0, 0, 0, 3627, 3632, 3, 330, 165, 0, 3628, 3629, 5, 4, 0, 0, 3629, 3631, 3, 330, 165, 0, 3630, 3628, 1, 0, 0, 0, 3631, 3634, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 329, 1, 0, 0, 0, 3634, 3632, 1, 0, 0, 0, 3635, 3636, 3, 98, 49, 0, 3636, 3640, 3, 326, 163, 0, 3637, 3639, 3, 336, 168, 0, 3638, 3637, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 331, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3648, 3, 334, 167, 0, 3644, 3645, 5, 4, 0, 0, 3645, 3647, 3, 334, 167, 0, 3646, 3644, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 333, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3652, 3, 92, 46, 0, 3652, 3656, 3, 326, 163, 0, 3653, 3655, 3, 336, 168, 0, 3654, 3653, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 335, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 5, 197, 0, 0, 3660, 3665, 5, 198, 0, 0, 3661, 3665, 3, 338, 169, 0, 3662, 3665, 3, 24, 12, 0, 3663, 3665, 3, 322, 161, 0, 3664, 3659, 1, 0, 0, 0, 3664, 3661, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 337, 1, 0, 0, 0, 3666, 3667, 5, 82, 0, 0, 3667, 3668, 3, 276, 138, 0, 3668, 339, 1, 0, 0, 0, 3669, 3670, 7, 55, 0, 0, 3670, 3671, 3, 276, 138, 0, 3671, 341, 1, 0, 0, 0, 3672, 3677, 3, 344, 172, 0, 3673, 3674, 5, 4, 0, 0, 3674, 3676, 3, 344, 172, 0, 3675, 3673, 1, 0, 0, 0, 3676, 3679, 1, 0, 0, 0, 3677, 3675, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 343, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3680, 3681, 3, 380, 190, 0, 3681, 3684, 3, 326, 163, 0, 3682, 3683, 5, 197, 0, 0, 3683, 3685, 5, 198, 0, 0, 3684, 3682, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3688, 3, 24, 12, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 345, 1, 0, 0, 0, 3689, 3694, 3, 348, 174, 0, 3690, 3691, 5, 4, 0, 0, 3691, 3693, 3, 348, 174, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3696, 1, 0, 0, 0, 3694, 3692, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 347, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3698, 3, 98, 49, 0, 3698, 3702, 3, 326, 163, 0, 3699, 3701, 3, 350, 175, 0, 3700, 3699, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 349, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 5, 197, 0, 0, 3706, 3711, 5, 198, 0, 0, 3707, 3711, 3, 338, 169, 0, 3708, 3711, 3, 352, 176, 0, 3709, 3711, 3, 24, 12, 0, 3710, 3705, 1, 0, 0, 0, 3710, 3707, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3709, 1, 0, 0, 0, 3711, 351, 1, 0, 0, 0, 3712, 3713, 5, 127, 0, 0, 3713, 3714, 5, 12, 0, 0, 3714, 3715, 5, 20, 0, 0, 3715, 3716, 5, 2, 0, 0, 3716, 3717, 3, 276, 138, 0, 3717, 3718, 5, 3, 0, 0, 3718, 353, 1, 0, 0, 0, 3719, 3724, 3, 356, 178, 0, 3720, 3721, 5, 4, 0, 0, 3721, 3723, 3, 356, 178, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3726, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 355, 1, 0, 0, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3729, 3, 384, 192, 0, 3728, 3730, 5, 371, 0, 0, 3729, 3728, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3734, 3, 326, 163, 0, 3732, 3733, 5, 197, 0, 0, 3733, 3735, 5, 198, 0, 0, 3734, 3732, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3738, 3, 24, 12, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 357, 1, 0, 0, 0, 3739, 3740, 5, 343, 0, 0, 3740, 3741, 3, 276, 138, 0, 3741, 3742, 5, 300, 0, 0, 3742, 3743, 3, 276, 138, 0, 3743, 359, 1, 0, 0, 0, 3744, 3745, 5, 345, 0, 0, 3745, 3750, 3, 364, 182, 0, 3746, 3747, 5, 4, 0, 0, 3747, 3749, 3, 364, 182, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3752, 1, 0, 0, 0, 3750, 3748, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 361, 1, 0, 0, 0, 3752, 3750, 1, 0, 0, 0, 3753, 3754, 5, 351, 0, 0, 3754, 3755, 5, 31, 0, 0, 3755, 3756, 3, 96, 48, 0, 3756, 363, 1, 0, 0, 0, 3757, 3758, 3, 380, 190, 0, 3758, 3759, 5, 20, 0, 0, 3759, 3760, 3, 366, 183, 0, 3760, 365, 1, 0, 0, 0, 3761, 3801, 3, 380, 190, 0, 3762, 3763, 5, 2, 0, 0, 3763, 3764, 3, 380, 190, 0, 3764, 3765, 5, 3, 0, 0, 3765, 3801, 1, 0, 0, 0, 3766, 3794, 5, 2, 0, 0, 3767, 3768, 5, 44, 0, 0, 3768, 3769, 5, 31, 0, 0, 3769, 3774, 3, 276, 138, 0, 3770, 3771, 5, 4, 0, 0, 3771, 3773, 3, 276, 138, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3776, 1, 0, 0, 0, 3774, 3772, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3795, 1, 0, 0, 0, 3776, 3774, 1, 0, 0, 0, 3777, 3778, 7, 24, 0, 0, 3778, 3779, 5, 31, 0, 0, 3779, 3784, 3, 276, 138, 0, 3780, 3781, 5, 4, 0, 0, 3781, 3783, 3, 276, 138, 0, 3782, 3780, 1, 0, 0, 0, 3783, 3786, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3788, 1, 0, 0, 0, 3786, 3784, 1, 0, 0, 0, 3787, 3777, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3792, 1, 0, 0, 0, 3789, 3790, 7, 25, 0, 0, 3790, 3791, 5, 31, 0, 0, 3791, 3793, 3, 106, 53, 0, 3792, 3789, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3795, 1, 0, 0, 0, 3794, 3767, 1, 0, 0, 0, 3794, 3787, 1, 0, 0, 0, 3795, 3797, 1, 0, 0, 0, 3796, 3798, 3, 368, 184, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 3801, 5, 3, 0, 0, 3800, 3761, 1, 0, 0, 0, 3800, 3762, 1, 0, 0, 0, 3800, 3766, 1, 0, 0, 0, 3801, 367, 1, 0, 0, 0, 3802, 3803, 5, 233, 0, 0, 3803, 3819, 3, 370, 185, 0, 3804, 3805, 5, 258, 0, 0, 3805, 3819, 3, 370, 185, 0, 3806, 3807, 5, 233, 0, 0, 3807, 3808, 5, 24, 0, 0, 3808, 3809, 3, 370, 185, 0, 3809, 3810, 5, 14, 0, 0, 3810, 3811, 3, 370, 185, 0, 3811, 3819, 1, 0, 0, 0, 3812, 3813, 5, 258, 0, 0, 3813, 3814, 5, 24, 0, 0, 3814, 3815, 3, 370, 185, 0, 3815, 3816, 5, 14, 0, 0, 3816, 3817, 3, 370, 185, 0, 3817, 3819, 1, 0, 0, 0, 3818, 3802, 1, 0, 0, 0, 3818, 3804, 1, 0, 0, 0, 3818, 3806, 1, 0, 0, 0, 3818, 3812, 1, 0, 0, 0, 3819, 369, 1, 0, 0, 0, 3820, 3821, 5, 321, 0, 0, 3821, 3828, 7, 56, 0, 0, 3822, 3823, 5, 62, 0, 0, 3823, 3828, 5, 257, 0, 0, 3824, 3825, 3, 276, 138, 0, 3825, 3826, 7, 56, 0, 0, 3826, 3828, 1, 0, 0, 0, 3827, 3820, 1, 0, 0, 0, 3827, 3822, 1, 0, 0, 0, 3827, 3824, 1, 0, 0, 0, 3828, 371, 1, 0, 0, 0, 3829, 3834, 3, 378, 189, 0, 3830, 3831, 5, 4, 0, 0, 3831, 3833, 3, 378, 189, 0, 3832, 3830, 1, 0, 0, 0, 3833, 3836, 1, 0, 0, 0, 3834, 3832, 1, 0, 0, 0, 3834, 3835, 1, 0, 0, 0, 3835, 373, 1, 0, 0, 0, 3836, 3834, 1, 0, 0, 0, 3837, 3838, 5, 136, 0, 0, 3838, 3839, 5, 2, 0, 0, 3839, 3840, 3, 276, 138, 0, 3840, 3841, 5, 3, 0, 0, 3841, 3847, 1, 0, 0, 0, 3842, 3847, 3, 378, 189, 0, 3843, 3847, 5, 114, 0, 0, 3844, 3847, 5, 161, 0, 0, 3845, 3847, 5, 250, 0, 0, 3846, 3837, 1, 0, 0, 0, 3846, 3842, 1, 0, 0, 0, 3846, 3843, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3845, 1, 0, 0, 0, 3847, 375, 1, 0, 0, 0, 3848, 3849, 3, 378, 189, 0, 3849, 377, 1, 0, 0, 0, 3850, 3855, 3, 384, 192, 0, 3851, 3852, 5, 5, 0, 0, 3852, 3854, 3, 384, 192, 0, 3853, 3851, 1, 0, 0, 0, 3854, 3857, 1, 0, 0, 0, 3855, 3853, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 379, 1, 0, 0, 0, 3857, 3855, 1, 0, 0, 0, 3858, 3859, 3, 384, 192, 0, 3859, 3860, 3, 382, 191, 0, 3860, 381, 1, 0, 0, 0, 3861, 3862, 5, 362, 0, 0, 3862, 3864, 3, 384, 192, 0, 3863, 3861, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3869, 1, 0, 0, 0, 3867, 3869, 1, 0, 0, 0, 3868, 3863, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 383, 1, 0, 0, 0, 3870, 3873, 3, 386, 193, 0, 3871, 3873, 3, 404, 202, 0, 3872, 3870, 1, 0, 0, 0, 3872, 3871, 1, 0, 0, 0, 3873, 385, 1, 0, 0, 0, 3874, 3879, 5, 388, 0, 0, 3875, 3879, 3, 388, 194, 0, 3876, 3879, 3, 402, 201, 0, 3877, 3879, 3, 406, 203, 0, 3878, 3874, 1, 0, 0, 0, 3878, 3875, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3877, 1, 0, 0, 0, 3879, 387, 1, 0, 0, 0, 3880, 3881, 7, 57, 0, 0, 3881, 389, 1, 0, 0, 0, 3882, 3883, 5, 389, 0, 0, 3883, 391, 1, 0, 0, 0, 3884, 3886, 5, 362, 0, 0, 3885, 3884, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 3925, 5, 383, 0, 0, 3888, 3890, 5, 362, 0, 0, 3889, 3888, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3925, 5, 384, 0, 0, 3892, 3894, 5, 362, 0, 0, 3893, 3892, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3925, 7, 58, 0, 0, 3896, 3898, 5, 362, 0, 0, 3897, 3896, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3925, 5, 382, 0, 0, 3900, 3902, 5, 362, 0, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3925, 5, 379, 0, 0, 3904, 3906, 5, 362, 0, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3925, 5, 380, 0, 0, 3908, 3910, 5, 362, 0, 0, 3909, 3908, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3925, 5, 381, 0, 0, 3912, 3914, 5, 362, 0, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3925, 5, 386, 0, 0, 3916, 3918, 5, 362, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3925, 5, 385, 0, 0, 3920, 3922, 5, 362, 0, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3925, 5, 387, 0, 0, 3924, 3885, 1, 0, 0, 0, 3924, 3889, 1, 0, 0, 0, 3924, 3893, 1, 0, 0, 0, 3924, 3897, 1, 0, 0, 0, 3924, 3901, 1, 0, 0, 0, 3924, 3905, 1, 0, 0, 0, 3924, 3909, 1, 0, 0, 0, 3924, 3913, 1, 0, 0, 0, 3924, 3917, 1, 0, 0, 0, 3924, 3921, 1, 0, 0, 0, 3925, 393, 1, 0, 0, 0, 3926, 3927, 5, 319, 0, 0, 3927, 3938, 3, 326, 163, 0, 3928, 3938, 3, 24, 12, 0, 3929, 3938, 3, 322, 161, 0, 3930, 3931, 7, 59, 0, 0, 3931, 3932, 5, 197, 0, 0, 3932, 3938, 5, 198, 0, 0, 3933, 3934, 5, 269, 0, 0, 3934, 3938, 3, 338, 169, 0, 3935, 3936, 5, 96, 0, 0, 3936, 3938, 5, 82, 0, 0, 3937, 3926, 1, 0, 0, 0, 3937, 3928, 1, 0, 0, 0, 3937, 3929, 1, 0, 0, 0, 3937, 3930, 1, 0, 0, 0, 3937, 3933, 1, 0, 0, 0, 3937, 3935, 1, 0, 0, 0, 3938, 395, 1, 0, 0, 0, 3939, 3940, 7, 60, 0, 0, 3940, 397, 1, 0, 0, 0, 3941, 3944, 3, 396, 198, 0, 3942, 3944, 5, 198, 0, 0, 3943, 3941, 1, 0, 0, 0, 3943, 3942, 1, 0, 0, 0, 3944, 399, 1, 0, 0, 0, 3945, 3948, 5, 382, 0, 0, 3946, 3948, 3, 396, 198, 0, 3947, 3945, 1, 0, 0, 0, 3947, 3946, 1, 0, 0, 0, 3948, 401, 1, 0, 0, 0, 3949, 3950, 7, 61, 0, 0, 3950, 403, 1, 0, 0, 0, 3951, 3952, 7, 62, 0, 0, 3952, 405, 1, 0, 0, 0, 3953, 3954, 7, 63, 0, 0, 3954, 407, 1, 0, 0, 0, 513, 411, 418, 422, 427, 434, 439, 447, 449, 468, 472, 478, 481, 484, 491, 494, 498, 501, 506, 518, 520, 528, 531, 535, 538, 544, 555, 561, 566, 599, 609, 620, 631, 642, 647, 656, 660, 666, 670, 675, 681, 693, 701, 707, 718, 722, 727, 742, 746, 753, 757, 763, 792, 796, 801, 808, 814, 817, 820, 824, 828, 836, 838, 847, 850, 859, 864, 870, 877, 880, 884, 895, 898, 904, 908, 923, 925, 933, 937, 943, 946, 950, 953, 959, 964, 968, 975, 978, 981, 988, 993, 1002, 1010, 1016, 1019, 1022, 1028, 1032, 1037, 1040, 1044, 1046, 1054, 1062, 1065, 1072, 1075, 1078, 1087, 1092, 1098, 1103, 1106, 1110, 1113, 1117, 1145, 1148, 1156, 1162, 1165, 1168, 1173, 1181, 1186, 1192, 1198, 1201, 1208, 1215, 1223, 1240, 1267, 1270, 1276, 1285, 1294, 1300, 1305, 1310, 1317, 1322, 1327, 1334, 1342, 1345, 1349, 1361, 1365, 1372, 1488, 1496, 1504, 1513, 1523, 1527, 1530, 1534, 1540, 1552, 1564, 1569, 1578, 1586, 1591, 1593, 1601, 1606, 1610, 1613, 1621, 1626, 1635, 1640, 1643, 1648, 1652, 1657, 1659, 1663, 1672, 1680, 1686, 1697, 1704, 1713, 1718, 1721, 1744, 1746, 1758, 1765, 1768, 1775, 1779, 1785, 1793, 1800, 1803, 1811, 1822, 1833, 1841, 1847, 1859, 1866, 1873, 1885, 1893, 1899, 1905, 1908, 1924, 1933, 1944, 1949, 1954, 1959, 1964, 1967, 1970, 1974, 1979, 1986, 1994, 2006, 2012, 2018, 2021, 2023, 2035, 2039, 2042, 2046, 2052, 2056, 2064, 2068, 2071, 2074, 2077, 2081, 2085, 2090, 2094, 2097, 2100, 2103, 2107, 2112, 2116, 2119, 2122, 2125, 2127, 2133, 2140, 2145, 2148, 2151, 2155, 2165, 2169, 2171, 2174, 2178, 2184, 2188, 2199, 2209, 2213, 2225, 2237, 2252, 2257, 2263, 2270, 2286, 2291, 2304, 2309, 2317, 2323, 2327, 2330, 2335, 2342, 2348, 2357, 2367, 2382, 2387, 2389, 2394, 2403, 2416, 2421, 2425, 2432, 2437, 2441, 2444, 2447, 2461, 2474, 2479, 2483, 2486, 2490, 2496, 2499, 2506, 2518, 2529, 2542, 2553, 2558, 2566, 2571, 2585, 2594, 2597, 2602, 2609, 2612, 2618, 2624, 2627, 2632, 2637, 2641, 2647, 2651, 2654, 2659, 2662, 2667, 2671, 2674, 2677, 2683, 2688, 2695, 2698, 2716, 2718, 2721, 2732, 2741, 2748, 2756, 2763, 2768, 2771, 2774, 2782, 2790, 2796, 2804, 2812, 2819, 2826, 2828, 2841, 2847, 2849, 2858, 2860, 2868, 2872, 2881, 2884, 2890, 2894, 2896, 2905, 2917, 2919, 2926, 2933, 2939, 2945, 2947, 2954, 2962, 2970, 2976, 2981, 2988, 2994, 2997, 3001, 3003, 3010, 3019, 3026, 3036, 3041, 3045, 3055, 3062, 3075, 3077, 3085, 3087, 3091, 3099, 3108, 3114, 3122, 3127, 3139, 3144, 3147, 3153, 3157, 3162, 3167, 3172, 3178, 3199, 3201, 3212, 3224, 3236, 3240, 3249, 3253, 3271, 3274, 3282, 3291, 3300, 3323, 3339, 3346, 3349, 3358, 3362, 3366, 3378, 3403, 3410, 3413, 3428, 3449, 3453, 3455, 3465, 3467, 3477, 3492, 3494, 3507, 3511, 3518, 3523, 3531, 3536, 3545, 3577, 3594, 3598, 3604, 3610, 3619, 3623, 3625, 3632, 3640, 3648, 3656, 3664, 3677, 3684, 3687, 3694, 3702, 3710, 3724, 3729, 3734, 3737, 3750, 3774, 3784, 3787, 3792, 3794, 3797, 3800, 3818, 3827, 3834, 3846, 3855, 3865, 3868, 3872, 3878, 3885, 3889, 3893, 3897, 3901, 3905, 3909, 3913, 3917, 3921, 3924, 3937, 3943, 3947] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index c9bb86bd..b78c54a2 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -457,159 +457,163 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_viewNameCreate = 44; public static readonly RULE_viewName = 45; public static readonly RULE_columnName = 46; - public static readonly RULE_columnNameSeq = 47; - public static readonly RULE_columnNameCreate = 48; - public static readonly RULE_identifierReference = 49; - public static readonly RULE_queryOrganization = 50; - public static readonly RULE_multiInsertQueryBody = 51; - public static readonly RULE_queryTerm = 52; - public static readonly RULE_queryPrimary = 53; - public static readonly RULE_sortItem = 54; - public static readonly RULE_fromStatement = 55; - public static readonly RULE_fromStatementBody = 56; - public static readonly RULE_querySpecification = 57; - public static readonly RULE_transformClause = 58; - public static readonly RULE_selectClause = 59; - public static readonly RULE_setClause = 60; - public static readonly RULE_matchedClause = 61; - public static readonly RULE_notMatchedClause = 62; - public static readonly RULE_notMatchedBySourceClause = 63; - public static readonly RULE_matchedAction = 64; - public static readonly RULE_notMatchedAction = 65; - public static readonly RULE_notMatchedBySourceAction = 66; - public static readonly RULE_assignmentList = 67; - public static readonly RULE_assignment = 68; - public static readonly RULE_whereClause = 69; - public static readonly RULE_havingClause = 70; - public static readonly RULE_hint = 71; - public static readonly RULE_hintStatement = 72; - public static readonly RULE_fromClause = 73; - public static readonly RULE_functionKind = 74; - public static readonly RULE_temporalClause = 75; - public static readonly RULE_aggregationClause = 76; - public static readonly RULE_groupByClause = 77; - public static readonly RULE_groupingAnalytics = 78; - public static readonly RULE_groupingElement = 79; - public static readonly RULE_groupingSet = 80; - public static readonly RULE_pivotClause = 81; - public static readonly RULE_pivotColumn = 82; - public static readonly RULE_pivotValue = 83; - public static readonly RULE_unpivotClause = 84; - public static readonly RULE_unpivotNullClause = 85; - public static readonly RULE_unpivotOperator = 86; - public static readonly RULE_unpivotSingleValueColumnClause = 87; - public static readonly RULE_unpivotMultiValueColumnClause = 88; - public static readonly RULE_unpivotColumnSet = 89; - public static readonly RULE_unpivotValueColumn = 90; - public static readonly RULE_unpivotNameColumn = 91; - public static readonly RULE_unpivotColumnAndAlias = 92; - public static readonly RULE_unpivotColumn = 93; - public static readonly RULE_unpivotAlias = 94; - public static readonly RULE_ifNotExists = 95; - public static readonly RULE_ifExists = 96; - public static readonly RULE_lateralView = 97; - public static readonly RULE_setQuantifier = 98; - public static readonly RULE_relation = 99; - public static readonly RULE_relationExtension = 100; - public static readonly RULE_joinRelation = 101; - public static readonly RULE_joinType = 102; - public static readonly RULE_joinCriteria = 103; - public static readonly RULE_sample = 104; - public static readonly RULE_sampleMethod = 105; - public static readonly RULE_identifierList = 106; - public static readonly RULE_identifierSeq = 107; - public static readonly RULE_orderedIdentifierList = 108; - public static readonly RULE_orderedIdentifier = 109; - public static readonly RULE_identifierCommentList = 110; - public static readonly RULE_identifierComment = 111; - public static readonly RULE_relationPrimary = 112; - public static readonly RULE_inlineTable = 113; - public static readonly RULE_functionTableSubqueryArgument = 114; - public static readonly RULE_tableArgumentPartitioning = 115; - public static readonly RULE_functionTableNamedArgumentExpression = 116; - public static readonly RULE_functionTableReferenceArgument = 117; - public static readonly RULE_functionTableArgument = 118; - public static readonly RULE_functionTable = 119; - public static readonly RULE_tableAlias = 120; - public static readonly RULE_rowFormat = 121; - public static readonly RULE_multipartIdentifierList = 122; - public static readonly RULE_multipartIdentifier = 123; - public static readonly RULE_multipartIdentifierPropertyList = 124; - public static readonly RULE_multipartIdentifierProperty = 125; - public static readonly RULE_tableIdentifier = 126; - public static readonly RULE_viewIdentifier = 127; - public static readonly RULE_namedExpression = 128; - public static readonly RULE_namedExpressionSeq = 129; - public static readonly RULE_partitionFieldList = 130; - public static readonly RULE_partitionField = 131; - public static readonly RULE_transform = 132; - public static readonly RULE_transformArgument = 133; - public static readonly RULE_expression = 134; - public static readonly RULE_namedArgumentExpression = 135; - public static readonly RULE_functionArgument = 136; - public static readonly RULE_expressionSeq = 137; - public static readonly RULE_booleanExpression = 138; - public static readonly RULE_predicate = 139; - public static readonly RULE_valueExpression = 140; - public static readonly RULE_datetimeUnit = 141; - public static readonly RULE_primaryExpression = 142; - public static readonly RULE_literalType = 143; - public static readonly RULE_constant = 144; - public static readonly RULE_comparisonOperator = 145; - public static readonly RULE_arithmeticOperator = 146; - public static readonly RULE_predicateOperator = 147; - public static readonly RULE_booleanValue = 148; - public static readonly RULE_interval = 149; - public static readonly RULE_errorCapturingMultiUnitsInterval = 150; - public static readonly RULE_multiUnitsInterval = 151; - public static readonly RULE_errorCapturingUnitToUnitInterval = 152; - public static readonly RULE_unitToUnitInterval = 153; - public static readonly RULE_intervalValue = 154; - public static readonly RULE_unitInMultiUnits = 155; - public static readonly RULE_unitInUnitToUnit = 156; - public static readonly RULE_colPosition = 157; - public static readonly RULE_type = 158; - public static readonly RULE_dataType = 159; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 160; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 161; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 162; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 163; - public static readonly RULE_colDefinitionDescriptorWithPosition = 164; - public static readonly RULE_defaultExpression = 165; - public static readonly RULE_variableDefaultExpression = 166; - public static readonly RULE_colTypeList = 167; - public static readonly RULE_columnType = 168; - public static readonly RULE_createOrReplaceTableColTypeList = 169; - public static readonly RULE_createOrReplaceTableColType = 170; - public static readonly RULE_colDefinitionOption = 171; - public static readonly RULE_generationExpression = 172; - public static readonly RULE_complexColTypeList = 173; - public static readonly RULE_complexColType = 174; - public static readonly RULE_whenClause = 175; - public static readonly RULE_windowClause = 176; - public static readonly RULE_zorderClause = 177; - public static readonly RULE_namedWindow = 178; - public static readonly RULE_windowSpec = 179; - public static readonly RULE_windowFrame = 180; - public static readonly RULE_frameBound = 181; - public static readonly RULE_qualifiedNameList = 182; - public static readonly RULE_functionName = 183; - public static readonly RULE_functionNameCreate = 184; - public static readonly RULE_qualifiedName = 185; - public static readonly RULE_errorCapturingIdentifier = 186; - public static readonly RULE_errorCapturingIdentifierExtra = 187; - public static readonly RULE_identifier = 188; - public static readonly RULE_strictIdentifier = 189; - public static readonly RULE_quotedIdentifier = 190; - public static readonly RULE_backQuotedIdentifier = 191; - public static readonly RULE_number = 192; - public static readonly RULE_alterColumnAction = 193; - public static readonly RULE_stringLit = 194; - public static readonly RULE_commentStr = 195; - public static readonly RULE_version = 196; - public static readonly RULE_ansiNonReserved = 197; - public static readonly RULE_strictNonReserved = 198; - public static readonly RULE_nonReserved = 199; + public static readonly RULE_columnNamePath = 47; + public static readonly RULE_columnNameSeq = 48; + public static readonly RULE_columnNameCreate = 49; + public static readonly RULE_identifierReference = 50; + public static readonly RULE_queryOrganization = 51; + public static readonly RULE_limitClause = 52; + public static readonly RULE_orderOrSortByClause = 53; + public static readonly RULE_clusterOrDistributeBy = 54; + public static readonly RULE_multiInsertQueryBody = 55; + public static readonly RULE_queryTerm = 56; + public static readonly RULE_queryPrimary = 57; + public static readonly RULE_sortItem = 58; + public static readonly RULE_fromStatement = 59; + public static readonly RULE_fromStatementBody = 60; + public static readonly RULE_querySpecification = 61; + public static readonly RULE_transformClause = 62; + public static readonly RULE_selectClause = 63; + public static readonly RULE_setClause = 64; + public static readonly RULE_matchedClause = 65; + public static readonly RULE_notMatchedClause = 66; + public static readonly RULE_notMatchedBySourceClause = 67; + public static readonly RULE_matchedAction = 68; + public static readonly RULE_notMatchedAction = 69; + public static readonly RULE_notMatchedBySourceAction = 70; + public static readonly RULE_assignmentList = 71; + public static readonly RULE_assignment = 72; + public static readonly RULE_whereClause = 73; + public static readonly RULE_havingClause = 74; + public static readonly RULE_hint = 75; + public static readonly RULE_hintStatement = 76; + public static readonly RULE_fromClause = 77; + public static readonly RULE_functionKind = 78; + public static readonly RULE_temporalClause = 79; + public static readonly RULE_aggregationClause = 80; + public static readonly RULE_groupByClause = 81; + public static readonly RULE_groupingAnalytics = 82; + public static readonly RULE_groupingElement = 83; + public static readonly RULE_groupingSet = 84; + public static readonly RULE_pivotClause = 85; + public static readonly RULE_pivotColumn = 86; + public static readonly RULE_pivotValue = 87; + public static readonly RULE_unpivotClause = 88; + public static readonly RULE_unpivotNullClause = 89; + public static readonly RULE_unpivotOperator = 90; + public static readonly RULE_unpivotSingleValueColumnClause = 91; + public static readonly RULE_unpivotMultiValueColumnClause = 92; + public static readonly RULE_unpivotColumnSet = 93; + public static readonly RULE_unpivotValueColumn = 94; + public static readonly RULE_unpivotNameColumn = 95; + public static readonly RULE_unpivotColumnAndAlias = 96; + public static readonly RULE_unpivotColumn = 97; + public static readonly RULE_unpivotAlias = 98; + public static readonly RULE_ifNotExists = 99; + public static readonly RULE_ifExists = 100; + public static readonly RULE_lateralView = 101; + public static readonly RULE_setQuantifier = 102; + public static readonly RULE_relation = 103; + public static readonly RULE_relationExtension = 104; + public static readonly RULE_joinRelation = 105; + public static readonly RULE_joinType = 106; + public static readonly RULE_joinCriteria = 107; + public static readonly RULE_sample = 108; + public static readonly RULE_sampleMethod = 109; + public static readonly RULE_identifierList = 110; + public static readonly RULE_identifierSeq = 111; + public static readonly RULE_orderedIdentifierList = 112; + public static readonly RULE_orderedIdentifier = 113; + public static readonly RULE_identifierCommentList = 114; + public static readonly RULE_identifierComment = 115; + public static readonly RULE_relationPrimary = 116; + public static readonly RULE_inlineTable = 117; + public static readonly RULE_functionTableSubqueryArgument = 118; + public static readonly RULE_tableArgumentPartitioning = 119; + public static readonly RULE_functionTableNamedArgumentExpression = 120; + public static readonly RULE_functionTableReferenceArgument = 121; + public static readonly RULE_functionTableArgument = 122; + public static readonly RULE_functionTable = 123; + public static readonly RULE_tableAlias = 124; + public static readonly RULE_rowFormat = 125; + public static readonly RULE_multipartIdentifierList = 126; + public static readonly RULE_multipartIdentifier = 127; + public static readonly RULE_multipartIdentifierPropertyList = 128; + public static readonly RULE_multipartIdentifierProperty = 129; + public static readonly RULE_tableIdentifier = 130; + public static readonly RULE_viewIdentifier = 131; + public static readonly RULE_namedExpression = 132; + public static readonly RULE_namedExpressionSeq = 133; + public static readonly RULE_partitionFieldList = 134; + public static readonly RULE_partitionField = 135; + public static readonly RULE_transform = 136; + public static readonly RULE_transformArgument = 137; + public static readonly RULE_expression = 138; + public static readonly RULE_namedArgumentExpression = 139; + public static readonly RULE_functionArgument = 140; + public static readonly RULE_expressionSeq = 141; + public static readonly RULE_booleanExpression = 142; + public static readonly RULE_predicate = 143; + public static readonly RULE_valueExpression = 144; + public static readonly RULE_datetimeUnit = 145; + public static readonly RULE_primaryExpression = 146; + public static readonly RULE_literalType = 147; + public static readonly RULE_constant = 148; + public static readonly RULE_comparisonOperator = 149; + public static readonly RULE_arithmeticOperator = 150; + public static readonly RULE_predicateOperator = 151; + public static readonly RULE_booleanValue = 152; + public static readonly RULE_interval = 153; + public static readonly RULE_errorCapturingMultiUnitsInterval = 154; + public static readonly RULE_multiUnitsInterval = 155; + public static readonly RULE_errorCapturingUnitToUnitInterval = 156; + public static readonly RULE_unitToUnitInterval = 157; + public static readonly RULE_intervalValue = 158; + public static readonly RULE_unitInMultiUnits = 159; + public static readonly RULE_unitInUnitToUnit = 160; + public static readonly RULE_colPosition = 161; + public static readonly RULE_type = 162; + public static readonly RULE_dataType = 163; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 164; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 165; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 166; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 167; + public static readonly RULE_colDefinitionDescriptorWithPosition = 168; + public static readonly RULE_defaultExpression = 169; + public static readonly RULE_variableDefaultExpression = 170; + public static readonly RULE_colTypeList = 171; + public static readonly RULE_columnType = 172; + public static readonly RULE_createOrReplaceTableColTypeList = 173; + public static readonly RULE_createOrReplaceTableColType = 174; + public static readonly RULE_colDefinitionOption = 175; + public static readonly RULE_generationExpression = 176; + public static readonly RULE_complexColTypeList = 177; + public static readonly RULE_complexColType = 178; + public static readonly RULE_whenClause = 179; + public static readonly RULE_windowClause = 180; + public static readonly RULE_zorderClause = 181; + public static readonly RULE_namedWindow = 182; + public static readonly RULE_windowSpec = 183; + public static readonly RULE_windowFrame = 184; + public static readonly RULE_frameBound = 185; + public static readonly RULE_qualifiedNameList = 186; + public static readonly RULE_functionName = 187; + public static readonly RULE_functionNameCreate = 188; + public static readonly RULE_qualifiedName = 189; + public static readonly RULE_errorCapturingIdentifier = 190; + public static readonly RULE_errorCapturingIdentifierExtra = 191; + public static readonly RULE_identifier = 192; + public static readonly RULE_strictIdentifier = 193; + public static readonly RULE_quotedIdentifier = 194; + public static readonly RULE_backQuotedIdentifier = 195; + public static readonly RULE_number = 196; + public static readonly RULE_alterColumnAction = 197; + public static readonly RULE_stringLit = 198; + public static readonly RULE_commentStr = 199; + public static readonly RULE_version = 200; + public static readonly RULE_ansiNonReserved = 201; + public static readonly RULE_strictNonReserved = 202; + public static readonly RULE_nonReserved = 203; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -769,8 +773,9 @@ export class SparkSqlParser extends SQLParserBase { "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", "fileFormat", "storageHandler", "resource", "dmlStatementNoWith", "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", - "viewNameCreate", "viewName", "columnName", "columnNameSeq", "columnNameCreate", - "identifierReference", "queryOrganization", "multiInsertQueryBody", + "viewNameCreate", "viewName", "columnName", "columnNamePath", "columnNameSeq", + "columnNameCreate", "identifierReference", "queryOrganization", + "limitClause", "orderOrSortByClause", "clusterOrDistributeBy", "multiInsertQueryBody", "queryTerm", "queryPrimary", "sortItem", "fromStatement", "fromStatementBody", "querySpecification", "transformClause", "selectClause", "setClause", "matchedClause", "notMatchedClause", "notMatchedBySourceClause", @@ -835,21 +840,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 400; + this.state = 408; this.singleStatement(); } } - this.state = 405; + this.state = 413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 406; + this.state = 414; this.match(SparkSqlParser.EOF); } } @@ -874,14 +879,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 408; + this.state = 416; this.statement(); - this.state = 410; + this.state = 418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 409; + this.state = 417; this.match(SparkSqlParser.SEMICOLON); } } @@ -908,14 +913,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1337; + this.state = 1345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 412; + this.state = 420; this.query(); } break; @@ -923,17 +928,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 414; + this.state = 422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 413; + this.state = 421; this.ctes(); } } - this.state = 416; + this.state = 424; this.dmlStatementNoWith(); } break; @@ -941,19 +946,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 417; + this.state = 425; this.match(SparkSqlParser.KW_USE); - this.state = 419; + this.state = 427; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 418; + this.state = 426; this.namespace(); } break; } - this.state = 421; + this.state = 429; this.namespaceName(); } break; @@ -961,22 +966,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 430; this.match(SparkSqlParser.KW_SET); - this.state = 423; + this.state = 431; this.match(SparkSqlParser.KW_CATALOG); - this.state = 426; + this.state = 434; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 424; + this.state = 432; this.identifier(); } break; case 2: { - this.state = 425; + this.state = 433; this.stringLit(); } break; @@ -987,49 +992,49 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 428; + this.state = 436; this.match(SparkSqlParser.KW_CREATE); - this.state = 429; + this.state = 437; this.namespace(); - this.state = 431; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 430; + this.state = 438; this.ifNotExists(); } break; } - this.state = 433; - this.namespaceNameCreate(); this.state = 441; + this.namespaceNameCreate(); + this.state = 449; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 439; + this.state = 447; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 434; + this.state = 442; this.commentSpec(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 435; + this.state = 443; this.locationSpec(); } break; case SparkSqlParser.KW_WITH: { { - this.state = 436; + this.state = 444; this.match(SparkSqlParser.KW_WITH); - this.state = 437; + this.state = 445; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1038,7 +1043,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 446; this.propertyList(); } } @@ -1048,7 +1053,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 443; + this.state = 451; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1058,15 +1063,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 444; + this.state = 452; this.match(SparkSqlParser.KW_ALTER); - this.state = 445; + this.state = 453; this.namespace(); - this.state = 446; + this.state = 454; this.namespaceName(); - this.state = 447; + this.state = 455; this.match(SparkSqlParser.KW_SET); - this.state = 448; + this.state = 456; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1075,7 +1080,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 449; + this.state = 457; this.propertyList(); } break; @@ -1083,15 +1088,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 451; + this.state = 459; this.match(SparkSqlParser.KW_ALTER); - this.state = 452; + this.state = 460; this.namespace(); - this.state = 453; + this.state = 461; this.namespaceName(); - this.state = 454; + this.state = 462; this.match(SparkSqlParser.KW_SET); - this.state = 455; + this.state = 463; this.locationSpec(); } break; @@ -1099,28 +1104,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 457; + this.state = 465; this.match(SparkSqlParser.KW_DROP); - this.state = 458; + this.state = 466; this.namespace(); - this.state = 460; + this.state = 468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 459; + this.state = 467; this.ifExists(); } break; } - this.state = 462; + this.state = 470; this.namespaceName(); - this.state = 464; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 463; + this.state = 471; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1138,16 +1143,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 466; + this.state = 474; this.match(SparkSqlParser.KW_SHOW); - this.state = 467; + this.state = 475; this.namespaces(); - this.state = 470; + this.state = 478; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 468; + this.state = 476; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1156,27 +1161,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 469; + this.state = 477; this.multipartIdentifier(); } break; } - this.state = 476; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 473; + this.state = 481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 472; + this.state = 480; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 475; + this.state = 483; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1187,50 +1192,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 478; + this.state = 486; this.createTableHeader(); - this.state = 483; + this.state = 491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 479; + this.state = 487; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 480; + this.state = 488; this.createOrReplaceTableColTypeList(); - this.state = 481; + this.state = 489; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 486; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 485; + this.state = 493; this.tableProvider(); } } - this.state = 488; + this.state = 496; this.createTableClauses(); - this.state = 493; + this.state = 501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 490; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 489; + this.state = 497; this.match(SparkSqlParser.KW_AS); } } - this.state = 492; + this.state = 500; this.query(); } break; @@ -1241,71 +1246,71 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 495; + this.state = 503; this.match(SparkSqlParser.KW_CREATE); - this.state = 496; + this.state = 504; this.match(SparkSqlParser.KW_TABLE); - this.state = 498; + this.state = 506; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: { - this.state = 497; + this.state = 505; this.ifNotExists(); } break; } - this.state = 500; + this.state = 508; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 501; + this.state = 509; this.match(SparkSqlParser.KW_LIKE); - this.state = 502; + this.state = 510; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 512; + this.state = 520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 510; + this.state = 518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 503; + this.state = 511; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 504; + this.state = 512; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 505; + this.state = 513; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 506; + this.state = 514; this.locationSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 507; + this.state = 515; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 508; + this.state = 516; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 509; + this.state = 517; this.tableLifecycle(); } break; @@ -1313,7 +1318,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 514; + this.state = 522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1323,50 +1328,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 515; + this.state = 523; this.replaceTableHeader(); - this.state = 520; + this.state = 528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 516; + this.state = 524; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 517; + this.state = 525; this.createOrReplaceTableColTypeList(); - this.state = 518; + this.state = 526; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 523; + this.state = 531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 522; + this.state = 530; this.tableProvider(); } } - this.state = 525; + this.state = 533; this.createTableClauses(); - this.state = 530; + this.state = 538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 527; + this.state = 535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 526; + this.state = 534; this.match(SparkSqlParser.KW_AS); } } - this.state = 529; + this.state = 537; this.query(); } break; @@ -1377,52 +1382,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 532; + this.state = 540; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 533; + this.state = 541; this.match(SparkSqlParser.KW_TABLE); - this.state = 534; + this.state = 542; this.tableName(); - this.state = 536; + this.state = 544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 535; + this.state = 543; this.partitionSpec(); } } - this.state = 538; + this.state = 546; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 539; - this.match(SparkSqlParser.KW_STATISTICS); this.state = 547; + this.match(SparkSqlParser.KW_STATISTICS); + this.state = 555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 540; + this.state = 548; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 541; + this.state = 549; this.match(SparkSqlParser.KW_FOR); - this.state = 542; + this.state = 550; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 543; + this.state = 551; this.columnNameSeq(); } break; case 3: { - this.state = 544; + this.state = 552; this.match(SparkSqlParser.KW_FOR); - this.state = 545; + this.state = 553; this.match(SparkSqlParser.KW_ALL); - this.state = 546; + this.state = 554; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1433,16 +1438,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 549; + this.state = 557; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 550; + this.state = 558; this.match(SparkSqlParser.KW_TABLES); - this.state = 553; + this.state = 561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 551; + this.state = 559; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1451,21 +1456,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 552; + this.state = 560; this.namespaceName(); } } - this.state = 555; + this.state = 563; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 556; + this.state = 564; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 558; + this.state = 566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 557; + this.state = 565; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1476,17 +1481,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 560; + this.state = 568; this.match(SparkSqlParser.KW_ALTER); - this.state = 561; + this.state = 569; this.match(SparkSqlParser.KW_TABLE); - this.state = 562; + this.state = 570; this.tableName(); - this.state = 563; + this.state = 571; this.match(SparkSqlParser.KW_ADD); - this.state = 564; + this.state = 572; this.match(SparkSqlParser.KW_COLUMN); - this.state = 565; + this.state = 573; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1494,21 +1499,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 567; + this.state = 575; this.match(SparkSqlParser.KW_ALTER); - this.state = 568; + this.state = 576; this.match(SparkSqlParser.KW_TABLE); - this.state = 569; + this.state = 577; this.tableName(); - this.state = 570; + this.state = 578; this.match(SparkSqlParser.KW_ADD); - this.state = 571; + this.state = 579; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 572; + this.state = 580; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 573; + this.state = 581; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 574; + this.state = 582; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1516,21 +1521,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 576; + this.state = 584; this.match(SparkSqlParser.KW_ALTER); - this.state = 577; + this.state = 585; this.match(SparkSqlParser.KW_TABLE); - this.state = 578; + this.state = 586; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 579; + this.state = 587; this.match(SparkSqlParser.KW_RENAME); - this.state = 580; + this.state = 588; this.match(SparkSqlParser.KW_COLUMN); - this.state = 581; + this.state = 589; this.columnName(); - this.state = 582; + this.state = 590; this.match(SparkSqlParser.KW_TO); - this.state = 583; + this.state = 591; this.columnNameCreate(); } break; @@ -1538,27 +1543,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 585; + this.state = 593; this.match(SparkSqlParser.KW_ALTER); - this.state = 586; + this.state = 594; this.match(SparkSqlParser.KW_TABLE); - this.state = 587; + this.state = 595; this.tableName(); - this.state = 588; + this.state = 596; this.match(SparkSqlParser.KW_DROP); - this.state = 589; + this.state = 597; this.match(SparkSqlParser.KW_COLUMN); - this.state = 591; + this.state = 599; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 590; + this.state = 598; this.ifExists(); } break; } - this.state = 593; + this.state = 601; this.columnName(); } break; @@ -1566,31 +1571,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 595; + this.state = 603; this.match(SparkSqlParser.KW_ALTER); - this.state = 596; + this.state = 604; this.match(SparkSqlParser.KW_TABLE); - this.state = 597; + this.state = 605; this.tableName(); - this.state = 598; + this.state = 606; this.match(SparkSqlParser.KW_DROP); - this.state = 599; + this.state = 607; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 601; + this.state = 609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 600; + this.state = 608; this.ifExists(); } } - this.state = 603; + this.state = 611; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 604; + this.state = 612; this.columnNameSeq(); - this.state = 605; + this.state = 613; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1598,35 +1603,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 607; + this.state = 615; this.match(SparkSqlParser.KW_ALTER); - this.state = 612; + this.state = 620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 608; + this.state = 616; this.match(SparkSqlParser.KW_TABLE); - this.state = 609; + this.state = 617; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 610; + this.state = 618; this.match(SparkSqlParser.KW_VIEW); - this.state = 611; + this.state = 619; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 614; + this.state = 622; this.match(SparkSqlParser.KW_RENAME); - this.state = 615; + this.state = 623; this.match(SparkSqlParser.KW_TO); - this.state = 616; + this.state = 624; this.multipartIdentifier(); } break; @@ -1634,35 +1639,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 618; + this.state = 626; this.match(SparkSqlParser.KW_ALTER); - this.state = 623; + this.state = 631; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 619; + this.state = 627; this.match(SparkSqlParser.KW_TABLE); - this.state = 620; + this.state = 628; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 621; + this.state = 629; this.match(SparkSqlParser.KW_VIEW); - this.state = 622; + this.state = 630; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 625; + this.state = 633; this.match(SparkSqlParser.KW_SET); - this.state = 626; + this.state = 634; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 627; + this.state = 635; this.propertyList(); } break; @@ -1670,45 +1675,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 629; + this.state = 637; this.match(SparkSqlParser.KW_ALTER); - this.state = 634; + this.state = 642; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 630; + this.state = 638; this.match(SparkSqlParser.KW_TABLE); - this.state = 631; + this.state = 639; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 632; + this.state = 640; this.match(SparkSqlParser.KW_VIEW); - this.state = 633; + this.state = 641; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 636; + this.state = 644; this.match(SparkSqlParser.KW_UNSET); - this.state = 637; + this.state = 645; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 639; + this.state = 647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 638; + this.state = 646; this.ifExists(); } } - this.state = 641; + this.state = 649; this.propertyList(); } break; @@ -1716,13 +1721,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 643; + this.state = 651; this.match(SparkSqlParser.KW_ALTER); - this.state = 644; + this.state = 652; this.match(SparkSqlParser.KW_TABLE); - this.state = 645; + this.state = 653; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 646; + this.state = 654; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1731,24 +1736,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 648; + this.state = 656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: { - this.state = 647; + this.state = 655; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 650; + this.state = 658; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 652; + this.state = 660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: { - this.state = 651; + this.state = 659; this.alterColumnAction(); } break; @@ -1759,44 +1764,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 654; + this.state = 662; this.match(SparkSqlParser.KW_ALTER); - this.state = 655; + this.state = 663; this.match(SparkSqlParser.KW_TABLE); - this.state = 656; + this.state = 664; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 658; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 657; + this.state = 665; this.partitionSpec(); } } - this.state = 660; + this.state = 668; this.match(SparkSqlParser.KW_CHANGE); - this.state = 662; + this.state = 670; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 661; + this.state = 669; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 664; + this.state = 672; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 665; + this.state = 673; this.columnType(); - this.state = 667; + this.state = 675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 666; + this.state = 674; this.colPosition(); } } @@ -1807,31 +1812,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 669; + this.state = 677; this.match(SparkSqlParser.KW_ALTER); - this.state = 670; + this.state = 678; this.match(SparkSqlParser.KW_TABLE); - this.state = 671; + this.state = 679; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 673; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 672; + this.state = 680; this.partitionSpec(); } } - this.state = 675; + this.state = 683; this.match(SparkSqlParser.KW_REPLACE); - this.state = 676; + this.state = 684; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 677; + this.state = 685; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 678; + this.state = 686; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 679; + this.state = 687; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1839,38 +1844,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 681; + this.state = 689; this.match(SparkSqlParser.KW_ALTER); - this.state = 682; + this.state = 690; this.match(SparkSqlParser.KW_TABLE); - this.state = 683; + this.state = 691; this.tableName(); - this.state = 685; + this.state = 693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 684; + this.state = 692; this.partitionSpec(); } } - this.state = 687; + this.state = 695; this.match(SparkSqlParser.KW_SET); - this.state = 688; + this.state = 696; this.match(SparkSqlParser.KW_SERDE); - this.state = 689; + this.state = 697; this.stringLit(); - this.state = 693; + this.state = 701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 690; + this.state = 698; this.match(SparkSqlParser.KW_WITH); - this.state = 691; + this.state = 699; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 692; + this.state = 700; this.propertyList(); } break; @@ -1881,27 +1886,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 695; + this.state = 703; this.match(SparkSqlParser.KW_ALTER); - this.state = 696; + this.state = 704; this.match(SparkSqlParser.KW_TABLE); - this.state = 697; + this.state = 705; this.tableName(); - this.state = 699; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 698; + this.state = 706; this.partitionSpec(); } } - this.state = 701; + this.state = 709; this.match(SparkSqlParser.KW_SET); - this.state = 702; + this.state = 710; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 703; + this.state = 711; this.propertyList(); } break; @@ -1909,53 +1914,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 705; + this.state = 713; this.match(SparkSqlParser.KW_ALTER); - this.state = 710; + this.state = 718; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 706; + this.state = 714; this.match(SparkSqlParser.KW_TABLE); - this.state = 707; + this.state = 715; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 708; + this.state = 716; this.match(SparkSqlParser.KW_VIEW); - this.state = 709; + this.state = 717; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 712; + this.state = 720; this.match(SparkSqlParser.KW_ADD); - this.state = 714; + this.state = 722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 713; + this.state = 721; this.ifNotExists(); } } - this.state = 717; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 716; + this.state = 724; this.partitionSpecLocation(); } } - this.state = 719; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -1965,19 +1970,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 721; + this.state = 729; this.match(SparkSqlParser.KW_ALTER); - this.state = 722; + this.state = 730; this.match(SparkSqlParser.KW_TABLE); - this.state = 723; + this.state = 731; this.tableName(); - this.state = 724; + this.state = 732; this.partitionSpec(); - this.state = 725; + this.state = 733; this.match(SparkSqlParser.KW_RENAME); - this.state = 726; + this.state = 734; this.match(SparkSqlParser.KW_TO); - this.state = 727; + this.state = 735; this.partitionSpec(); } break; @@ -1985,66 +1990,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 729; + this.state = 737; this.match(SparkSqlParser.KW_ALTER); - this.state = 734; + this.state = 742; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 730; + this.state = 738; this.match(SparkSqlParser.KW_TABLE); - this.state = 731; + this.state = 739; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 732; + this.state = 740; this.match(SparkSqlParser.KW_VIEW); - this.state = 733; + this.state = 741; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 736; + this.state = 744; this.match(SparkSqlParser.KW_DROP); - this.state = 738; + this.state = 746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 737; + this.state = 745; this.ifExists(); } } - this.state = 740; + this.state = 748; this.partitionSpec(); - this.state = 745; + this.state = 753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 741; + this.state = 749; this.match(SparkSqlParser.COMMA); - this.state = 742; + this.state = 750; this.partitionSpec(); } } - this.state = 747; + this.state = 755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 749; + this.state = 757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 748; + this.state = 756; this.match(SparkSqlParser.KW_PURGE); } } @@ -2055,25 +2060,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 751; + this.state = 759; this.match(SparkSqlParser.KW_ALTER); - this.state = 752; + this.state = 760; this.match(SparkSqlParser.KW_TABLE); - this.state = 753; + this.state = 761; this.tableName(); - this.state = 755; + this.state = 763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 754; + this.state = 762; this.partitionSpec(); } } - this.state = 757; + this.state = 765; this.match(SparkSqlParser.KW_SET); - this.state = 758; + this.state = 766; this.locationSpec(); } break; @@ -2081,15 +2086,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 760; + this.state = 768; this.match(SparkSqlParser.KW_ALTER); - this.state = 761; + this.state = 769; this.match(SparkSqlParser.KW_TABLE); - this.state = 762; + this.state = 770; this.tableName(); - this.state = 763; + this.state = 771; this.match(SparkSqlParser.KW_RECOVER); - this.state = 764; + this.state = 772; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2097,15 +2102,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 766; + this.state = 774; this.match(SparkSqlParser.KW_ALTER); - this.state = 767; + this.state = 775; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 768; + this.state = 776; this.match(SparkSqlParser.KW_VIEW); - this.state = 769; + this.state = 777; this.viewName(); - this.state = 770; + this.state = 778; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2114,7 +2119,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 771; + this.state = 779; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2122,19 +2127,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 773; + this.state = 781; this.match(SparkSqlParser.KW_ALTER); - this.state = 774; + this.state = 782; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 775; + this.state = 783; this.match(SparkSqlParser.KW_VIEW); - this.state = 776; + this.state = 784; this.viewName(); - this.state = 777; + this.state = 785; this.match(SparkSqlParser.KW_SET); - this.state = 778; + this.state = 786; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 779; + this.state = 787; this.propertyList(); } break; @@ -2142,28 +2147,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 781; + this.state = 789; this.match(SparkSqlParser.KW_DROP); - this.state = 782; + this.state = 790; this.match(SparkSqlParser.KW_TABLE); - this.state = 784; + this.state = 792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 783; + this.state = 791; this.ifExists(); } break; } - this.state = 786; + this.state = 794; this.tableName(); - this.state = 788; + this.state = 796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 787; + this.state = 795; this.match(SparkSqlParser.KW_PURGE); } } @@ -2174,21 +2179,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 790; + this.state = 798; this.match(SparkSqlParser.KW_DROP); - this.state = 791; + this.state = 799; this.match(SparkSqlParser.KW_VIEW); - this.state = 793; + this.state = 801; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 792; + this.state = 800; this.ifExists(); } break; } - this.state = 795; + this.state = 803; this.viewName(); } break; @@ -2196,23 +2201,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 796; + this.state = 804; this.match(SparkSqlParser.KW_DROP); - this.state = 797; + this.state = 805; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 798; + this.state = 806; this.match(SparkSqlParser.KW_VIEW); - this.state = 800; + this.state = 808; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 799; + this.state = 807; this.ifExists(); } break; } - this.state = 802; + this.state = 810; this.viewName(); } break; @@ -2220,86 +2225,86 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 803; + this.state = 811; this.match(SparkSqlParser.KW_CREATE); - this.state = 806; + this.state = 814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 804; + this.state = 812; this.match(SparkSqlParser.KW_OR); - this.state = 805; + this.state = 813; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 812; + this.state = 820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 809; + this.state = 817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 808; + this.state = 816; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 811; + this.state = 819; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 814; + this.state = 822; this.match(SparkSqlParser.KW_VIEW); - this.state = 816; + this.state = 824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 815; + this.state = 823; this.ifNotExists(); } break; } - this.state = 818; + this.state = 826; this.viewNameCreate(); - this.state = 820; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 819; + this.state = 827; this.identifierCommentList(); } } - this.state = 830; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 828; + this.state = 836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 822; + this.state = 830; this.commentSpec(); } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 823; + this.state = 831; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 824; + this.state = 832; this.match(SparkSqlParser.KW_ON); - this.state = 825; + this.state = 833; this.identifierList(); } } @@ -2307,9 +2312,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 826; + this.state = 834; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 827; + this.state = 835; this.propertyList(); } } @@ -2318,13 +2323,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 832; + this.state = 840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 841; this.match(SparkSqlParser.KW_AS); - this.state = 834; + this.state = 842; this.query(); } break; @@ -2332,60 +2337,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 836; + this.state = 844; this.match(SparkSqlParser.KW_CREATE); - this.state = 839; + this.state = 847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 837; + this.state = 845; this.match(SparkSqlParser.KW_OR); - this.state = 838; + this.state = 846; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 842; + this.state = 850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 841; + this.state = 849; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 844; + this.state = 852; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 845; + this.state = 853; this.match(SparkSqlParser.KW_VIEW); - this.state = 846; + this.state = 854; this.viewNameCreate(); - this.state = 851; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 847; + this.state = 855; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 848; + this.state = 856; this.colTypeList(); - this.state = 849; + this.state = 857; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 853; + this.state = 861; this.tableProvider(); - this.state = 856; + this.state = 864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 854; + this.state = 862; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 855; + this.state = 863; this.propertyList(); } } @@ -2396,23 +2401,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 858; + this.state = 866; this.match(SparkSqlParser.KW_ALTER); - this.state = 859; + this.state = 867; this.match(SparkSqlParser.KW_VIEW); - this.state = 860; + this.state = 868; this.viewName(); - this.state = 862; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 861; + this.state = 869; this.match(SparkSqlParser.KW_AS); } } - this.state = 864; + this.state = 872; this.query(); } break; @@ -2420,70 +2425,70 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 866; + this.state = 874; this.match(SparkSqlParser.KW_CREATE); - this.state = 869; + this.state = 877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 867; + this.state = 875; this.match(SparkSqlParser.KW_OR); - this.state = 868; + this.state = 876; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 872; + this.state = 880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 871; + this.state = 879; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 874; + this.state = 882; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 876; + this.state = 884; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 875; + this.state = 883; this.ifNotExists(); } break; } - this.state = 878; + this.state = 886; this.functionNameCreate(); - this.state = 879; + this.state = 887; this.match(SparkSqlParser.KW_AS); - this.state = 880; + this.state = 888; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 890; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 881; + this.state = 889; this.match(SparkSqlParser.KW_USING); - this.state = 882; + this.state = 890; this.resource(); - this.state = 887; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 883; + this.state = 891; this.match(SparkSqlParser.COMMA); - this.state = 884; + this.state = 892; this.resource(); } } - this.state = 889; + this.state = 897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2496,48 +2501,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 892; + this.state = 900; this.match(SparkSqlParser.KW_CREATE); - this.state = 893; + this.state = 901; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 894; + this.state = 902; this.match(SparkSqlParser.KW_VIEW); - this.state = 896; + this.state = 904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 895; + this.state = 903; this.ifNotExists(); } break; } - this.state = 898; + this.state = 906; this.viewNameCreate(); - this.state = 900; + this.state = 908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 899; + this.state = 907; this.tableProvider(); } } - this.state = 917; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 915; + this.state = 923; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 902; + this.state = 910; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 903; + this.state = 911; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2545,57 +2550,57 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 904; + this.state = 912; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 905; + this.state = 913; this.match(SparkSqlParser.KW_BY); - this.state = 906; + this.state = 914; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 907; + this.state = 915; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 908; + this.state = 916; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 909; + this.state = 917; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 910; + this.state = 918; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 911; + this.state = 919; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 912; + this.state = 920; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 913; + this.state = 921; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 914; + this.state = 922; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2604,13 +2609,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 919; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 920; + this.state = 928; this.match(SparkSqlParser.KW_AS); - this.state = 921; + this.state = 929; this.query(); } break; @@ -2618,31 +2623,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 923; + this.state = 931; this.match(SparkSqlParser.KW_DROP); - this.state = 925; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 924; + this.state = 932; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 927; + this.state = 935; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 929; + this.state = 937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 928; + this.state = 936; this.ifExists(); } break; } - this.state = 931; + this.state = 939; this.functionName(); } break; @@ -2650,48 +2655,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 932; + this.state = 940; this.match(SparkSqlParser.KW_DECLARE); - this.state = 935; + this.state = 943; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 933; + this.state = 941; this.match(SparkSqlParser.KW_OR); - this.state = 934; + this.state = 942; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 938; + this.state = 946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { case 1: { - this.state = 937; + this.state = 945; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 940; + this.state = 948; this.functionName(); - this.state = 942; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 941; + this.state = 949; this.dataType(); } break; } - this.state = 945; + this.state = 953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 944; + this.state = 952; this.variableDefaultExpression(); } } @@ -2702,40 +2707,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 947; + this.state = 955; this.match(SparkSqlParser.KW_DROP); - this.state = 948; + this.state = 956; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 957; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 951; + this.state = 959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 950; + this.state = 958; this.ifExists(); } break; } - this.state = 956; + this.state = 964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 953; + this.state = 961; this.tableName(); } break; case 2: { - this.state = 954; + this.state = 962; this.viewName(); } break; case 3: { - this.state = 955; + this.state = 963; this.functionName(); } break; @@ -2746,14 +2751,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 958; + this.state = 966; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 960; + this.state = 968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 959; + this.state = 967; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2765,7 +2770,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 970; this.statement(); } break; @@ -2773,16 +2778,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 963; + this.state = 971; this.match(SparkSqlParser.KW_SHOW); - this.state = 964; + this.state = 972; this.match(SparkSqlParser.KW_TABLES); - this.state = 967; + this.state = 975; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 965; + this.state = 973; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2791,27 +2796,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 966; + this.state = 974; this.namespaceName(); } break; } - this.state = 973; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 970; + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 969; + this.state = 977; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 972; + this.state = 980; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2822,18 +2827,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 975; + this.state = 983; this.match(SparkSqlParser.KW_SHOW); - this.state = 976; + this.state = 984; this.match(SparkSqlParser.KW_TABLE); - this.state = 977; + this.state = 985; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 980; + this.state = 988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 978; + this.state = 986; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2842,21 +2847,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 979; + this.state = 987; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 982; + this.state = 990; this.match(SparkSqlParser.KW_LIKE); - this.state = 983; + this.state = 991; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 985; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 984; + this.state = 992; this.partitionSpec(); } } @@ -2867,22 +2872,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 987; + this.state = 995; this.match(SparkSqlParser.KW_SHOW); - this.state = 988; + this.state = 996; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 989; + this.state = 997; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 994; + this.state = 1002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 990; + this.state = 998; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 991; + this.state = 999; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 992; + this.state = 1000; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2893,11 +2898,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 996; + this.state = 1004; this.match(SparkSqlParser.KW_SHOW); - this.state = 997; + this.state = 1005; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 998; + this.state = 1006; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2906,14 +2911,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 999; + this.state = 1007; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 1002; + this.state = 1010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1000; + this.state = 1008; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2922,7 +2927,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 1009; this.namespaceName(); } break; @@ -2933,16 +2938,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 1004; + this.state = 1012; this.match(SparkSqlParser.KW_SHOW); - this.state = 1005; + this.state = 1013; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1008; + this.state = 1016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1006; + this.state = 1014; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2951,27 +2956,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 1015; this.namespaceName(); } break; } - this.state = 1014; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1011; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1010; + this.state = 1018; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1013; + this.state = 1021; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -2982,18 +2987,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1016; + this.state = 1024; this.match(SparkSqlParser.KW_SHOW); - this.state = 1017; + this.state = 1025; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1018; + this.state = 1026; this.tableName(); - this.state = 1020; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1019; + this.state = 1027; this.partitionSpec(); } } @@ -3004,26 +3009,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1022; + this.state = 1030; this.match(SparkSqlParser.KW_SHOW); - this.state = 1024; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1023; + this.state = 1031; this.functionKind(); } } - this.state = 1026; + this.state = 1034; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1029; + this.state = 1037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1027; + this.state = 1035; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3032,38 +3037,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1028; + this.state = 1036; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1038; + this.state = 1046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1032; + this.state = 1040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1031; + this.state = 1039; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1036; + this.state = 1044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1034; + this.state = 1042; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1035; + this.state = 1043; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3077,22 +3082,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1040; + this.state = 1048; this.match(SparkSqlParser.KW_SHOW); - this.state = 1041; + this.state = 1049; this.match(SparkSqlParser.KW_CREATE); - this.state = 1042; + this.state = 1050; this.match(SparkSqlParser.KW_TABLE); - this.state = 1043; + this.state = 1051; this.tableName(); - this.state = 1046; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1044; + this.state = 1052; this.match(SparkSqlParser.KW_AS); - this.state = 1045; + this.state = 1053; this.match(SparkSqlParser.KW_SERDE); } } @@ -3103,11 +3108,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1048; + this.state = 1056; this.match(SparkSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1057; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1050; + this.state = 1058; this.namespace(); } break; @@ -3115,26 +3120,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1051; + this.state = 1059; this.match(SparkSqlParser.KW_SHOW); - this.state = 1052; + this.state = 1060; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1057; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1054; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1053; + this.state = 1061; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1056; + this.state = 1064; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3145,18 +3150,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1059; + this.state = 1067; this.match(SparkSqlParser.KW_SHOW); - this.state = 1060; + this.state = 1068; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1061; + this.state = 1069; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1064; + this.state = 1072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1062; + this.state = 1070; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3165,27 +3170,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1063; + this.state = 1071; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1070; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1067; + this.state = 1075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1066; + this.state = 1074; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1069; + this.state = 1077; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3196,24 +3201,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1072; + this.state = 1080; this.match(SparkSqlParser.KW_SHOW); - this.state = 1073; + this.state = 1081; this.match(SparkSqlParser.KW_CREATE); - this.state = 1074; + this.state = 1082; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1075; + this.state = 1083; this.match(SparkSqlParser.KW_VIEW); - this.state = 1076; + this.state = 1084; this.viewName(); - this.state = 1079; + this.state = 1087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1077; + this.state = 1085; this.match(SparkSqlParser.KW_AS); - this.state = 1078; + this.state = 1086; this.match(SparkSqlParser.KW_SERDE); } } @@ -3224,7 +3229,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1081; + this.state = 1089; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3233,19 +3238,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1090; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1084; + this.state = 1092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1083; + this.state = 1091; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1086; + this.state = 1094; this.describeFuncName(); } break; @@ -3253,7 +3258,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1087; + this.state = 1095; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3262,19 +3267,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1096; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1090; + this.state = 1098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1089; + this.state = 1097; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1092; + this.state = 1100; this.namespaceName(); } break; @@ -3282,7 +3287,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1093; + this.state = 1101; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3291,22 +3296,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1094; + this.state = 1102; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1098; + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1097; + this.state = 1105; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3319,24 +3324,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1100; + this.state = 1108; this.tableName(); - this.state = 1102; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1101; + this.state = 1109; this.partitionSpec(); } break; } - this.state = 1105; + this.state = 1113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1104; + this.state = 1112; this.describeColName(); } break; @@ -3347,7 +3352,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1107; + this.state = 1115; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3356,17 +3361,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1108; + this.state = 1116; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1111; + this.state = 1119; this.query(); } break; @@ -3374,17 +3379,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentNamespaceContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1112; + this.state = 1120; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1113; + this.state = 1121; this.match(SparkSqlParser.KW_ON); - this.state = 1114; + this.state = 1122; this.namespace(); - this.state = 1115; + this.state = 1123; this.namespaceName(); - this.state = 1116; + this.state = 1124; this.match(SparkSqlParser.KW_IS); - this.state = 1117; + this.state = 1125; this.commentStr(); } break; @@ -3392,17 +3397,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1119; + this.state = 1127; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1120; + this.state = 1128; this.match(SparkSqlParser.KW_ON); - this.state = 1121; + this.state = 1129; this.match(SparkSqlParser.KW_TABLE); - this.state = 1122; + this.state = 1130; this.tableName(); - this.state = 1123; + this.state = 1131; this.match(SparkSqlParser.KW_IS); - this.state = 1124; + this.state = 1132; this.commentStr(); } break; @@ -3410,11 +3415,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1126; + this.state = 1134; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1127; + this.state = 1135; this.match(SparkSqlParser.KW_TABLE); - this.state = 1128; + this.state = 1136; this.tableName(); } break; @@ -3422,11 +3427,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1129; + this.state = 1137; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1130; + this.state = 1138; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1131; + this.state = 1139; this.functionName(); } break; @@ -3434,32 +3439,32 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshResourceContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1132; - this.match(SparkSqlParser.KW_REFRESH); this.state = 1140; + this.match(SparkSqlParser.KW_REFRESH); + this.state = 1148; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1133; + this.state = 1141; this.stringLit(); } break; case 2: { - this.state = 1137; + this.state = 1145; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1134; + this.state = 1142; this.matchWildcard(); } } } - this.state = 1139; + this.state = 1147; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); } @@ -3472,13 +3477,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1142; + this.state = 1150; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1143; + this.state = 1151; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1144; + this.state = 1152; this.match(SparkSqlParser.KW_VIEW); - this.state = 1145; + this.state = 1153; this.viewName(); } break; @@ -3486,50 +3491,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CacheTableContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1146; + this.state = 1154; this.match(SparkSqlParser.KW_CACHE); - this.state = 1148; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1147; + this.state = 1155; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1150; + this.state = 1158; this.match(SparkSqlParser.KW_TABLE); - this.state = 1151; + this.state = 1159; this.tableName(); - this.state = 1154; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1152; + this.state = 1160; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1153; + this.state = 1161; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1160; + this.state = 1168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1157; + this.state = 1165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1156; + this.state = 1164; this.match(SparkSqlParser.KW_AS); } } - this.state = 1159; + this.state = 1167; this.query(); } break; @@ -3540,21 +3545,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnCacheTableContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1162; + this.state = 1170; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1163; + this.state = 1171; this.match(SparkSqlParser.KW_TABLE); - this.state = 1165; + this.state = 1173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1164; + this.state = 1172; this.ifExists(); } break; } - this.state = 1167; + this.state = 1175; this.tableName(); } break; @@ -3562,9 +3567,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ClearCacheContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1168; + this.state = 1176; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1169; + this.state = 1177; this.match(SparkSqlParser.KW_CACHE); } break; @@ -3572,46 +3577,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new LoadDataContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1170; + this.state = 1178; this.match(SparkSqlParser.KW_LOAD); - this.state = 1171; + this.state = 1179; this.match(SparkSqlParser.KW_DATA); - this.state = 1173; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1172; + this.state = 1180; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1175; + this.state = 1183; this.match(SparkSqlParser.KW_INPATH); - this.state = 1176; + this.state = 1184; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1178; + this.state = 1186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1177; + this.state = 1185; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1180; + this.state = 1188; this.match(SparkSqlParser.KW_INTO); - this.state = 1181; + this.state = 1189; this.match(SparkSqlParser.KW_TABLE); - this.state = 1182; + this.state = 1190; this.tableName(); - this.state = 1184; + this.state = 1192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1183; + this.state = 1191; this.partitionSpec(); } } @@ -3622,18 +3627,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1186; + this.state = 1194; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1187; + this.state = 1195; this.match(SparkSqlParser.KW_TABLE); - this.state = 1188; + this.state = 1196; this.tableName(); - this.state = 1190; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1189; + this.state = 1197; this.partitionSpec(); } } @@ -3644,28 +3649,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1193; + this.state = 1201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1192; + this.state = 1200; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1195; + this.state = 1203; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1196; + this.state = 1204; this.match(SparkSqlParser.KW_TABLE); - this.state = 1197; + this.state = 1205; this.tableName(); - this.state = 1200; + this.state = 1208; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1198; + this.state = 1206; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3675,7 +3680,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1199; + this.state = 1207; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -3686,7 +3691,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ManageResourceContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1202; + this.state = 1210; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3696,21 +3701,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1211; this.identifier(); - this.state = 1207; + this.state = 1215; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1204; + this.state = 1212; this.matchWildcard(); } } } - this.state = 1209; + this.state = 1217; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); } @@ -3720,23 +3725,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FailNativeCommandContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1210; + this.state = 1218; this.match(SparkSqlParser.KW_SET); - this.state = 1211; + this.state = 1219; this.match(SparkSqlParser.KW_ROLE); - this.state = 1215; + this.state = 1223; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1212; + this.state = 1220; this.matchWildcard(); } } } - this.state = 1217; + this.state = 1225; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); } @@ -3746,13 +3751,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1218; + this.state = 1226; this.match(SparkSqlParser.KW_SET); - this.state = 1219; + this.state = 1227; this.match(SparkSqlParser.KW_TIME); - this.state = 1220; + this.state = 1228; this.match(SparkSqlParser.KW_ZONE); - this.state = 1221; + this.state = 1229; this.interval(); } break; @@ -3760,13 +3765,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1222; + this.state = 1230; this.match(SparkSqlParser.KW_SET); - this.state = 1223; + this.state = 1231; this.match(SparkSqlParser.KW_TIME); - this.state = 1224; + this.state = 1232; this.match(SparkSqlParser.KW_ZONE); - this.state = 1225; + this.state = 1233; this.timezone(); } break; @@ -3774,25 +3779,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneAnyContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1226; + this.state = 1234; this.match(SparkSqlParser.KW_SET); - this.state = 1227; + this.state = 1235; this.match(SparkSqlParser.KW_TIME); - this.state = 1228; + this.state = 1236; this.match(SparkSqlParser.KW_ZONE); - this.state = 1232; + this.state = 1240; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1229; + this.state = 1237; this.matchWildcard(); } } } - this.state = 1234; + this.state = 1242; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); } @@ -3802,9 +3807,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableAssignmentContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1235; + this.state = 1243; this.match(SparkSqlParser.KW_SET); - this.state = 1236; + this.state = 1244; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3813,7 +3818,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1237; + this.state = 1245; this.assignmentList(); } break; @@ -3821,9 +3826,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableMultiAssignmentContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1238; + this.state = 1246; this.match(SparkSqlParser.KW_SET); - this.state = 1239; + this.state = 1247; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3832,19 +3837,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1240; + this.state = 1248; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1241; + this.state = 1249; this.multipartIdentifierList(); - this.state = 1242; + this.state = 1250; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1243; + this.state = 1251; this.match(SparkSqlParser.EQ); - this.state = 1244; + this.state = 1252; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1245; + this.state = 1253; this.query(); - this.state = 1246; + this.state = 1254; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -3852,13 +3857,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1248; + this.state = 1256; this.match(SparkSqlParser.KW_SET); - this.state = 1249; + this.state = 1257; this.configKey(); - this.state = 1250; + this.state = 1258; this.match(SparkSqlParser.EQ); - this.state = 1251; + this.state = 1259; this.configValue(); } break; @@ -3866,30 +3871,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAndValueContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1253; + this.state = 1261; this.match(SparkSqlParser.KW_SET); - this.state = 1254; - this.configKey(); this.state = 1262; + this.configKey(); + this.state = 1270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1255; + this.state = 1263; this.match(SparkSqlParser.EQ); - this.state = 1259; + this.state = 1267; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1256; + this.state = 1264; this.matchWildcard(); } } } - this.state = 1261; + this.state = 1269; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); } @@ -3902,27 +3907,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAnyKeyContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1264; + this.state = 1272; this.match(SparkSqlParser.KW_SET); - this.state = 1268; + this.state = 1276; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1265; + this.state = 1273; this.matchWildcard(); } } } - this.state = 1270; + this.state = 1278; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } - this.state = 1271; + this.state = 1279; this.match(SparkSqlParser.EQ); - this.state = 1272; + this.state = 1280; this.configValue(); } break; @@ -3930,21 +3935,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetAnyContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1273; + this.state = 1281; this.match(SparkSqlParser.KW_SET); - this.state = 1277; + this.state = 1285; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1274; + this.state = 1282; this.matchWildcard(); } } } - this.state = 1279; + this.state = 1287; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -3954,9 +3959,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetConfigContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1280; + this.state = 1288; this.match(SparkSqlParser.KW_RESET); - this.state = 1281; + this.state = 1289; this.configKey(); } break; @@ -3964,21 +3969,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetAnyContext(localContext); this.enterOuterAlt(localContext, 87); { - this.state = 1282; + this.state = 1290; this.match(SparkSqlParser.KW_RESET); - this.state = 1286; + this.state = 1294; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1283; + this.state = 1291; this.matchWildcard(); } } } - this.state = 1288; + this.state = 1296; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -3988,62 +3993,62 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateIndexContext(localContext); this.enterOuterAlt(localContext, 88); { - this.state = 1289; + this.state = 1297; this.match(SparkSqlParser.KW_CREATE); - this.state = 1290; + this.state = 1298; this.match(SparkSqlParser.KW_INDEX); - this.state = 1292; + this.state = 1300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1291; + this.state = 1299; this.ifNotExists(); } break; } - this.state = 1294; + this.state = 1302; this.identifier(); - this.state = 1295; + this.state = 1303; this.match(SparkSqlParser.KW_ON); - this.state = 1297; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1296; + this.state = 1304; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1299; + this.state = 1307; this.tableName(); - this.state = 1302; + this.state = 1310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1300; + this.state = 1308; this.match(SparkSqlParser.KW_USING); - this.state = 1301; + this.state = 1309; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1304; + this.state = 1312; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1305; + this.state = 1313; this.multipartIdentifierPropertyList(); - this.state = 1306; + this.state = 1314; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1309; + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1307; + this.state = 1315; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1308; + this.state = 1316; (localContext as CreateIndexContext)._options = this.propertyList(); } } @@ -4054,35 +4059,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropIndexContext(localContext); this.enterOuterAlt(localContext, 89); { - this.state = 1311; + this.state = 1319; this.match(SparkSqlParser.KW_DROP); - this.state = 1312; + this.state = 1320; this.match(SparkSqlParser.KW_INDEX); - this.state = 1314; + this.state = 1322; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1313; + this.state = 1321; this.ifExists(); } break; } - this.state = 1316; + this.state = 1324; this.identifier(); - this.state = 1317; + this.state = 1325; this.match(SparkSqlParser.KW_ON); - this.state = 1319; + this.state = 1327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1318; + this.state = 1326; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1321; + this.state = 1329; this.tableName(); } break; @@ -4090,21 +4095,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new OptimizeTableContext(localContext); this.enterOuterAlt(localContext, 90); { - this.state = 1323; + this.state = 1331; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1324; + this.state = 1332; this.tableName(); - this.state = 1326; + this.state = 1334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1325; + this.state = 1333; this.whereClause(); } } - this.state = 1328; + this.state = 1336; this.zorderClause(); } break; @@ -4112,21 +4117,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsupportHiveCommandsContext(localContext); this.enterOuterAlt(localContext, 91); { - this.state = 1330; + this.state = 1338; this.unsupportedHiveNativeCommands(); - this.state = 1334; + this.state = 1342; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1331; + this.state = 1339; this.matchWildcard(); } } } - this.state = 1336; + this.state = 1344; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } @@ -4152,21 +4157,21 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new TimezoneContext(this.context, this.state); this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); try { - this.state = 1341; + this.state = 1349; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 1339; + this.state = 1347; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 2); { - this.state = 1340; + this.state = 1348; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -4194,7 +4199,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1351; this.quotedIdentifier(); } } @@ -4218,7 +4223,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1353; this.backQuotedIdentifier(); } } @@ -4241,38 +4246,38 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1515; + this.state = 1523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1347; + this.state = 1355; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1348; + this.state = 1356; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1349; + this.state = 1357; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1350; + this.state = 1358; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1359; localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1353; + this.state = 1361; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1352; + this.state = 1360; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4282,14 +4287,14 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1355; + this.state = 1363; localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1357; + this.state = 1365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1356; + this.state = 1364; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4299,25 +4304,25 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1359; + this.state = 1367; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1360; + this.state = 1368; localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1361; + this.state = 1369; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1362; + this.state = 1370; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1364; + this.state = 1372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1363; + this.state = 1371; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4327,474 +4332,474 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1366; + this.state = 1374; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1367; + this.state = 1375; localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1368; + this.state = 1376; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1369; + this.state = 1377; localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1370; + this.state = 1378; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1371; + this.state = 1379; localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1372; + this.state = 1380; localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1373; + this.state = 1381; localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1374; + this.state = 1382; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1375; + this.state = 1383; localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1376; + this.state = 1384; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1377; + this.state = 1385; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1378; + this.state = 1386; localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1379; + this.state = 1387; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1380; + this.state = 1388; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1381; + this.state = 1389; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1382; + this.state = 1390; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1383; + this.state = 1391; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1384; + this.state = 1392; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1385; + this.state = 1393; localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1386; + this.state = 1394; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1387; + this.state = 1395; localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1388; + this.state = 1396; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1389; + this.state = 1397; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1390; + this.state = 1398; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1391; + this.state = 1399; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1392; + this.state = 1400; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1393; + this.state = 1401; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1394; + this.state = 1402; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1395; + this.state = 1403; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1396; + this.state = 1404; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1397; + this.state = 1405; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1398; + this.state = 1406; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1399; + this.state = 1407; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1400; + this.state = 1408; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1401; + this.state = 1409; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1402; + this.state = 1410; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1403; + this.state = 1411; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1404; + this.state = 1412; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1405; + this.state = 1413; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1406; + this.state = 1414; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1407; + this.state = 1415; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1408; + this.state = 1416; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1409; + this.state = 1417; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1410; + this.state = 1418; this.tableName(); - this.state = 1411; + this.state = 1419; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1412; + this.state = 1420; localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1414; + this.state = 1422; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1415; + this.state = 1423; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1416; + this.state = 1424; this.tableName(); - this.state = 1417; + this.state = 1425; localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1418; + this.state = 1426; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1420; + this.state = 1428; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1421; + this.state = 1429; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1422; + this.state = 1430; this.tableName(); - this.state = 1423; + this.state = 1431; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1424; + this.state = 1432; localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1426; + this.state = 1434; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1427; + this.state = 1435; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1428; + this.state = 1436; this.tableName(); - this.state = 1429; + this.state = 1437; localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1430; + this.state = 1438; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1432; + this.state = 1440; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1433; + this.state = 1441; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1434; + this.state = 1442; this.tableName(); - this.state = 1435; + this.state = 1443; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1436; + this.state = 1444; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1438; + this.state = 1446; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1439; + this.state = 1447; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1440; + this.state = 1448; this.tableName(); - this.state = 1441; + this.state = 1449; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1442; + this.state = 1450; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1443; + this.state = 1451; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1444; + this.state = 1452; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1446; + this.state = 1454; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1447; + this.state = 1455; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1448; + this.state = 1456; this.tableName(); - this.state = 1449; + this.state = 1457; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1450; + this.state = 1458; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1451; + this.state = 1459; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1453; + this.state = 1461; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1454; + this.state = 1462; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1455; + this.state = 1463; this.tableName(); - this.state = 1456; + this.state = 1464; localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); - this.state = 1457; + this.state = 1465; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1459; + this.state = 1467; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1460; + this.state = 1468; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1461; + this.state = 1469; this.tableName(); - this.state = 1462; + this.state = 1470; localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); - this.state = 1463; + this.state = 1471; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1465; + this.state = 1473; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1466; + this.state = 1474; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1467; + this.state = 1475; this.tableName(); - this.state = 1468; + this.state = 1476; localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); - this.state = 1469; + this.state = 1477; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1471; + this.state = 1479; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1472; + this.state = 1480; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1473; + this.state = 1481; this.tableName(); - this.state = 1474; + this.state = 1482; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1476; + this.state = 1484; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1477; + this.state = 1485; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1478; + this.state = 1486; this.tableName(); - this.state = 1480; + this.state = 1488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1479; + this.state = 1487; this.partitionSpec(); } } - this.state = 1482; + this.state = 1490; localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1484; + this.state = 1492; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1485; + this.state = 1493; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1486; + this.state = 1494; this.tableName(); - this.state = 1488; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1487; + this.state = 1495; this.partitionSpec(); } } - this.state = 1490; + this.state = 1498; localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1492; + this.state = 1500; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1493; + this.state = 1501; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1494; + this.state = 1502; this.tableName(); - this.state = 1496; + this.state = 1504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1495; + this.state = 1503; this.partitionSpec(); } } - this.state = 1498; + this.state = 1506; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1499; + this.state = 1507; localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1501; + this.state = 1509; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1502; + this.state = 1510; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1503; + this.state = 1511; this.tableName(); - this.state = 1505; + this.state = 1513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1504; + this.state = 1512; this.partitionSpec(); } } - this.state = 1507; + this.state = 1515; localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1508; + this.state = 1516; localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1510; + this.state = 1518; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1511; + this.state = 1519; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1512; + this.state = 1520; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1513; + this.state = 1521; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1514; + this.state = 1522; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4821,41 +4826,41 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1525; this.match(SparkSqlParser.KW_CREATE); - this.state = 1519; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 1518; + this.state = 1526; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 1522; + this.state = 1530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 1521; + this.state = 1529; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 1524; + this.state = 1532; this.match(SparkSqlParser.KW_TABLE); - this.state = 1526; + this.state = 1534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1525; + this.state = 1533; this.ifNotExists(); } break; } - this.state = 1528; + this.state = 1536; this.tableNameCreate(); } } @@ -4880,23 +4885,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 1530; + this.state = 1538; this.match(SparkSqlParser.KW_CREATE); - this.state = 1531; + this.state = 1539; this.match(SparkSqlParser.KW_OR); } } - this.state = 1534; + this.state = 1542; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1535; + this.state = 1543; this.match(SparkSqlParser.KW_TABLE); - this.state = 1536; + this.state = 1544; this.tableNameCreate(); } } @@ -4921,31 +4926,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1538; + this.state = 1546; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1539; + this.state = 1547; this.match(SparkSqlParser.KW_BY); - this.state = 1540; + this.state = 1548; this.identifierList(); - this.state = 1544; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 279) { { - this.state = 1541; + this.state = 1549; this.match(SparkSqlParser.KW_SORTED); - this.state = 1542; + this.state = 1550; this.match(SparkSqlParser.KW_BY); - this.state = 1543; + this.state = 1551; this.orderedIdentifierList(); } } - this.state = 1546; + this.state = 1554; this.match(SparkSqlParser.KW_INTO); - this.state = 1547; + this.state = 1555; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1548; + this.state = 1556; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4969,40 +4974,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1558; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1551; + this.state = 1559; this.match(SparkSqlParser.KW_BY); - this.state = 1552; + this.state = 1560; this.identifierList(); - this.state = 1553; + this.state = 1561; this.match(SparkSqlParser.KW_ON); - this.state = 1556; + this.state = 1564; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1554; + this.state = 1562; this.constantList(); } break; case 2: { - this.state = 1555; + this.state = 1563; this.nestedConstantList(); } break; } - this.state = 1561; + this.state = 1569; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1558; + this.state = 1566; this.match(SparkSqlParser.KW_STORED); - this.state = 1559; + this.state = 1567; this.match(SparkSqlParser.KW_AS); - this.state = 1560; + this.state = 1568; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -5029,9 +5034,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1571; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1564; + this.state = 1572; this.stringLit(); } } @@ -5055,9 +5060,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1574; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1567; + this.state = 1575; localContext._comment = this.stringLit(); } } @@ -5083,19 +5088,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1569; + this.state = 1577; this.ctes(); } } - this.state = 1572; + this.state = 1580; this.queryTerm(0); - this.state = 1573; + this.state = 1581; this.queryOrganization(); } } @@ -5118,41 +5123,41 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1651; + this.state = 1659; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1575; + this.state = 1583; this.match(SparkSqlParser.KW_INSERT); - this.state = 1576; + this.state = 1584; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1578; + this.state = 1586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1577; + this.state = 1585; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1580; + this.state = 1588; this.tableName(); - this.state = 1585; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1581; + this.state = 1589; this.partitionSpec(); - this.state = 1583; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1582; + this.state = 1590; this.ifNotExists(); } } @@ -5160,15 +5165,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1593; + this.state = 1601; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1587; + this.state = 1595; this.match(SparkSqlParser.KW_BY); - this.state = 1588; + this.state = 1596; this.match(SparkSqlParser.KW_NAME); } } @@ -5176,11 +5181,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1589; + this.state = 1597; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1590; + this.state = 1598; this.columnNameSeq(); - this.state = 1591; + this.state = 1599; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5191,51 +5196,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1595; + this.state = 1603; this.match(SparkSqlParser.KW_INSERT); - this.state = 1596; + this.state = 1604; this.match(SparkSqlParser.KW_INTO); - this.state = 1598; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1597; + this.state = 1605; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1600; + this.state = 1608; this.tableName(); - this.state = 1602; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1601; + this.state = 1609; this.partitionSpec(); } } - this.state = 1605; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1604; + this.state = 1612; this.ifNotExists(); } } - this.state = 1613; + this.state = 1621; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1607; + this.state = 1615; this.match(SparkSqlParser.KW_BY); - this.state = 1608; + this.state = 1616; this.match(SparkSqlParser.KW_NAME); } } @@ -5243,11 +5248,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1609; + this.state = 1617; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1610; + this.state = 1618; this.columnNameSeq(); - this.state = 1611; + this.state = 1619; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5258,65 +5263,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1615; + this.state = 1623; this.match(SparkSqlParser.KW_INSERT); - this.state = 1616; + this.state = 1624; this.match(SparkSqlParser.KW_INTO); - this.state = 1618; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1617; + this.state = 1625; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1620; + this.state = 1628; this.tableName(); - this.state = 1621; + this.state = 1629; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1622; + this.state = 1630; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1632; this.match(SparkSqlParser.KW_INSERT); - this.state = 1625; + this.state = 1633; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1627; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1626; + this.state = 1634; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1629; + this.state = 1637; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1630; + this.state = 1638; localContext._path = this.stringLit(); - this.state = 1632; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1631; + this.state = 1639; this.rowFormat(); } } - this.state = 1635; + this.state = 1643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1634; + this.state = 1642; this.createFileFormat(); } } @@ -5326,42 +5331,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1637; + this.state = 1645; this.match(SparkSqlParser.KW_INSERT); - this.state = 1638; + this.state = 1646; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1640; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1639; + this.state = 1647; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1642; + this.state = 1650; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1644; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1643; + this.state = 1651; localContext._path = this.stringLit(); } } - this.state = 1646; + this.state = 1654; this.tableProvider(); - this.state = 1649; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1647; + this.state = 1655; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1648; + this.state = 1656; localContext._options = this.propertyList(); } } @@ -5391,14 +5396,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1661; this.partitionSpec(); - this.state = 1655; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1654; + this.state = 1662; this.locationSpec(); } } @@ -5426,29 +5431,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1665; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1658; + this.state = 1666; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1659; + this.state = 1667; this.partitionVal(); - this.state = 1664; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1660; + this.state = 1668; this.match(SparkSqlParser.COMMA); - this.state = 1661; + this.state = 1669; this.partitionVal(); } } - this.state = 1666; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1667; + this.state = 1675; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5471,22 +5476,22 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1678; + this.state = 1686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1677; this.identifier(); - this.state = 1672; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1670; + this.state = 1678; this.match(SparkSqlParser.EQ); - this.state = 1671; + this.state = 1679; this.constant(); } } @@ -5496,11 +5501,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1674; + this.state = 1682; this.identifier(); - this.state = 1675; + this.state = 1683; this.match(SparkSqlParser.EQ); - this.state = 1676; + this.state = 1684; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5527,7 +5532,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1688; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5559,7 +5564,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1690; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 191 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -5588,41 +5593,41 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1689; + this.state = 1697; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1684; + this.state = 1692; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1693; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1686; + this.state = 1694; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1687; + this.state = 1695; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1688; + this.state = 1696; this.predicateOperator(); } break; @@ -5649,23 +5654,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1691; + this.state = 1699; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1696; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1692; + this.state = 1700; this.match(SparkSqlParser.DOT); - this.state = 1693; + this.state = 1701; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1698; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5692,23 +5697,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1699; + this.state = 1707; this.match(SparkSqlParser.KW_WITH); - this.state = 1700; + this.state = 1708; this.namedQuery(); - this.state = 1705; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1701; + this.state = 1709; this.match(SparkSqlParser.COMMA); - this.state = 1702; + this.state = 1710; this.namedQuery(); } } - this.state = 1707; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5735,33 +5740,33 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1716; localContext._name = this.errorCapturingIdentifier(); - this.state = 1710; + this.state = 1718; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1709; + this.state = 1717; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1713; + this.state = 1721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1712; + this.state = 1720; this.match(SparkSqlParser.KW_AS); } } - this.state = 1715; + this.state = 1723; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1716; + this.state = 1724; this.query(); - this.state = 1717; + this.state = 1725; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5785,9 +5790,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1727; this.match(SparkSqlParser.KW_USING); - this.state = 1720; + this.state = 1728; this.multipartIdentifier(); } } @@ -5812,21 +5817,21 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1746; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1736; + this.state = 1744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1722; + this.state = 1730; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1723; + this.state = 1731; localContext._options = this.expressionPropertyList(); } } @@ -5834,64 +5839,64 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1724; + this.state = 1732; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1725; + this.state = 1733; this.match(SparkSqlParser.KW_BY); - this.state = 1726; + this.state = 1734; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1727; + this.state = 1735; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1728; + this.state = 1736; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1729; + this.state = 1737; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1730; + this.state = 1738; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1731; + this.state = 1739; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1732; + this.state = 1740; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1733; + this.state = 1741; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1734; + this.state = 1742; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1735; + this.state = 1743; this.tableLifecycle(); } break; @@ -5900,7 +5905,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1740; + this.state = 1748; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5926,9 +5931,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1749; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1742; + this.state = 1750; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5953,27 +5958,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1752; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1745; + this.state = 1753; this.property(); - this.state = 1750; + this.state = 1758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1746; + this.state = 1754; this.match(SparkSqlParser.COMMA); - this.state = 1747; + this.state = 1755; this.property(); } } - this.state = 1752; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1753; + this.state = 1761; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5998,24 +6003,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1763; localContext._key = this.propertyKey(); - this.state = 1760; + this.state = 1768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1757; + this.state = 1765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1756; + this.state = 1764; this.match(SparkSqlParser.EQ); } } - this.state = 1759; + this.state = 1767; localContext._value = this.propertyValue(); } } @@ -6041,27 +6046,27 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1771; + this.state = 1779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1770; this.identifier(); - this.state = 1767; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1763; + this.state = 1771; this.match(SparkSqlParser.DOT); - this.state = 1764; + this.state = 1772; this.identifier(); } } - this.state = 1769; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6070,7 +6075,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1778; this.stringLit(); } break; @@ -6094,20 +6099,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 60, SparkSqlParser.RULE_propertyValue); try { - this.state = 1777; + this.state = 1785; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1781; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1782; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -6115,7 +6120,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1775; + this.state = 1783; this.booleanValue(); } break; @@ -6123,7 +6128,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1776; + this.state = 1784; this.stringLit(); } break; @@ -6152,27 +6157,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1787; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1780; + this.state = 1788; this.expressionProperty(); - this.state = 1785; + this.state = 1793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1781; + this.state = 1789; this.match(SparkSqlParser.COMMA); - this.state = 1782; + this.state = 1790; this.expressionProperty(); } } - this.state = 1787; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1788; + this.state = 1796; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6197,24 +6202,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1798; localContext._key = this.propertyKey(); - this.state = 1795; + this.state = 1803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1792; + this.state = 1800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1791; + this.state = 1799; this.match(SparkSqlParser.EQ); } } - this.state = 1794; + this.state = 1802; localContext._value = this.expression(); } } @@ -6242,27 +6247,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1797; + this.state = 1805; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1798; + this.state = 1806; this.constant(); - this.state = 1803; + this.state = 1811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1799; + this.state = 1807; this.match(SparkSqlParser.COMMA); - this.state = 1800; + this.state = 1808; this.constant(); } } - this.state = 1805; + this.state = 1813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1806; + this.state = 1814; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6287,27 +6292,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1816; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1809; + this.state = 1817; this.constantList(); - this.state = 1814; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1810; + this.state = 1818; this.match(SparkSqlParser.COMMA); - this.state = 1811; + this.state = 1819; this.constantList(); } } - this.state = 1816; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1817; + this.state = 1825; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6329,28 +6334,28 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new CreateFileFormatContext(this.context, this.state); this.enterRule(localContext, 70, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1825; + this.state = 1833; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1827; this.match(SparkSqlParser.KW_STORED); - this.state = 1820; + this.state = 1828; this.match(SparkSqlParser.KW_AS); - this.state = 1821; + this.state = 1829; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1822; + this.state = 1830; this.match(SparkSqlParser.KW_STORED); - this.state = 1823; + this.state = 1831; this.match(SparkSqlParser.KW_BY); - this.state = 1824; + this.state = 1832; this.storageHandler(); } break; @@ -6374,26 +6379,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FileFormatContext(this.context, this.state); this.enterRule(localContext, 72, SparkSqlParser.RULE_fileFormat); try { - this.state = 1833; + this.state = 1841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1835; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1828; + this.state = 1836; localContext._inFmt = this.stringLit(); - this.state = 1829; + this.state = 1837; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1830; + this.state = 1838; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1840; this.identifier(); } break; @@ -6419,18 +6424,18 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1843; this.stringLit(); - this.state = 1839; + this.state = 1847; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1836; + this.state = 1844; this.match(SparkSqlParser.KW_WITH); - this.state = 1837; + this.state = 1845; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1838; + this.state = 1846; this.propertyList(); } break; @@ -6457,9 +6462,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1849; this.identifier(); - this.state = 1842; + this.state = 1850; this.stringLit(); } } @@ -6483,16 +6488,16 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1900; + this.state = 1908; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1852; this.insertInto(); - this.state = 1845; + this.state = 1853; this.query(); } break; @@ -6500,9 +6505,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1855; this.fromClause(); - this.state = 1849; + this.state = 1857; this.errorHandler.sync(this); alternative = 1; do { @@ -6510,7 +6515,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1848; + this.state = 1856; this.multiInsertQueryBody(); } } @@ -6518,7 +6523,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1859; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6528,20 +6533,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1853; + this.state = 1861; this.match(SparkSqlParser.KW_DELETE); - this.state = 1854; + this.state = 1862; this.match(SparkSqlParser.KW_FROM); - this.state = 1855; + this.state = 1863; this.tableName(); - this.state = 1856; + this.state = 1864; this.tableAlias(); - this.state = 1858; + this.state = 1866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1857; + this.state = 1865; this.whereClause(); } } @@ -6552,20 +6557,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1860; + this.state = 1868; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1861; + this.state = 1869; this.tableName(); - this.state = 1862; + this.state = 1870; this.tableAlias(); - this.state = 1863; + this.state = 1871; this.setClause(); - this.state = 1865; + this.state = 1873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1864; + this.state = 1872; this.whereClause(); } } @@ -6576,17 +6581,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1875; this.match(SparkSqlParser.KW_MERGE); - this.state = 1868; + this.state = 1876; this.match(SparkSqlParser.KW_INTO); - this.state = 1869; + this.state = 1877; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1870; + this.state = 1878; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1871; + this.state = 1879; this.match(SparkSqlParser.KW_USING); - this.state = 1877; + this.state = 1885; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6933,72 +6938,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1872; + this.state = 1880; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1873; + this.state = 1881; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1874; + this.state = 1882; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1875; + this.state = 1883; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1879; + this.state = 1887; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1880; + this.state = 1888; this.match(SparkSqlParser.KW_ON); - this.state = 1881; + this.state = 1889; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1885; + this.state = 1893; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1882; + this.state = 1890; this.matchedClause(); } } } - this.state = 1887; + this.state = 1895; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1891; + this.state = 1899; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1888; + this.state = 1896; this.notMatchedClause(); } } } - this.state = 1893; + this.state = 1901; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1897; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1894; + this.state = 1902; this.notMatchedBySourceClause(); } } - this.state = 1899; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7028,7 +7033,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1910; this.identifierReference(); } } @@ -7052,7 +7057,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1904; + this.state = 1912; this.identifierReference(); } } @@ -7076,7 +7081,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1914; this.tableIdentifier(); } } @@ -7100,7 +7105,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1908; + this.state = 1916; this.tableIdentifier(); } } @@ -7124,7 +7129,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1918; this.viewIdentifier(); } } @@ -7148,7 +7153,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1920; this.viewIdentifier(); } } @@ -7170,20 +7175,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 92, SparkSqlParser.RULE_columnName); try { - this.state = 1916; + this.state = 1924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1922; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1915; + this.state = 1923; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -7205,28 +7210,52 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public columnNamePath(): ColumnNamePathContext { + let localContext = new ColumnNamePathContext(this.context, this.state); + this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNamePath); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1926; + this.multipartIdentifier(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public columnNameSeq(): ColumnNameSeqContext { let localContext = new ColumnNameSeqContext(this.context, this.state); - this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNameSeq); + this.enterRule(localContext, 96, SparkSqlParser.RULE_columnNameSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1928; this.columnName(); - this.state = 1923; + this.state = 1933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1919; + this.state = 1929; this.match(SparkSqlParser.COMMA); - this.state = 1920; + this.state = 1930; this.columnName(); } } - this.state = 1925; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7248,11 +7277,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 96, SparkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 98, SparkSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1936; this.errorCapturingIdentifier(); } } @@ -7272,28 +7301,28 @@ export class SparkSqlParser extends SQLParserBase { } public identifierReference(): IdentifierReferenceContext { let localContext = new IdentifierReferenceContext(this.context, this.state); - this.enterRule(localContext, 98, SparkSqlParser.RULE_identifierReference); + this.enterRule(localContext, 100, SparkSqlParser.RULE_identifierReference); try { - this.state = 1934; + this.state = 1944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1928; + this.state = 1938; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1929; + this.state = 1939; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1930; + this.state = 1940; this.expression(); - this.state = 1931; + this.state = 1941; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1933; + this.state = 1943; this.multipartIdentifier(); } break; @@ -7315,194 +7344,223 @@ export class SparkSqlParser extends SQLParserBase { } public queryOrganization(): QueryOrganizationContext { let localContext = new QueryOrganizationContext(this.context, this.state); - this.enterRule(localContext, 100, SparkSqlParser.RULE_queryOrganization); + this.enterRule(localContext, 102, SparkSqlParser.RULE_queryOrganization); try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1936; + this.state = 1946; this.match(SparkSqlParser.KW_ORDER); - this.state = 1937; + this.state = 1947; this.match(SparkSqlParser.KW_BY); - this.state = 1938; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - this.state = 1943; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1939; - this.match(SparkSqlParser.COMMA); - this.state = 1940; - localContext._sortItem = this.sortItem(); - localContext._order.push(localContext._sortItem); - } - } - } - this.state = 1945; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); - } + this.state = 1948; + this.orderOrSortByClause(); } break; } - this.state = 1958; + this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1948; + this.state = 1951; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1949; + this.state = 1952; this.match(SparkSqlParser.KW_BY); - this.state = 1950; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); - this.state = 1955; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1951; - this.match(SparkSqlParser.COMMA); - this.state = 1952; - localContext._expression = this.expression(); - localContext._clusterBy.push(localContext._expression); - } - } - } - this.state = 1957; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); - } + this.state = 1953; + this.clusterOrDistributeBy(); } break; } - this.state = 1970; + this.state = 1959; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1960; + this.state = 1956; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1961; + this.state = 1957; this.match(SparkSqlParser.KW_BY); + this.state = 1958; + this.clusterOrDistributeBy(); + } + break; + } + this.state = 1964; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + case 1: + { + this.state = 1961; + this.match(SparkSqlParser.KW_SORT); this.state = 1962; - localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); - this.state = 1967; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1963; - this.match(SparkSqlParser.COMMA); - this.state = 1964; - localContext._expression = this.expression(); - localContext._distributeBy.push(localContext._expression); - } - } - } - this.state = 1969; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + this.match(SparkSqlParser.KW_BY); + this.state = 1963; + this.orderOrSortByClause(); + } + break; + } + this.state = 1967; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + case 1: + { + this.state = 1966; + this.windowClause(); } + break; + } + this.state = 1970; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + case 1: + { + this.state = 1969; + this.limitClause(); } break; } - this.state = 1982; + this.state = 1974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { this.state = 1972; - this.match(SparkSqlParser.KW_SORT); + this.match(SparkSqlParser.KW_OFFSET); this.state = 1973; - this.match(SparkSqlParser.KW_BY); - this.state = 1974; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); - this.state = 1979; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1975; - this.match(SparkSqlParser.COMMA); - this.state = 1976; - localContext._sortItem = this.sortItem(); - localContext._sort.push(localContext._sortItem); - } - } - } - this.state = 1981; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); - } + localContext._offset = this.expression(); } break; } - this.state = 1985; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public limitClause(): LimitClauseContext { + let localContext = new LimitClauseContext(this.context, this.state); + this.enterRule(localContext, 104, SparkSqlParser.RULE_limitClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1976; + this.match(SparkSqlParser.KW_LIMIT); + this.state = 1979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1984; - this.windowClause(); + this.state = 1977; + this.match(SparkSqlParser.KW_ALL); + } + break; + case 2: + { + this.state = 1978; + localContext._limit = this.expression(); } break; } - this.state = 1992; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public orderOrSortByClause(): OrderOrSortByClauseContext { + let localContext = new OrderOrSortByClauseContext(this.context, this.state); + this.enterRule(localContext, 106, SparkSqlParser.RULE_orderOrSortByClause); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1981; + this.sortItem(); + this.state = 1986; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1982; + this.match(SparkSqlParser.COMMA); + this.state = 1983; + this.sortItem(); + } + } + } + this.state = 1988; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public clusterOrDistributeBy(): ClusterOrDistributeByContext { + let localContext = new ClusterOrDistributeByContext(this.context, this.state); + this.enterRule(localContext, 108, SparkSqlParser.RULE_clusterOrDistributeBy); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1989; + this.expression(); + this.state = 1994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { - case 1: - { - this.state = 1987; - this.match(SparkSqlParser.KW_LIMIT); - this.state = 1990; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { - case 1: + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { - this.state = 1988; - this.match(SparkSqlParser.KW_ALL); - } - break; - case 2: { - this.state = 1989; - localContext._limit = this.expression(); + this.state = 1990; + this.match(SparkSqlParser.COMMA); + this.state = 1991; + this.expression(); + } } - break; - } - } - break; - } - this.state = 1996; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { - case 1: - { - this.state = 1994; - this.match(SparkSqlParser.KW_OFFSET); - this.state = 1995; - localContext._offset = this.expression(); } - break; + this.state = 1996; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 223, this.context); } } } @@ -7522,13 +7580,13 @@ export class SparkSqlParser extends SQLParserBase { } public multiInsertQueryBody(): MultiInsertQueryBodyContext { let localContext = new MultiInsertQueryBodyContext(this.context, this.state); - this.enterRule(localContext, 102, SparkSqlParser.RULE_multiInsertQueryBody); + this.enterRule(localContext, 110, SparkSqlParser.RULE_multiInsertQueryBody); try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 1997; this.insertInto(); - this.state = 1999; + this.state = 1998; this.fromStatementBody(); } } @@ -7558,21 +7616,21 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 104; - this.enterRecursionRule(localContext, 104, SparkSqlParser.RULE_queryTerm, _p); + let _startState = 112; + this.enterRecursionRule(localContext, 112, SparkSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 2002; + this.state = 2001; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2024; + this.state = 2023; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -7580,19 +7638,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2022; + this.state = 2021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2004; + this.state = 2003; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2005; + this.state = 2004; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7602,17 +7660,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2007; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2006; + this.state = 2005; this.setQuantifier(); } } - this.state = 2009; + this.state = 2008; localContext._right = this.queryTerm(4); } break; @@ -7621,23 +7679,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2010; + this.state = 2009; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2011; + this.state = 2010; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2013; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2012; + this.state = 2011; this.setQuantifier(); } } - this.state = 2015; + this.state = 2014; localContext._right = this.queryTerm(3); } break; @@ -7646,11 +7704,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2016; + this.state = 2015; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2017; + this.state = 2016; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7660,26 +7718,26 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 2018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2018; + this.state = 2017; this.setQuantifier(); } } - this.state = 2021; + this.state = 2020; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2026; + this.state = 2025; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } } } @@ -7699,9 +7757,9 @@ export class SparkSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 106, SparkSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 114, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2036; + this.state = 2035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7709,41 +7767,41 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 2026; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2028; + this.state = 2027; this.fromStatement(); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2029; + this.state = 2028; this.match(SparkSqlParser.KW_TABLE); - this.state = 2030; + this.state = 2029; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2031; + this.state = 2030; this.inlineTable(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2032; + this.state = 2031; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2033; + this.state = 2032; this.query(); - this.state = 2034; + this.state = 2033; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7767,33 +7825,33 @@ export class SparkSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 108, SparkSqlParser.RULE_sortItem); + this.enterRule(localContext, 116, SparkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2038; + this.state = 2037; this.columnName(); } break; case 2: { - this.state = 2039; + this.state = 2038; this.expression(); } break; } - this.state = 2043; + this.state = 2042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2042; + this.state = 2041; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7806,14 +7864,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2047; + this.state = 2046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2045; + this.state = 2044; this.match(SparkSqlParser.KW_NULLS); - this.state = 2046; + this.state = 2045; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7844,14 +7902,14 @@ export class SparkSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatement); + this.enterRule(localContext, 118, SparkSqlParser.RULE_fromStatement); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2049; + this.state = 2048; this.fromClause(); - this.state = 2051; + this.state = 2050; this.errorHandler.sync(this); alternative = 1; do { @@ -7859,7 +7917,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 2050; + this.state = 2049; this.fromStatementBody(); } } @@ -7867,9 +7925,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2053; + this.state = 2052; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -7889,93 +7947,93 @@ export class SparkSqlParser extends SQLParserBase { } public fromStatementBody(): FromStatementBodyContext { let localContext = new FromStatementBodyContext(this.context, this.state); - this.enterRule(localContext, 112, SparkSqlParser.RULE_fromStatementBody); + this.enterRule(localContext, 120, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2082; + this.state = 2081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2054; this.transformClause(); - this.state = 2057; + this.state = 2056; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2056; + this.state = 2055; this.whereClause(); } break; } - this.state = 2059; + this.state = 2058; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2061; + this.state = 2060; this.selectClause(); - this.state = 2065; + this.state = 2064; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2062; + this.state = 2061; this.lateralView(); } } } - this.state = 2067; + this.state = 2066; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); } - this.state = 2069; + this.state = 2068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2068; + this.state = 2067; this.whereClause(); } break; } - this.state = 2072; + this.state = 2071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2071; + this.state = 2070; this.aggregationClause(); } break; } - this.state = 2075; + this.state = 2074; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2074; + this.state = 2073; this.havingClause(); } break; } - this.state = 2078; + this.state = 2077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2077; + this.state = 2076; this.windowClause(); } break; } - this.state = 2080; + this.state = 2079; this.queryOrganization(); } break; @@ -7997,79 +8055,79 @@ export class SparkSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 114, SparkSqlParser.RULE_querySpecification); + this.enterRule(localContext, 122, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2128; + this.state = 2127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2083; this.transformClause(); - this.state = 2086; + this.state = 2085; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2085; + this.state = 2084; this.fromClause(); } break; } - this.state = 2091; + this.state = 2090; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 242, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2088; + this.state = 2087; this.lateralView(); } } } - this.state = 2093; + this.state = 2092; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 242, this.context); } - this.state = 2095; + this.state = 2094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2094; + this.state = 2093; this.whereClause(); } break; } - this.state = 2098; + this.state = 2097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2097; + this.state = 2096; this.aggregationClause(); } break; } - this.state = 2101; + this.state = 2100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2100; + this.state = 2099; this.havingClause(); } break; } - this.state = 2104; + this.state = 2103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2103; + this.state = 2102; this.windowClause(); } break; @@ -8079,70 +8137,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2106; + this.state = 2105; this.selectClause(); - this.state = 2108; + this.state = 2107; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2107; + this.state = 2106; this.fromClause(); } break; } - this.state = 2113; + this.state = 2112; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 248, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2110; + this.state = 2109; this.lateralView(); } } } - this.state = 2115; + this.state = 2114; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 248, this.context); } - this.state = 2117; + this.state = 2116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2116; + this.state = 2115; this.whereClause(); } break; } - this.state = 2120; + this.state = 2119; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2119; + this.state = 2118; this.aggregationClause(); } break; } - this.state = 2123; + this.state = 2122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2122; + this.state = 2121; this.havingClause(); } break; } - this.state = 2126; + this.state = 2125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2125; + this.state = 2124; this.windowClause(); } break; @@ -8167,147 +8225,147 @@ export class SparkSqlParser extends SQLParserBase { } public transformClause(): TransformClauseContext { let localContext = new TransformClauseContext(this.context, this.state); - this.enterRule(localContext, 116, SparkSqlParser.RULE_transformClause); + this.enterRule(localContext, 124, SparkSqlParser.RULE_transformClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2130; + this.state = 2129; this.match(SparkSqlParser.KW_SELECT); - this.state = 2131; + this.state = 2130; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2132; + this.state = 2131; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2134; + this.state = 2133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2133; + this.state = 2132; this.setQuantifier(); } break; } - this.state = 2136; + this.state = 2135; this.expressionSeq(); - this.state = 2137; + this.state = 2136; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2139; + this.state = 2138; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2141; + this.state = 2140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2140; + this.state = 2139; this.setQuantifier(); } break; } - this.state = 2143; + this.state = 2142; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2144; + this.state = 2143; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2146; + this.state = 2145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2145; + this.state = 2144; this.setQuantifier(); } break; } - this.state = 2148; + this.state = 2147; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2152; + this.state = 2151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2151; + this.state = 2150; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2156; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2154; + this.state = 2153; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2155; + this.state = 2154; localContext._recordWriter = this.stringLit(); } } - this.state = 2158; + this.state = 2157; this.match(SparkSqlParser.KW_USING); - this.state = 2159; + this.state = 2158; localContext._script = this.stringLit(); - this.state = 2172; + this.state = 2171; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2160; + this.state = 2159; this.match(SparkSqlParser.KW_AS); - this.state = 2170; + this.state = 2169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2161; + this.state = 2160; this.identifierSeq(); } break; case 2: { - this.state = 2162; + this.state = 2161; this.colTypeList(); } break; case 3: { { - this.state = 2163; + this.state = 2162; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2166; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: { - this.state = 2164; + this.state = 2163; this.identifierSeq(); } break; case 2: { - this.state = 2165; + this.state = 2164; this.colTypeList(); } break; } - this.state = 2168; + this.state = 2167; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8316,24 +8374,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2175; + this.state = 2174; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2174; + this.state = 2173; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2179; + this.state = 2178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2177; + this.state = 2176; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2178; + this.state = 2177; localContext._recordReader = this.stringLit(); } break; @@ -8356,41 +8414,41 @@ export class SparkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 118, SparkSqlParser.RULE_selectClause); + this.enterRule(localContext, 126, SparkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2180; this.match(SparkSqlParser.KW_SELECT); - this.state = 2185; + this.state = 2184; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 265, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2182; + this.state = 2181; localContext._hint = this.hint(); localContext._hints.push(localContext._hint); } } } - this.state = 2187; + this.state = 2186; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 265, this.context); } - this.state = 2189; + this.state = 2188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2188; + this.state = 2187; this.setQuantifier(); } break; } - this.state = 2191; + this.state = 2190; this.namedExpressionSeq(); } } @@ -8410,13 +8468,13 @@ export class SparkSqlParser extends SQLParserBase { } public setClause(): SetClauseContext { let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 120, SparkSqlParser.RULE_setClause); + this.enterRule(localContext, 128, SparkSqlParser.RULE_setClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2192; this.match(SparkSqlParser.KW_SET); - this.state = 2194; + this.state = 2193; this.assignmentList(); } } @@ -8436,30 +8494,30 @@ export class SparkSqlParser extends SQLParserBase { } public matchedClause(): MatchedClauseContext { let localContext = new MatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 122, SparkSqlParser.RULE_matchedClause); + this.enterRule(localContext, 130, SparkSqlParser.RULE_matchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2195; this.match(SparkSqlParser.KW_WHEN); - this.state = 2197; + this.state = 2196; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2200; + this.state = 2199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2198; + this.state = 2197; this.match(SparkSqlParser.KW_AND); - this.state = 2199; + this.state = 2198; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2202; + this.state = 2201; this.match(SparkSqlParser.KW_THEN); - this.state = 2203; + this.state = 2202; this.matchedAction(); } } @@ -8479,44 +8537,44 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedClause(): NotMatchedClauseContext { let localContext = new NotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 124, SparkSqlParser.RULE_notMatchedClause); + this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2204; this.match(SparkSqlParser.KW_WHEN); - this.state = 2206; + this.state = 2205; this.match(SparkSqlParser.KW_NOT); - this.state = 2207; + this.state = 2206; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2210; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2208; + this.state = 2207; this.match(SparkSqlParser.KW_BY); - this.state = 2209; + this.state = 2208; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2214; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2212; + this.state = 2211; this.match(SparkSqlParser.KW_AND); - this.state = 2213; + this.state = 2212; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2216; + this.state = 2215; this.match(SparkSqlParser.KW_THEN); - this.state = 2217; + this.state = 2216; this.notMatchedAction(); } } @@ -8536,36 +8594,36 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceClause(): NotMatchedBySourceClauseContext { let localContext = new NotMatchedBySourceClauseContext(this.context, this.state); - this.enterRule(localContext, 126, SparkSqlParser.RULE_notMatchedBySourceClause); + this.enterRule(localContext, 134, SparkSqlParser.RULE_notMatchedBySourceClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2218; this.match(SparkSqlParser.KW_WHEN); - this.state = 2220; + this.state = 2219; this.match(SparkSqlParser.KW_NOT); - this.state = 2221; + this.state = 2220; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2222; + this.state = 2221; this.match(SparkSqlParser.KW_BY); - this.state = 2223; + this.state = 2222; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2226; + this.state = 2225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2224; + this.state = 2223; this.match(SparkSqlParser.KW_AND); - this.state = 2225; + this.state = 2224; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2228; + this.state = 2227; this.match(SparkSqlParser.KW_THEN); - this.state = 2229; + this.state = 2228; this.notMatchedBySourceAction(); } } @@ -8585,37 +8643,37 @@ export class SparkSqlParser extends SQLParserBase { } public matchedAction(): MatchedActionContext { let localContext = new MatchedActionContext(this.context, this.state); - this.enterRule(localContext, 128, SparkSqlParser.RULE_matchedAction); + this.enterRule(localContext, 136, SparkSqlParser.RULE_matchedAction); try { - this.state = 2238; + this.state = 2237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2230; this.match(SparkSqlParser.KW_DELETE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2232; + this.state = 2231; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2233; + this.state = 2232; this.match(SparkSqlParser.KW_SET); - this.state = 2234; + this.state = 2233; this.match(SparkSqlParser.ASTERISK); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2235; + this.state = 2234; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2236; + this.state = 2235; this.match(SparkSqlParser.KW_SET); - this.state = 2237; + this.state = 2236; this.assignmentList(); } break; @@ -8637,55 +8695,55 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedAction(): NotMatchedActionContext { let localContext = new NotMatchedActionContext(this.context, this.state); - this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedAction); + this.enterRule(localContext, 138, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2258; + this.state = 2257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2239; this.match(SparkSqlParser.KW_INSERT); - this.state = 2241; + this.state = 2240; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2241; this.match(SparkSqlParser.KW_INSERT); - this.state = 2243; + this.state = 2242; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2244; + this.state = 2243; this.multipartIdentifierList(); - this.state = 2245; + this.state = 2244; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2246; + this.state = 2245; this.match(SparkSqlParser.KW_VALUES); - this.state = 2247; + this.state = 2246; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2248; + this.state = 2247; this.expression(); - this.state = 2253; + this.state = 2252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2249; + this.state = 2248; this.match(SparkSqlParser.COMMA); - this.state = 2250; + this.state = 2249; this.expression(); } } - this.state = 2255; + this.state = 2254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2256; + this.state = 2255; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8707,26 +8765,26 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceAction(): NotMatchedBySourceActionContext { let localContext = new NotMatchedBySourceActionContext(this.context, this.state); - this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedBySourceAction); + this.enterRule(localContext, 140, SparkSqlParser.RULE_notMatchedBySourceAction); try { - this.state = 2264; + this.state = 2263; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2259; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 2); { - this.state = 2261; + this.state = 2260; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2262; + this.state = 2261; this.match(SparkSqlParser.KW_SET); - this.state = 2263; + this.state = 2262; this.assignmentList(); } break; @@ -8750,26 +8808,26 @@ export class SparkSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 134, SparkSqlParser.RULE_assignmentList); + this.enterRule(localContext, 142, SparkSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2265; this.assignment(); - this.state = 2271; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2267; + this.state = 2266; this.match(SparkSqlParser.COMMA); - this.state = 2268; + this.state = 2267; this.assignment(); } } - this.state = 2273; + this.state = 2272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8791,15 +8849,15 @@ export class SparkSqlParser extends SQLParserBase { } public assignment(): AssignmentContext { let localContext = new AssignmentContext(this.context, this.state); - this.enterRule(localContext, 136, SparkSqlParser.RULE_assignment); + this.enterRule(localContext, 144, SparkSqlParser.RULE_assignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2273; localContext._key = this.multipartIdentifier(); - this.state = 2275; + this.state = 2274; this.match(SparkSqlParser.EQ); - this.state = 2276; + this.state = 2275; localContext._value = this.expression(); } } @@ -8819,13 +8877,13 @@ export class SparkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 138, SparkSqlParser.RULE_whereClause); + this.enterRule(localContext, 146, SparkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2277; this.match(SparkSqlParser.KW_WHERE); - this.state = 2279; + this.state = 2278; this.booleanExpression(0); } } @@ -8845,13 +8903,13 @@ export class SparkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 140, SparkSqlParser.RULE_havingClause); + this.enterRule(localContext, 148, SparkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2280; this.match(SparkSqlParser.KW_HAVING); - this.state = 2282; + this.state = 2281; this.booleanExpression(0); } } @@ -8871,42 +8929,42 @@ export class SparkSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 142, SparkSqlParser.RULE_hint); + this.enterRule(localContext, 150, SparkSqlParser.RULE_hint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; + this.state = 2283; this.match(SparkSqlParser.HENT_START); - this.state = 2285; + this.state = 2284; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2292; + this.state = 2291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2287; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2286; + this.state = 2285; this.match(SparkSqlParser.COMMA); } } - this.state = 2289; + this.state = 2288; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2294; + this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2295; + this.state = 2294; this.match(SparkSqlParser.HENT_END); } } @@ -8926,47 +8984,47 @@ export class SparkSqlParser extends SQLParserBase { } public hintStatement(): HintStatementContext { let localContext = new HintStatementContext(this.context, this.state); - this.enterRule(localContext, 144, SparkSqlParser.RULE_hintStatement); + this.enterRule(localContext, 152, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2310; + this.state = 2309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2296; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2298; + this.state = 2297; localContext._hintName = this.identifier(); - this.state = 2299; + this.state = 2298; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2300; + this.state = 2299; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2305; + this.state = 2304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2301; + this.state = 2300; this.match(SparkSqlParser.COMMA); - this.state = 2302; + this.state = 2301; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2307; + this.state = 2306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2308; + this.state = 2307; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8988,65 +9046,65 @@ export class SparkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 146, SparkSqlParser.RULE_fromClause); + this.enterRule(localContext, 154, SparkSqlParser.RULE_fromClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2311; this.match(SparkSqlParser.KW_FROM); - this.state = 2313; + this.state = 2312; this.relation(); - this.state = 2318; + this.state = 2317; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 280, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2314; + this.state = 2313; this.match(SparkSqlParser.COMMA); - this.state = 2315; + this.state = 2314; this.relation(); } } } - this.state = 2320; + this.state = 2319; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 280, this.context); } - this.state = 2324; + this.state = 2323; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2321; + this.state = 2320; this.lateralView(); } } } - this.state = 2326; + this.state = 2325; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 281, this.context); } - this.state = 2328; + this.state = 2327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: { - this.state = 2327; + this.state = 2326; this.pivotClause(); } break; } - this.state = 2331; + this.state = 2330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2330; + this.state = 2329; this.unpivotClause(); } break; @@ -9069,12 +9127,12 @@ export class SparkSqlParser extends SQLParserBase { } public functionKind(): FunctionKindContext { let localContext = new FunctionKindContext(this.context, this.state); - this.enterRule(localContext, 148, SparkSqlParser.RULE_functionKind); + this.enterRule(localContext, 156, SparkSqlParser.RULE_functionKind); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2332; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 290 || _la === 331)) { this.errorHandler.recoverInline(this); @@ -9101,26 +9159,26 @@ export class SparkSqlParser extends SQLParserBase { } public temporalClause(): TemporalClauseContext { let localContext = new TemporalClauseContext(this.context, this.state); - this.enterRule(localContext, 150, SparkSqlParser.RULE_temporalClause); + this.enterRule(localContext, 158, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2349; + this.state = 2348; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2335; + this.state = 2334; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2338; + this.state = 2337; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9129,28 +9187,28 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2339; + this.state = 2338; this.match(SparkSqlParser.KW_AS); - this.state = 2340; + this.state = 2339; this.match(SparkSqlParser.KW_OF); - this.state = 2341; + this.state = 2340; this.version(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2343; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2342; + this.state = 2341; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2345; + this.state = 2344; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9159,11 +9217,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2346; + this.state = 2345; this.match(SparkSqlParser.KW_AS); - this.state = 2347; + this.state = 2346; this.match(SparkSqlParser.KW_OF); - this.state = 2348; + this.state = 2347; localContext._timestamp = this.valueExpression(0); } break; @@ -9185,119 +9243,119 @@ export class SparkSqlParser extends SQLParserBase { } public aggregationClause(): AggregationClauseContext { let localContext = new AggregationClauseContext(this.context, this.state); - this.enterRule(localContext, 152, SparkSqlParser.RULE_aggregationClause); + this.enterRule(localContext, 160, SparkSqlParser.RULE_aggregationClause); let _la: number; try { let alternative: number; - this.state = 2390; + this.state = 2389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2350; this.match(SparkSqlParser.KW_GROUP); - this.state = 2352; + this.state = 2351; this.match(SparkSqlParser.KW_BY); - this.state = 2353; + this.state = 2352; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2358; + this.state = 2357; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 287, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2354; + this.state = 2353; this.match(SparkSqlParser.COMMA); - this.state = 2355; + this.state = 2354; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2360; + this.state = 2359; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 287, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2361; + this.state = 2360; this.match(SparkSqlParser.KW_GROUP); - this.state = 2362; + this.state = 2361; this.match(SparkSqlParser.KW_BY); - this.state = 2363; + this.state = 2362; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2368; + this.state = 2367; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 288, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2364; + this.state = 2363; this.match(SparkSqlParser.COMMA); - this.state = 2365; + this.state = 2364; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2370; + this.state = 2369; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 288, this.context); } - this.state = 2388; + this.state = 2387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2371; + this.state = 2370; this.match(SparkSqlParser.KW_WITH); - this.state = 2372; + this.state = 2371; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2373; + this.state = 2372; this.match(SparkSqlParser.KW_WITH); - this.state = 2374; + this.state = 2373; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2375; + this.state = 2374; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2376; + this.state = 2375; this.match(SparkSqlParser.KW_SETS); - this.state = 2377; + this.state = 2376; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2378; + this.state = 2377; this.groupingSet(); - this.state = 2383; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2379; + this.state = 2378; this.match(SparkSqlParser.COMMA); - this.state = 2380; + this.state = 2379; this.groupingSet(); } } - this.state = 2385; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2386; + this.state = 2385; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9322,29 +9380,29 @@ export class SparkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 154, SparkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 162, SparkSqlParser.RULE_groupByClause); try { - this.state = 2395; + this.state = 2394; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2392; + this.state = 2391; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2393; + this.state = 2392; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2394; + this.state = 2393; this.expression(); } break; @@ -9366,17 +9424,17 @@ export class SparkSqlParser extends SQLParserBase { } public groupingAnalytics(): GroupingAnalyticsContext { let localContext = new GroupingAnalyticsContext(this.context, this.state); - this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingAnalytics); + this.enterRule(localContext, 164, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2422; + this.state = 2421; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2396; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9385,58 +9443,58 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2398; + this.state = 2397; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2399; + this.state = 2398; this.groupingSet(); - this.state = 2404; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2400; + this.state = 2399; this.match(SparkSqlParser.COMMA); - this.state = 2401; + this.state = 2400; this.groupingSet(); } } - this.state = 2406; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2407; + this.state = 2406; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2409; + this.state = 2408; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2410; + this.state = 2409; this.match(SparkSqlParser.KW_SETS); - this.state = 2411; + this.state = 2410; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2412; + this.state = 2411; this.groupingElement(); - this.state = 2417; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2413; + this.state = 2412; this.match(SparkSqlParser.COMMA); - this.state = 2414; + this.state = 2413; this.groupingElement(); } } - this.state = 2419; + this.state = 2418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2420; + this.state = 2419; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9460,22 +9518,22 @@ export class SparkSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingElement); + this.enterRule(localContext, 166, SparkSqlParser.RULE_groupingElement); try { - this.state = 2426; + this.state = 2425; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2424; + this.state = 2423; this.groupingAnalytics(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2425; + this.state = 2424; this.groupingSet(); } break; @@ -9497,86 +9555,86 @@ export class SparkSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 160, SparkSqlParser.RULE_groupingSet); + this.enterRule(localContext, 168, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2448; + this.state = 2447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2428; + this.state = 2427; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2429; + this.state = 2428; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2430; + this.state = 2429; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2445; + this.state = 2444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2433; + this.state = 2432; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2431; + this.state = 2430; this.columnName(); } break; case 2: { - this.state = 2432; + this.state = 2431; this.expression(); } break; } - this.state = 2442; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2435; + this.state = 2434; this.match(SparkSqlParser.COMMA); - this.state = 2438; + this.state = 2437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: { - this.state = 2436; + this.state = 2435; this.columnName(); } break; case 2: { - this.state = 2437; + this.state = 2436; this.expression(); } break; } } } - this.state = 2444; + this.state = 2443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2447; + this.state = 2446; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9598,48 +9656,48 @@ export class SparkSqlParser extends SQLParserBase { } public pivotClause(): PivotClauseContext { let localContext = new PivotClauseContext(this.context, this.state); - this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotClause); + this.enterRule(localContext, 170, SparkSqlParser.RULE_pivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2449; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2451; + this.state = 2450; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2452; + this.state = 2451; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2453; + this.state = 2452; this.match(SparkSqlParser.KW_FOR); - this.state = 2454; + this.state = 2453; this.pivotColumn(); - this.state = 2455; + this.state = 2454; this.match(SparkSqlParser.KW_IN); - this.state = 2456; + this.state = 2455; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2457; + this.state = 2456; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2462; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2458; + this.state = 2457; this.match(SparkSqlParser.COMMA); - this.state = 2459; + this.state = 2458; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2464; + this.state = 2463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2465; + this.state = 2464; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2466; + this.state = 2465; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9659,10 +9717,10 @@ export class SparkSqlParser extends SQLParserBase { } public pivotColumn(): PivotColumnContext { let localContext = new PivotColumnContext(this.context, this.state); - this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotColumn); + this.enterRule(localContext, 172, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2480; + this.state = 2479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10010,7 +10068,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2467; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10018,29 +10076,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2469; + this.state = 2468; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2470; + this.state = 2469; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2475; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2471; + this.state = 2470; this.match(SparkSqlParser.COMMA); - this.state = 2472; + this.state = 2471; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2477; + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2478; + this.state = 2477; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10064,29 +10122,29 @@ export class SparkSqlParser extends SQLParserBase { } public pivotValue(): PivotValueContext { let localContext = new PivotValueContext(this.context, this.state); - this.enterRule(localContext, 166, SparkSqlParser.RULE_pivotValue); + this.enterRule(localContext, 174, SparkSqlParser.RULE_pivotValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2481; this.expression(); - this.state = 2487; + this.state = 2486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2484; + this.state = 2483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2483; + this.state = 2482; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2486; + this.state = 2485; this.identifier(); } } @@ -10109,45 +10167,45 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotClause(): UnpivotClauseContext { let localContext = new UnpivotClauseContext(this.context, this.state); - this.enterRule(localContext, 168, SparkSqlParser.RULE_unpivotClause); + this.enterRule(localContext, 176, SparkSqlParser.RULE_unpivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2488; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2491; + this.state = 2490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2490; + this.state = 2489; localContext._nullOperator = this.unpivotNullClause(); } } - this.state = 2493; + this.state = 2492; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2494; + this.state = 2493; localContext._operator = this.unpivotOperator(); - this.state = 2495; + this.state = 2494; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2500; + this.state = 2499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2497; + this.state = 2496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2496; + this.state = 2495; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2499; + this.state = 2498; this.identifier(); } break; @@ -10170,12 +10228,12 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotNullClause(): UnpivotNullClauseContext { let localContext = new UnpivotNullClauseContext(this.context, this.state); - this.enterRule(localContext, 170, SparkSqlParser.RULE_unpivotNullClause); + this.enterRule(localContext, 178, SparkSqlParser.RULE_unpivotNullClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2502; + this.state = 2501; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10184,7 +10242,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2503; + this.state = 2502; this.match(SparkSqlParser.KW_NULLS); } } @@ -10204,11 +10262,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotOperator(): UnpivotOperatorContext { let localContext = new UnpivotOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, SparkSqlParser.RULE_unpivotOperator); + this.enterRule(localContext, 180, SparkSqlParser.RULE_unpivotOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2506; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10555,13 +10613,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2505; + this.state = 2504; this.unpivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2506; + this.state = 2505; this.unpivotMultiValueColumnClause(); } break; @@ -10586,42 +10644,42 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotSingleValueColumnClause(): UnpivotSingleValueColumnClauseContext { let localContext = new UnpivotSingleValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 174, SparkSqlParser.RULE_unpivotSingleValueColumnClause); + this.enterRule(localContext, 182, SparkSqlParser.RULE_unpivotSingleValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2508; this.unpivotValueColumn(); - this.state = 2510; + this.state = 2509; this.match(SparkSqlParser.KW_FOR); - this.state = 2511; + this.state = 2510; this.unpivotNameColumn(); - this.state = 2512; + this.state = 2511; this.match(SparkSqlParser.KW_IN); - this.state = 2513; + this.state = 2512; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2514; + this.state = 2513; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); - this.state = 2519; + this.state = 2518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2515; + this.state = 2514; this.match(SparkSqlParser.COMMA); - this.state = 2516; + this.state = 2515; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); } } - this.state = 2521; + this.state = 2520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2522; + this.state = 2521; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10641,64 +10699,64 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotMultiValueColumnClause(): UnpivotMultiValueColumnClauseContext { let localContext = new UnpivotMultiValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 176, SparkSqlParser.RULE_unpivotMultiValueColumnClause); + this.enterRule(localContext, 184, SparkSqlParser.RULE_unpivotMultiValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2524; + this.state = 2523; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2525; + this.state = 2524; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); - this.state = 2530; + this.state = 2529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2526; + this.state = 2525; this.match(SparkSqlParser.COMMA); - this.state = 2527; + this.state = 2526; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); } } - this.state = 2532; + this.state = 2531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2533; + this.state = 2532; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2534; + this.state = 2533; this.match(SparkSqlParser.KW_FOR); - this.state = 2535; + this.state = 2534; this.unpivotNameColumn(); - this.state = 2536; + this.state = 2535; this.match(SparkSqlParser.KW_IN); - this.state = 2537; + this.state = 2536; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2538; + this.state = 2537; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); - this.state = 2543; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2539; + this.state = 2538; this.match(SparkSqlParser.COMMA); - this.state = 2540; + this.state = 2539; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); } } - this.state = 2545; + this.state = 2544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2546; + this.state = 2545; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10718,41 +10776,41 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumnSet(): UnpivotColumnSetContext { let localContext = new UnpivotColumnSetContext(this.context, this.state); - this.enterRule(localContext, 178, SparkSqlParser.RULE_unpivotColumnSet); + this.enterRule(localContext, 186, SparkSqlParser.RULE_unpivotColumnSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2547; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2549; + this.state = 2548; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); - this.state = 2554; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2550; + this.state = 2549; this.match(SparkSqlParser.COMMA); - this.state = 2551; + this.state = 2550; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); } } - this.state = 2556; + this.state = 2555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2557; + this.state = 2556; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2559; + this.state = 2558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2558; + this.state = 2557; this.unpivotAlias(); } } @@ -10775,11 +10833,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotValueColumn(): UnpivotValueColumnContext { let localContext = new UnpivotValueColumnContext(this.context, this.state); - this.enterRule(localContext, 180, SparkSqlParser.RULE_unpivotValueColumn); + this.enterRule(localContext, 188, SparkSqlParser.RULE_unpivotValueColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2560; this.identifier(); } } @@ -10799,11 +10857,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotNameColumn(): UnpivotNameColumnContext { let localContext = new UnpivotNameColumnContext(this.context, this.state); - this.enterRule(localContext, 182, SparkSqlParser.RULE_unpivotNameColumn); + this.enterRule(localContext, 190, SparkSqlParser.RULE_unpivotNameColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2563; + this.state = 2562; this.identifier(); } } @@ -10823,19 +10881,19 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumnAndAlias(): UnpivotColumnAndAliasContext { let localContext = new UnpivotColumnAndAliasContext(this.context, this.state); - this.enterRule(localContext, 184, SparkSqlParser.RULE_unpivotColumnAndAlias); + this.enterRule(localContext, 192, SparkSqlParser.RULE_unpivotColumnAndAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; + this.state = 2564; this.unpivotColumn(); - this.state = 2567; + this.state = 2566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2566; + this.state = 2565; this.unpivotAlias(); } } @@ -10858,11 +10916,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumn(): UnpivotColumnContext { let localContext = new UnpivotColumnContext(this.context, this.state); - this.enterRule(localContext, 186, SparkSqlParser.RULE_unpivotColumn); + this.enterRule(localContext, 194, SparkSqlParser.RULE_unpivotColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2568; this.multipartIdentifier(); } } @@ -10882,21 +10940,21 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotAlias(): UnpivotAliasContext { let localContext = new UnpivotAliasContext(this.context, this.state); - this.enterRule(localContext, 188, SparkSqlParser.RULE_unpivotAlias); + this.enterRule(localContext, 196, SparkSqlParser.RULE_unpivotAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2572; + this.state = 2571; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2571; + this.state = 2570; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2574; + this.state = 2573; this.identifier(); } } @@ -10916,15 +10974,15 @@ export class SparkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 190, SparkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 198, SparkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2575; this.match(SparkSqlParser.KW_IF); - this.state = 2577; + this.state = 2576; this.match(SparkSqlParser.KW_NOT); - this.state = 2578; + this.state = 2577; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10944,13 +11002,13 @@ export class SparkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 192, SparkSqlParser.RULE_ifExists); + this.enterRule(localContext, 200, SparkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2579; this.match(SparkSqlParser.KW_IF); - this.state = 2581; + this.state = 2580; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10970,96 +11028,96 @@ export class SparkSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_lateralView); + this.enterRule(localContext, 202, SparkSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2582; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2584; + this.state = 2583; this.match(SparkSqlParser.KW_VIEW); - this.state = 2586; + this.state = 2585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2585; + this.state = 2584; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2588; + this.state = 2587; this.viewName(); - this.state = 2589; + this.state = 2588; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2598; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2590; + this.state = 2589; this.expression(); - this.state = 2595; + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2591; + this.state = 2590; this.match(SparkSqlParser.COMMA); - this.state = 2592; + this.state = 2591; this.expression(); } } - this.state = 2597; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2600; + this.state = 2599; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2601; + this.state = 2600; this.tableAlias(); - this.state = 2613; + this.state = 2612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2603; + this.state = 2602; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2602; + this.state = 2601; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2605; + this.state = 2604; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2610; + this.state = 2609; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2606; + this.state = 2605; this.match(SparkSqlParser.COMMA); - this.state = 2607; + this.state = 2606; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2612; + this.state = 2611; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 322, this.context); } } break; @@ -11082,12 +11140,12 @@ export class SparkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 204, SparkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2614; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11114,49 +11172,49 @@ export class SparkSqlParser extends SQLParserBase { } public relation(): RelationContext { let localContext = new RelationContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_relation); + this.enterRule(localContext, 206, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2628; + this.state = 2627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2616; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2619; + this.state = 2618; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2618; + this.state = 2617; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2621; + this.state = 2620; this.relationPrimary(); - this.state = 2625; + this.state = 2624; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2622; + this.state = 2621; this.relationExtension(); } } } - this.state = 2627; + this.state = 2626; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } } break; @@ -11178,9 +11236,9 @@ export class SparkSqlParser extends SQLParserBase { } public relationExtension(): RelationExtensionContext { let localContext = new RelationExtensionContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_relationExtension); + this.enterRule(localContext, 208, SparkSqlParser.RULE_relationExtension); try { - this.state = 2633; + this.state = 2632; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11194,21 +11252,21 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SEMI: this.enterOuterAlt(localContext, 1); { - this.state = 2630; + this.state = 2629; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: this.enterOuterAlt(localContext, 2); { - this.state = 2631; + this.state = 2630; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: this.enterOuterAlt(localContext, 3); { - this.state = 2632; + this.state = 2631; this.unpivotClause(); } break; @@ -11232,9 +11290,9 @@ export class SparkSqlParser extends SQLParserBase { } public joinRelation(): JoinRelationContext { let localContext = new JoinRelationContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_joinRelation); + this.enterRule(localContext, 210, SparkSqlParser.RULE_joinRelation); try { - this.state = 2652; + this.state = 2651; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11248,29 +11306,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2635; + this.state = 2634; this.joinType(); } - this.state = 2636; + this.state = 2635; this.match(SparkSqlParser.KW_JOIN); - this.state = 2638; + this.state = 2637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2637; + this.state = 2636; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2640; + this.state = 2639; localContext._right = this.relationPrimary(); - this.state = 2642; + this.state = 2641; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2641; + this.state = 2640; this.joinCriteria(); } break; @@ -11280,23 +11338,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2644; + this.state = 2643; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2645; + this.state = 2644; this.joinType(); - this.state = 2646; + this.state = 2645; this.match(SparkSqlParser.KW_JOIN); - this.state = 2648; + this.state = 2647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2647; + this.state = 2646; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2650; + this.state = 2649; localContext._right = this.relationPrimary(); } break; @@ -11320,21 +11378,21 @@ export class SparkSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_joinType); + this.enterRule(localContext, 212, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2678; + this.state = 2677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2655; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2654; + this.state = 2653; this.match(SparkSqlParser.KW_INNER); } } @@ -11344,21 +11402,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2657; + this.state = 2656; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2658; + this.state = 2657; this.match(SparkSqlParser.KW_LEFT); - this.state = 2660; + this.state = 2659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2659; + this.state = 2658; this.match(SparkSqlParser.KW_OUTER); } } @@ -11368,31 +11426,31 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2663; + this.state = 2662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2662; + this.state = 2661; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2665; + this.state = 2664; this.match(SparkSqlParser.KW_SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2666; + this.state = 2665; this.match(SparkSqlParser.KW_RIGHT); - this.state = 2668; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2667; + this.state = 2666; this.match(SparkSqlParser.KW_OUTER); } } @@ -11402,14 +11460,14 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2670; + this.state = 2669; this.match(SparkSqlParser.KW_FULL); - this.state = 2672; + this.state = 2671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2671; + this.state = 2670; this.match(SparkSqlParser.KW_OUTER); } } @@ -11419,17 +11477,17 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2675; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2674; + this.state = 2673; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2677; + this.state = 2676; this.match(SparkSqlParser.KW_ANTI); } break; @@ -11451,26 +11509,26 @@ export class SparkSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 214, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2684; + this.state = 2683; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2679; this.match(SparkSqlParser.KW_ON); - this.state = 2681; + this.state = 2680; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2681; this.match(SparkSqlParser.KW_USING); - this.state = 2683; + this.state = 2682; this.identifierList(); } break; @@ -11494,39 +11552,39 @@ export class SparkSqlParser extends SQLParserBase { } public sample(): SampleContext { let localContext = new SampleContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_sample); + this.enterRule(localContext, 216, SparkSqlParser.RULE_sample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2685; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2687; + this.state = 2686; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2689; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2688; + this.state = 2687; this.sampleMethod(); } } - this.state = 2691; + this.state = 2690; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2696; + this.state = 2695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 2692; + this.state = 2691; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2693; + this.state = 2692; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2694; + this.state = 2693; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2695; + this.state = 2694; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11549,26 +11607,26 @@ export class SparkSqlParser extends SQLParserBase { } public sampleMethod(): SampleMethodContext { let localContext = new SampleMethodContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_sampleMethod); + this.enterRule(localContext, 218, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2722; + this.state = 2721; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2698; + this.state = 2697; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2701; + this.state = 2700; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11578,55 +11636,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2702; + this.state = 2701; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2703; + this.state = 2702; this.expression(); - this.state = 2704; + this.state = 2703; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2706; + this.state = 2705; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2707; + this.state = 2706; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2708; + this.state = 2707; this.match(SparkSqlParser.KW_OUT); - this.state = 2709; + this.state = 2708; this.match(SparkSqlParser.KW_OF); - this.state = 2710; + this.state = 2709; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2719; + this.state = 2718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2711; + this.state = 2710; this.match(SparkSqlParser.KW_ON); - this.state = 2717; + this.state = 2716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 2712; + this.state = 2711; this.identifier(); } break; case 2: { - this.state = 2713; + this.state = 2712; this.qualifiedName(); - this.state = 2714; + this.state = 2713; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2715; + this.state = 2714; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11639,7 +11697,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2721; + this.state = 2720; localContext._bytes = this.expression(); } break; @@ -11661,15 +11719,15 @@ export class SparkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_identifierList); + this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2723; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2725; + this.state = 2724; this.identifierSeq(); - this.state = 2726; + this.state = 2725; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11689,32 +11747,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 222, SparkSqlParser.RULE_identifierSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2727; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2733; + this.state = 2732; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2729; + this.state = 2728; this.match(SparkSqlParser.COMMA); - this.state = 2730; + this.state = 2729; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2735; + this.state = 2734; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); } } } @@ -11734,32 +11792,32 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifierList(): OrderedIdentifierListContext { let localContext = new OrderedIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_orderedIdentifierList); + this.enterRule(localContext, 224, SparkSqlParser.RULE_orderedIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2735; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2737; + this.state = 2736; this.orderedIdentifier(); - this.state = 2742; + this.state = 2741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2738; + this.state = 2737; this.match(SparkSqlParser.COMMA); - this.state = 2739; + this.state = 2738; this.orderedIdentifier(); } } - this.state = 2744; + this.state = 2743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2745; + this.state = 2744; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11779,19 +11837,19 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifier(): OrderedIdentifierContext { let localContext = new OrderedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_orderedIdentifier); + this.enterRule(localContext, 226, SparkSqlParser.RULE_orderedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2746; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2749; + this.state = 2748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2748; + this.state = 2747; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11822,32 +11880,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierCommentList(): IdentifierCommentListContext { let localContext = new IdentifierCommentListContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierCommentList); + this.enterRule(localContext, 228, SparkSqlParser.RULE_identifierCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2750; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2752; + this.state = 2751; this.identifierComment(); - this.state = 2757; + this.state = 2756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2753; + this.state = 2752; this.match(SparkSqlParser.COMMA); - this.state = 2754; + this.state = 2753; this.identifierComment(); } } - this.state = 2759; + this.state = 2758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2760; + this.state = 2759; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11867,19 +11925,19 @@ export class SparkSqlParser extends SQLParserBase { } public identifierComment(): IdentifierCommentContext { let localContext = new IdentifierCommentContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_identifierComment); + this.enterRule(localContext, 230, SparkSqlParser.RULE_identifierComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2761; this.columnNameCreate(); - this.state = 2764; + this.state = 2763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2763; + this.state = 2762; this.commentSpec(); } } @@ -11902,117 +11960,117 @@ export class SparkSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 232, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2797; + this.state = 2796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2768; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2766; + this.state = 2765; this.tableName(); } break; case 2: { - this.state = 2767; + this.state = 2766; this.viewName(); } break; case 3: { - this.state = 2768; + this.state = 2767; this.identifierReference(); } break; } - this.state = 2772; + this.state = 2771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2771; + this.state = 2770; this.temporalClause(); } break; } - this.state = 2775; + this.state = 2774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2774; + this.state = 2773; this.sample(); } break; } - this.state = 2777; + this.state = 2776; this.tableAlias(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2779; + this.state = 2778; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2780; + this.state = 2779; this.query(); - this.state = 2781; + this.state = 2780; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2783; + this.state = 2782; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2782; + this.state = 2781; this.sample(); } break; } - this.state = 2785; + this.state = 2784; this.tableAlias(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2787; + this.state = 2786; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2788; + this.state = 2787; this.relation(); - this.state = 2789; + this.state = 2788; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2791; + this.state = 2790; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2790; + this.state = 2789; this.sample(); } break; } - this.state = 2793; + this.state = 2792; this.tableAlias(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2795; + this.state = 2794; this.inlineTable(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2796; + this.state = 2795; this.functionTable(); } break; @@ -12034,34 +12092,34 @@ export class SparkSqlParser extends SQLParserBase { } public inlineTable(): InlineTableContext { let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_inlineTable); + this.enterRule(localContext, 234, SparkSqlParser.RULE_inlineTable); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2799; + this.state = 2798; this.match(SparkSqlParser.KW_VALUES); - this.state = 2800; + this.state = 2799; this.expression(); - this.state = 2805; + this.state = 2804; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 357, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2801; + this.state = 2800; this.match(SparkSqlParser.COMMA); - this.state = 2802; + this.state = 2801; this.expression(); } } } - this.state = 2807; + this.state = 2806; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 357, this.context); } - this.state = 2808; + this.state = 2807; this.tableAlias(); } } @@ -12081,25 +12139,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2829; + this.state = 2828; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2809; this.match(SparkSqlParser.KW_TABLE); - this.state = 2811; + this.state = 2810; this.tableName(); - this.state = 2813; + this.state = 2812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2812; + this.state = 2811; this.tableArgumentPartitioning(); } } @@ -12109,20 +12167,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2815; + this.state = 2814; this.match(SparkSqlParser.KW_TABLE); - this.state = 2816; + this.state = 2815; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2817; + this.state = 2816; this.tableName(); - this.state = 2818; + this.state = 2817; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2820; + this.state = 2819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2819; + this.state = 2818; this.tableArgumentPartitioning(); } } @@ -12132,20 +12190,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2821; this.match(SparkSqlParser.KW_TABLE); - this.state = 2823; + this.state = 2822; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2824; + this.state = 2823; this.query(); - this.state = 2825; + this.state = 2824; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2827; + this.state = 2826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2826; + this.state = 2825; this.tableArgumentPartitioning(); } } @@ -12170,22 +12228,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 238, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2849; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2831; + this.state = 2830; this.match(SparkSqlParser.KW_WITH); - this.state = 2832; + this.state = 2831; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2833; + this.state = 2832; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12194,7 +12252,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2834; + this.state = 2833; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12203,38 +12261,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2835; + this.state = 2834; this.match(SparkSqlParser.KW_BY); - this.state = 2848; + this.state = 2847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { case 1: { { { - this.state = 2836; + this.state = 2835; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2837; + this.state = 2836; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2842; + this.state = 2841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2838; + this.state = 2837; this.match(SparkSqlParser.COMMA); - this.state = 2839; + this.state = 2838; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2844; + this.state = 2843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2845; + this.state = 2844; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12242,7 +12300,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2847; + this.state = 2846; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12254,12 +12312,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2868; + this.state = 2860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2852; + this.state = 2851; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12268,43 +12326,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2853; + this.state = 2852; this.match(SparkSqlParser.KW_BY); { - this.state = 2866; + this.state = 2858; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: { { - this.state = 2854; + this.state = 2853; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2854; + this.orderOrSortByClause(); this.state = 2855; - this.sortItem(); - this.state = 2860; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 2856; - this.match(SparkSqlParser.COMMA); - this.state = 2857; - this.sortItem(); - } - } - this.state = 2862; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 2863; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2865; + this.state = 2857; this.sortItem(); } break; @@ -12331,15 +12373,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 240, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2870; + this.state = 2862; localContext._key = this.identifier(); - this.state = 2871; + this.state = 2863; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2872; + this.state = 2864; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12359,15 +12401,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 242, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2876; + this.state = 2868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2874; + this.state = 2866; this.functionTableSubqueryArgument(); } break; @@ -12716,7 +12758,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2867; this.functionTableNamedArgumentExpression(); } break; @@ -12740,22 +12782,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 244, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2880; + this.state = 2872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2878; + this.state = 2870; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2871; this.functionArgument(); } break; @@ -12777,44 +12819,44 @@ export class SparkSqlParser extends SQLParserBase { } public functionTable(): FunctionTableContext { let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTable); + this.enterRule(localContext, 246, SparkSqlParser.RULE_functionTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2882; + this.state = 2874; this.functionName(); - this.state = 2883; + this.state = 2875; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2892; + this.state = 2884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2884; + this.state = 2876; this.functionTableArgument(); - this.state = 2889; + this.state = 2881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2885; + this.state = 2877; this.match(SparkSqlParser.COMMA); - this.state = 2886; + this.state = 2878; this.functionTableArgument(); } } - this.state = 2891; + this.state = 2883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2894; + this.state = 2886; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2895; + this.state = 2887; this.tableAlias(); } } @@ -12834,33 +12876,33 @@ export class SparkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 248, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2904; + this.state = 2896; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 2898; + this.state = 2890; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 2897; + this.state = 2889; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2900; + this.state = 2892; localContext._alias = this.strictIdentifier(); - this.state = 2902; + this.state = 2894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 2901; + this.state = 2893; this.identifierList(); } break; @@ -12886,32 +12928,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 250, SparkSqlParser.RULE_rowFormat); try { - this.state = 2955; + this.state = 2947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2906; + this.state = 2898; this.match(SparkSqlParser.KW_ROW); - this.state = 2907; + this.state = 2899; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2908; + this.state = 2900; this.match(SparkSqlParser.KW_SERDE); - this.state = 2909; + this.state = 2901; localContext._name = this.stringLit(); - this.state = 2913; + this.state = 2905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2910; + this.state = 2902; this.match(SparkSqlParser.KW_WITH); - this.state = 2911; + this.state = 2903; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2912; + this.state = 2904; localContext._props = this.propertyList(); } break; @@ -12921,35 +12963,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2915; + this.state = 2907; this.match(SparkSqlParser.KW_ROW); - this.state = 2916; + this.state = 2908; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2917; + this.state = 2909; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2927; + this.state = 2919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2918; + this.state = 2910; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2919; + this.state = 2911; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2920; + this.state = 2912; this.match(SparkSqlParser.KW_BY); - this.state = 2921; + this.state = 2913; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2925; + this.state = 2917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2922; + this.state = 2914; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2923; + this.state = 2915; this.match(SparkSqlParser.KW_BY); - this.state = 2924; + this.state = 2916; localContext._escapedBy = this.stringLit(); } break; @@ -12957,70 +12999,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2934; + this.state = 2926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2929; + this.state = 2921; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2930; + this.state = 2922; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2931; + this.state = 2923; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2932; + this.state = 2924; this.match(SparkSqlParser.KW_BY); - this.state = 2933; + this.state = 2925; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2941; + this.state = 2933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2936; + this.state = 2928; this.match(SparkSqlParser.KW_MAP); - this.state = 2937; + this.state = 2929; this.match(SparkSqlParser.KW_KEYS); - this.state = 2938; + this.state = 2930; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2939; + this.state = 2931; this.match(SparkSqlParser.KW_BY); - this.state = 2940; + this.state = 2932; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2947; + this.state = 2939; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2943; + this.state = 2935; this.match(SparkSqlParser.KW_LINES); - this.state = 2944; + this.state = 2936; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2945; + this.state = 2937; this.match(SparkSqlParser.KW_BY); - this.state = 2946; + this.state = 2938; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2953; + this.state = 2945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2949; + this.state = 2941; this.match(SparkSqlParser.KW_NULL); - this.state = 2950; + this.state = 2942; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2951; + this.state = 2943; this.match(SparkSqlParser.KW_AS); - this.state = 2952; + this.state = 2944; localContext._nullDefinedAs = this.stringLit(); } break; @@ -13045,26 +13087,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 252, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2957; + this.state = 2949; this.multipartIdentifier(); - this.state = 2962; + this.state = 2954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2958; + this.state = 2950; this.match(SparkSqlParser.COMMA); - this.state = 2959; + this.state = 2951; this.multipartIdentifier(); } } - this.state = 2964; + this.state = 2956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13086,32 +13128,32 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 254, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2957; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2970; + this.state = 2962; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2966; + this.state = 2958; this.match(SparkSqlParser.DOT); - this.state = 2967; + this.state = 2959; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2972; + this.state = 2964; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); } } } @@ -13131,26 +13173,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 256, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2973; + this.state = 2965; this.multipartIdentifierProperty(); - this.state = 2978; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2974; + this.state = 2966; this.match(SparkSqlParser.COMMA); - this.state = 2975; + this.state = 2967; this.multipartIdentifierProperty(); } } - this.state = 2980; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13172,21 +13214,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 258, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2981; + this.state = 2973; this.multipartIdentifier(); - this.state = 2984; + this.state = 2976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2982; + this.state = 2974; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2983; + this.state = 2975; localContext._options = this.propertyList(); } } @@ -13209,23 +13251,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 260, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2986; + this.state = 2978; localContext._db = this.errorCapturingIdentifier(); - this.state = 2987; + this.state = 2979; this.match(SparkSqlParser.DOT); } break; } - this.state = 2991; + this.state = 2983; localContext._table = this.errorCapturingIdentifier(); } } @@ -13245,23 +13287,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 262, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2996; + this.state = 2988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 2993; + this.state = 2985; localContext._db = this.errorCapturingIdentifier(); - this.state = 2994; + this.state = 2986; this.match(SparkSqlParser.DOT); } break; } - this.state = 2998; + this.state = 2990; localContext._view = this.errorCapturingIdentifier(); } } @@ -13281,42 +13323,42 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 264, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3002; + this.state = 2994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 3000; + this.state = 2992; this.columnName(); } break; case 2: { - this.state = 3001; + this.state = 2993; this.expression(); } break; } - this.state = 3011; + this.state = 3003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { - this.state = 3005; + this.state = 2997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3004; + this.state = 2996; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 3009; + this.state = 3001; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13663,13 +13705,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3007; + this.state = 2999; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 3008; + this.state = 3000; this.identifierList(); } break; @@ -13697,30 +13739,30 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 266, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3013; + this.state = 3005; this.namedExpression(); - this.state = 3018; + this.state = 3010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3014; + this.state = 3006; this.match(SparkSqlParser.COMMA); - this.state = 3015; + this.state = 3007; this.namedExpression(); } } } - this.state = 3020; + this.state = 3012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); } } } @@ -13740,34 +13782,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 268, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 3013; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3022; + this.state = 3014; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3027; + this.state = 3019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3023; + this.state = 3015; this.match(SparkSqlParser.COMMA); - this.state = 3024; + this.state = 3016; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3029; + this.state = 3021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3030; + this.state = 3022; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13787,22 +13829,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 270, SparkSqlParser.RULE_partitionField); try { - this.state = 3034; + this.state = 3026; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3032; + this.state = 3024; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3033; + this.state = 3025; this.columnType(); } break; @@ -13824,45 +13866,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 272, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3049; + this.state = 3041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 3028; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3037; + this.state = 3029; localContext._transformName = this.identifier(); - this.state = 3038; + this.state = 3030; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3039; + this.state = 3031; this.transformArgument(); - this.state = 3044; + this.state = 3036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3040; + this.state = 3032; this.match(SparkSqlParser.COMMA); - this.state = 3041; + this.state = 3033; this.transformArgument(); } } - this.state = 3046; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3047; + this.state = 3039; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13884,22 +13926,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 274, SparkSqlParser.RULE_transformArgument); try { - this.state = 3053; + this.state = 3045; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3051; + this.state = 3043; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3052; + this.state = 3044; this.constant(); } break; @@ -13921,11 +13963,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 276, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3055; + this.state = 3047; this.booleanExpression(0); } } @@ -13945,15 +13987,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 278, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3049; localContext._key = this.identifier(); - this.state = 3058; + this.state = 3050; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3059; + this.state = 3051; localContext._value = this.expression(); } } @@ -13973,22 +14015,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 280, SparkSqlParser.RULE_functionArgument); try { - this.state = 3063; + this.state = 3055; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3061; + this.state = 3053; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3062; + this.state = 3054; this.namedArgumentExpression(); } break; @@ -14010,26 +14052,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 282, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3065; + this.state = 3057; this.expression(); - this.state = 3070; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3066; + this.state = 3058; this.match(SparkSqlParser.COMMA); - this.state = 3067; + this.state = 3059; this.expression(); } } - this.state = 3072; + this.state = 3064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14061,19 +14103,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 276; - this.enterRecursionRule(localContext, 276, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 284; + this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 3077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: { - this.state = 3074; + this.state = 3066; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14082,32 +14124,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3075; + this.state = 3067; this.booleanExpression(5); } break; case 2: { - this.state = 3076; + this.state = 3068; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3077; + this.state = 3069; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3078; + this.state = 3070; this.query(); - this.state = 3079; + this.state = 3071; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3081; + this.state = 3073; this.valueExpression(0); - this.state = 3083; + this.state = 3075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3082; + this.state = 3074; this.predicate(); } break; @@ -14116,9 +14158,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3095; + this.state = 3087; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 403, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14126,21 +14168,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3093; + this.state = 3085; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3087; + this.state = 3079; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3088; + this.state = 3080; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3089; + this.state = 3081; localContext._right = this.booleanExpression(3); } break; @@ -14149,22 +14191,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3090; + this.state = 3082; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3091; + this.state = 3083; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3092; + this.state = 3084; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3097; + this.state = 3089; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 403, this.context); } } } @@ -14184,111 +14226,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 286, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3180; + this.state = 3172; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3099; + this.state = 3091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3098; + this.state = 3090; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3101; + this.state = 3093; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3102; + this.state = 3094; localContext._lower = this.valueExpression(0); - this.state = 3103; + this.state = 3095; this.match(SparkSqlParser.KW_AND); - this.state = 3104; + this.state = 3096; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3107; + this.state = 3099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3106; + this.state = 3098; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3109; + this.state = 3101; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3110; + this.state = 3102; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3111; + this.state = 3103; this.expression(); - this.state = 3116; + this.state = 3108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3112; + this.state = 3104; this.match(SparkSqlParser.COMMA); - this.state = 3113; + this.state = 3105; this.expression(); } } - this.state = 3118; + this.state = 3110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3119; + this.state = 3111; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3122; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3121; + this.state = 3113; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3124; + this.state = 3116; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3125; + this.state = 3117; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3126; + this.state = 3118; this.query(); - this.state = 3127; + this.state = 3119; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3130; + this.state = 3122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3129; + this.state = 3121; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3132; + this.state = 3124; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14298,24 +14340,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3133; + this.state = 3125; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3135; + this.state = 3127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3134; + this.state = 3126; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3137; + this.state = 3129; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14325,7 +14367,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3138; + this.state = 3130; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14335,40 +14377,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3152; + this.state = 3144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3139; + this.state = 3131; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3140; + this.state = 3132; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3141; + this.state = 3133; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3142; + this.state = 3134; this.expression(); - this.state = 3147; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3143; + this.state = 3135; this.match(SparkSqlParser.COMMA); - this.state = 3144; + this.state = 3136; this.expression(); } } - this.state = 3149; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 3142; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14378,17 +14420,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3155; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3154; + this.state = 3146; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3157; + this.state = 3149; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14398,16 +14440,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3158; + this.state = 3150; localContext._pattern = this.valueExpression(0); - this.state = 3161; + this.state = 3153; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: { - this.state = 3159; + this.state = 3151; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3160; + this.state = 3152; localContext._escapeChar = this.stringLit(); } break; @@ -14417,38 +14459,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3163; + this.state = 3155; this.match(SparkSqlParser.KW_IS); - this.state = 3165; + this.state = 3157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3164; + this.state = 3156; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3167; + this.state = 3159; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3168; + this.state = 3160; this.match(SparkSqlParser.KW_IS); - this.state = 3170; + this.state = 3162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3169; + this.state = 3161; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3172; + this.state = 3164; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14463,23 +14505,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3173; + this.state = 3165; this.match(SparkSqlParser.KW_IS); - this.state = 3175; + this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3174; + this.state = 3166; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3177; + this.state = 3169; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3178; + this.state = 3170; this.match(SparkSqlParser.KW_FROM); - this.state = 3179; + this.state = 3171; localContext._right = this.valueExpression(0); } break; @@ -14511,25 +14553,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 288; + this.enterRecursionRule(localContext, 288, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3186; + this.state = 3178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3183; + this.state = 3175; this.primaryExpression(0); } break; case 2: { - this.state = 3184; + this.state = 3176; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14539,15 +14581,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3185; + this.state = 3177; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3209; + this.state = 3201; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 420, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14555,19 +14597,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3207; + this.state = 3199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3188; + this.state = 3180; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3189; + this.state = 3181; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14577,7 +14619,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3190; + this.state = 3182; localContext._right = this.valueExpression(7); } break; @@ -14586,11 +14628,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3191; + this.state = 3183; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3192; + this.state = 3184; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14600,7 +14642,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3193; + this.state = 3185; localContext._right = this.valueExpression(6); } break; @@ -14609,13 +14651,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3194; + this.state = 3186; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3195; + this.state = 3187; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3196; + this.state = 3188; localContext._right = this.valueExpression(5); } break; @@ -14624,13 +14666,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3197; + this.state = 3189; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3198; + this.state = 3190; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3199; + this.state = 3191; localContext._right = this.valueExpression(4); } break; @@ -14639,13 +14681,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3200; + this.state = 3192; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3201; + this.state = 3193; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3202; + this.state = 3194; localContext._right = this.valueExpression(3); } break; @@ -14654,22 +14696,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3203; + this.state = 3195; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3204; + this.state = 3196; this.comparisonOperator(); - this.state = 3205; + this.state = 3197; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3211; + this.state = 3203; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 420, this.context); } } } @@ -14689,12 +14731,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 290, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3204; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14731,19 +14773,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 292; + this.enterRecursionRule(localContext, 292, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3215; + this.state = 3207; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14757,7 +14799,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3216; + this.state = 3208; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14767,9 +14809,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3217; + this.state = 3209; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3212; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14784,35 +14826,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3218; + this.state = 3210; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3219; + this.state = 3211; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3222; + this.state = 3214; this.match(SparkSqlParser.COMMA); - this.state = 3223; + this.state = 3215; localContext._unitsAmount = this.valueExpression(0); - this.state = 3224; + this.state = 3216; this.match(SparkSqlParser.COMMA); - this.state = 3225; + this.state = 3217; localContext._timestamp = this.valueExpression(0); - this.state = 3226; + this.state = 3218; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3228; + this.state = 3220; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14822,9 +14864,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3229; + this.state = 3221; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3232; + this.state = 3224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14839,105 +14881,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3230; + this.state = 3222; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3231; + this.state = 3223; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3234; + this.state = 3226; this.match(SparkSqlParser.COMMA); - this.state = 3235; + this.state = 3227; localContext._startTimestamp = this.valueExpression(0); - this.state = 3236; + this.state = 3228; this.match(SparkSqlParser.COMMA); - this.state = 3237; + this.state = 3229; localContext._endTimestamp = this.valueExpression(0); - this.state = 3238; + this.state = 3230; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3240; + this.state = 3232; this.match(SparkSqlParser.KW_CASE); - this.state = 3242; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3241; + this.state = 3233; this.whenClause(); } } - this.state = 3244; + this.state = 3236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3248; + this.state = 3240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3246; + this.state = 3238; this.match(SparkSqlParser.KW_ELSE); - this.state = 3247; + this.state = 3239; localContext._elseExpression = this.expression(); } } - this.state = 3250; + this.state = 3242; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3252; + this.state = 3244; this.match(SparkSqlParser.KW_CASE); - this.state = 3253; + this.state = 3245; this.expression(); - this.state = 3255; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3254; + this.state = 3246; this.whenClause(); } } - this.state = 3257; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3261; + this.state = 3253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3259; + this.state = 3251; this.match(SparkSqlParser.KW_ELSE); - this.state = 3260; + this.state = 3252; localContext._elseExpression = this.expression(); } } - this.state = 3263; + this.state = 3255; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3265; + this.state = 3257; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14947,280 +14989,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3266; + this.state = 3258; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3267; + this.state = 3259; this.expression(); - this.state = 3268; + this.state = 3260; this.match(SparkSqlParser.KW_AS); - this.state = 3269; + this.state = 3261; this.dataType(); - this.state = 3270; + this.state = 3262; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3272; + this.state = 3264; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3273; + this.state = 3265; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3282; + this.state = 3274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3274; + this.state = 3266; this.namedExpression(); - this.state = 3279; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3275; + this.state = 3267; this.match(SparkSqlParser.COMMA); - this.state = 3276; + this.state = 3268; this.namedExpression(); } } - this.state = 3281; + this.state = 3273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3284; + this.state = 3276; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3285; + this.state = 3277; this.match(SparkSqlParser.KW_FIRST); - this.state = 3286; + this.state = 3278; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3287; + this.state = 3279; this.expression(); - this.state = 3290; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3288; + this.state = 3280; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3289; + this.state = 3281; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3292; + this.state = 3284; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3294; + this.state = 3286; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3295; + this.state = 3287; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3296; + this.state = 3288; this.expression(); - this.state = 3299; + this.state = 3291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3297; + this.state = 3289; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3298; + this.state = 3290; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3301; + this.state = 3293; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3303; + this.state = 3295; this.match(SparkSqlParser.KW_LAST); - this.state = 3304; + this.state = 3296; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3305; + this.state = 3297; this.expression(); - this.state = 3308; + this.state = 3300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3306; + this.state = 3298; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3307; + this.state = 3299; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3310; + this.state = 3302; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3312; + this.state = 3304; this.match(SparkSqlParser.KW_POSITION); - this.state = 3313; + this.state = 3305; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3306; localContext._substr = this.valueExpression(0); - this.state = 3315; + this.state = 3307; this.match(SparkSqlParser.KW_IN); - this.state = 3316; + this.state = 3308; localContext._str = this.valueExpression(0); - this.state = 3317; + this.state = 3309; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3319; + this.state = 3311; this.constant(); } break; case 13: { - this.state = 3320; + this.state = 3312; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3321; + this.state = 3313; this.qualifiedName(); - this.state = 3322; + this.state = 3314; this.match(SparkSqlParser.DOT); - this.state = 3323; + this.state = 3315; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3325; + this.state = 3317; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3326; + this.state = 3318; this.namedExpression(); - this.state = 3329; + this.state = 3321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3327; + this.state = 3319; this.match(SparkSqlParser.COMMA); - this.state = 3328; + this.state = 3320; this.namedExpression(); } } - this.state = 3331; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3333; + this.state = 3325; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3335; + this.state = 3327; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3336; + this.state = 3328; this.query(); - this.state = 3337; + this.state = 3329; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3339; + this.state = 3331; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3340; + this.state = 3332; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3341; + this.state = 3333; this.expression(); - this.state = 3342; + this.state = 3334; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3344; + this.state = 3336; this.functionName(); - this.state = 3345; + this.state = 3337; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3357; + this.state = 3349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3347; + this.state = 3339; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3346; + this.state = 3338; this.setQuantifier(); } break; } - this.state = 3349; + this.state = 3341; this.functionArgument(); - this.state = 3354; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3350; + this.state = 3342; this.match(SparkSqlParser.COMMA); - this.state = 3351; + this.state = 3343; this.functionArgument(); } } - this.state = 3356; + this.state = 3348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3359; + this.state = 3351; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3366; + this.state = 3358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3360; + this.state = 3352; this.match(SparkSqlParser.KW_FILTER); - this.state = 3361; + this.state = 3353; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3362; + this.state = 3354; this.match(SparkSqlParser.KW_WHERE); - this.state = 3363; + this.state = 3355; localContext._where = this.booleanExpression(0); - this.state = 3364; + this.state = 3356; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3370; + this.state = 3362; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3368; + this.state = 3360; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15230,19 +15272,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3369; + this.state = 3361; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3374; + this.state = 3366; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3372; + this.state = 3364; this.match(SparkSqlParser.KW_OVER); - this.state = 3373; + this.state = 3365; this.windowSpec(); } break; @@ -15251,79 +15293,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3376; + this.state = 3368; this.identifier(); - this.state = 3377; + this.state = 3369; this.match(SparkSqlParser.ARROW); - this.state = 3378; + this.state = 3370; this.expression(); } break; case 20: { - this.state = 3380; + this.state = 3372; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3381; + this.state = 3373; this.identifier(); - this.state = 3384; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3382; + this.state = 3374; this.match(SparkSqlParser.COMMA); - this.state = 3383; + this.state = 3375; this.identifier(); } } - this.state = 3386; + this.state = 3378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3388; + this.state = 3380; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3389; + this.state = 3381; this.match(SparkSqlParser.ARROW); - this.state = 3390; + this.state = 3382; this.expression(); } break; case 21: { - this.state = 3392; - this.identifier(); + this.state = 3384; + this.columnNamePath(); } break; case 22: { - this.state = 3393; + this.state = 3385; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3394; + this.state = 3386; this.expression(); - this.state = 3395; + this.state = 3387; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3397; + this.state = 3389; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3398; + this.state = 3390; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3399; + this.state = 3391; localContext._field = this.identifier(); - this.state = 3400; + this.state = 3392; this.match(SparkSqlParser.KW_FROM); - this.state = 3401; + this.state = 3393; localContext._source = this.valueExpression(0); - this.state = 3402; + this.state = 3394; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3404; + this.state = 3396; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15332,11 +15374,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3405; + this.state = 3397; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3406; + this.state = 3398; localContext._str = this.valueExpression(0); - this.state = 3407; + this.state = 3399; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15345,14 +15387,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3408; + this.state = 3400; localContext._pos = this.valueExpression(0); - this.state = 3411; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3409; + this.state = 3401; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15361,27 +15403,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3410; + this.state = 3402; localContext._len = this.valueExpression(0); } } - this.state = 3413; + this.state = 3405; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3415; + this.state = 3407; this.match(SparkSqlParser.KW_TRIM); - this.state = 3416; + this.state = 3408; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3418; + this.state = 3410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3417; + this.state = 3409; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15394,59 +15436,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3421; + this.state = 3413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3420; + this.state = 3412; localContext._trimStr = this.valueExpression(0); } } - this.state = 3423; + this.state = 3415; this.match(SparkSqlParser.KW_FROM); - this.state = 3424; + this.state = 3416; localContext._srcStr = this.valueExpression(0); - this.state = 3425; + this.state = 3417; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3427; + this.state = 3419; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3428; + this.state = 3420; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3429; + this.state = 3421; localContext._input = this.valueExpression(0); - this.state = 3430; + this.state = 3422; this.match(SparkSqlParser.KW_PLACING); - this.state = 3431; + this.state = 3423; localContext._replace = this.valueExpression(0); - this.state = 3432; + this.state = 3424; this.match(SparkSqlParser.KW_FROM); - this.state = 3433; + this.state = 3425; localContext._position = this.valueExpression(0); - this.state = 3436; + this.state = 3428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3434; + this.state = 3426; this.match(SparkSqlParser.KW_FOR); - this.state = 3435; + this.state = 3427; localContext._length = this.valueExpression(0); } } - this.state = 3438; + this.state = 3430; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3440; + this.state = 3432; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15456,52 +15498,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3441; + this.state = 3433; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3442; + this.state = 3434; localContext._percentage = this.valueExpression(0); - this.state = 3443; + this.state = 3435; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3444; + this.state = 3436; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3445; + this.state = 3437; this.match(SparkSqlParser.KW_GROUP); - this.state = 3446; + this.state = 3438; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3447; + this.state = 3439; this.match(SparkSqlParser.KW_ORDER); - this.state = 3448; + this.state = 3440; this.match(SparkSqlParser.KW_BY); - this.state = 3449; + this.state = 3441; this.sortItem(); - this.state = 3450; + this.state = 3442; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3457; + this.state = 3449; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3451; + this.state = 3443; this.match(SparkSqlParser.KW_FILTER); - this.state = 3452; + this.state = 3444; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3453; + this.state = 3445; this.match(SparkSqlParser.KW_WHERE); - this.state = 3454; + this.state = 3446; localContext._where = this.booleanExpression(0); - this.state = 3455; + this.state = 3447; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3461; + this.state = 3453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3459; + this.state = 3451; this.match(SparkSqlParser.KW_OVER); - this.state = 3460; + this.state = 3452; this.windowSpec(); } break; @@ -15510,9 +15552,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3475; + this.state = 3467; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15520,23 +15562,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3473; + this.state = 3465; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3465; + this.state = 3457; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3466; + this.state = 3458; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3467; + this.state = 3459; localContext._index = this.valueExpression(0); - this.state = 3468; + this.state = 3460; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15545,22 +15587,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3470; + this.state = 3462; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3471; + this.state = 3463; this.match(SparkSqlParser.DOT); - this.state = 3472; + this.state = 3464; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3477; + this.state = 3469; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); } } } @@ -15580,57 +15622,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 294, SparkSqlParser.RULE_literalType); try { - this.state = 3485; + this.state = 3477; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3470; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3479; + this.state = 3471; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3480; + this.state = 3472; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3481; + this.state = 3473; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3482; + this.state = 3474; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3483; + this.state = 3475; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3484; + this.state = 3476; localContext._unsupportedType = this.identifier(); } break; @@ -15652,69 +15694,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 296, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3502; + this.state = 3494; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3487; + this.state = 3479; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3488; + this.state = 3480; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3489; + this.state = 3481; this.match(SparkSqlParser.COLON); - this.state = 3490; + this.state = 3482; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3491; + this.state = 3483; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3492; + this.state = 3484; this.literalType(); - this.state = 3493; + this.state = 3485; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3495; + this.state = 3487; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3496; + this.state = 3488; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3498; + this.state = 3490; this.errorHandler.sync(this); alternative = 1; do { @@ -15722,7 +15764,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3497; + this.state = 3489; this.stringLit(); } } @@ -15730,9 +15772,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3500; + this.state = 3492; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15754,12 +15796,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 298, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3496; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15786,12 +15828,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 300, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3506; + this.state = 3498; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15818,12 +15860,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 302, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3500; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15850,12 +15892,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 304, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3510; + this.state = 3502; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15882,24 +15924,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 306, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3504; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3515; + this.state = 3507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3513; + this.state = 3505; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3514; + this.state = 3506; this.errorCapturingUnitToUnitInterval(); } break; @@ -15922,18 +15964,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 308, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3509; localContext._body = this.multiUnitsInterval(); - this.state = 3519; + this.state = 3511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3518; + this.state = 3510; this.unitToUnitInterval(); } break; @@ -15956,12 +15998,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 310, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3524; + this.state = 3516; this.errorHandler.sync(this); alternative = 1; do { @@ -15969,9 +16011,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3521; + this.state = 3513; this.intervalValue(); - this.state = 3522; + this.state = 3514; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15980,9 +16022,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3526; + this.state = 3518; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16002,24 +16044,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 312, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3520; localContext._body = this.unitToUnitInterval(); - this.state = 3531; + this.state = 3523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3529; + this.state = 3521; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3530; + this.state = 3522; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16042,17 +16084,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 314, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3525; localContext._value = this.intervalValue(); - this.state = 3534; + this.state = 3526; this.unitInUnitToUnit(); - this.state = 3535; + this.state = 3527; this.match(SparkSqlParser.KW_TO); - this.state = 3536; + this.state = 3528; this.unitInUnitToUnit(); } } @@ -16072,17 +16114,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 316, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3538; + this.state = 3530; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16094,25 +16136,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3544; + this.state = 3536; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3541; + this.state = 3533; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3542; + this.state = 3534; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3543; + this.state = 3535; this.stringLit(); } break; @@ -16137,12 +16179,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 318, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3546; + this.state = 3538; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16169,12 +16211,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 320, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3540; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16201,24 +16243,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 322, SparkSqlParser.RULE_colPosition); try { - this.state = 3553; + this.state = 3545; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3542; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3551; + this.state = 3543; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3552; + this.state = 3544; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16242,218 +16284,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_type); + this.enterRule(localContext, 324, SparkSqlParser.RULE_type); try { - this.state = 3585; + this.state = 3577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3547; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3548; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3557; + this.state = 3549; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3558; + this.state = 3550; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3559; + this.state = 3551; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3560; + this.state = 3552; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3561; + this.state = 3553; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3562; + this.state = 3554; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3563; + this.state = 3555; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3564; + this.state = 3556; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3565; + this.state = 3557; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3566; + this.state = 3558; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3567; + this.state = 3559; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3568; + this.state = 3560; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3569; + this.state = 3561; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3570; + this.state = 3562; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3571; + this.state = 3563; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3572; + this.state = 3564; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3573; + this.state = 3565; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3574; + this.state = 3566; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3575; + this.state = 3567; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3576; + this.state = 3568; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3577; + this.state = 3569; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3578; + this.state = 3570; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3579; + this.state = 3571; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3580; + this.state = 3572; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3581; + this.state = 3573; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3582; + this.state = 3574; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3583; + this.state = 3575; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3584; + this.state = 3576; localContext._unsupportedType = this.identifier(); } break; @@ -16475,71 +16517,71 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 326, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3633; + this.state = 3625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3579; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3588; + this.state = 3580; this.match(SparkSqlParser.LT); - this.state = 3589; + this.state = 3581; this.dataType(); - this.state = 3590; + this.state = 3582; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3584; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3593; + this.state = 3585; this.match(SparkSqlParser.LT); - this.state = 3594; + this.state = 3586; this.dataType(); - this.state = 3595; + this.state = 3587; this.match(SparkSqlParser.COMMA); - this.state = 3596; + this.state = 3588; this.dataType(); - this.state = 3597; + this.state = 3589; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3599; + this.state = 3591; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3606; + this.state = 3598; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3600; + this.state = 3592; this.match(SparkSqlParser.LT); - this.state = 3602; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3601; + this.state = 3593; this.complexColTypeList(); } } - this.state = 3604; + this.state = 3596; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3605; + this.state = 3597; this.match(SparkSqlParser.NEQ); } break; @@ -16551,9 +16593,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3608; + this.state = 3600; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3609; + this.state = 3601; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16562,14 +16604,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3612; + this.state = 3604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3610; + this.state = 3602; this.match(SparkSqlParser.KW_TO); - this.state = 3611; + this.state = 3603; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16579,9 +16621,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3614; + this.state = 3606; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3615; + this.state = 3607; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16590,14 +16632,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3618; + this.state = 3610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3616; + this.state = 3608; this.match(SparkSqlParser.KW_TO); - this.state = 3617; + this.state = 3609; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16614,34 +16656,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3620; + this.state = 3612; this.type_(); - this.state = 3631; + this.state = 3623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3621; + this.state = 3613; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3622; + this.state = 3614; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3627; + this.state = 3619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3623; + this.state = 3615; this.match(SparkSqlParser.COMMA); - this.state = 3624; + this.state = 3616; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3629; + this.state = 3621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3630; + this.state = 3622; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16666,26 +16708,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 328, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3627; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3640; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3636; + this.state = 3628; this.match(SparkSqlParser.COMMA); - this.state = 3637; + this.state = 3629; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3642; + this.state = 3634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16707,30 +16749,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 330, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3635; localContext._name = this.columnNameCreate(); - this.state = 3644; + this.state = 3636; this.dataType(); - this.state = 3648; + this.state = 3640; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3645; + this.state = 3637; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3650; + this.state = 3642; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); } } } @@ -16750,26 +16792,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 332, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3643; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3656; + this.state = 3648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3652; + this.state = 3644; this.match(SparkSqlParser.COMMA); - this.state = 3653; + this.state = 3645; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3658; + this.state = 3650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16791,26 +16833,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 334, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3651; localContext._name = this.columnName(); - this.state = 3660; + this.state = 3652; this.dataType(); - this.state = 3664; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3661; + this.state = 3653; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3666; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16832,31 +16874,31 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 336, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3672; + this.state = 3664; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3659; this.match(SparkSqlParser.KW_NOT); - this.state = 3668; + this.state = 3660; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3669; + this.state = 3661; this.defaultExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3670; + this.state = 3662; this.commentSpec(); } break; @@ -16864,7 +16906,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3671; + this.state = 3663; this.colPosition(); } break; @@ -16888,13 +16930,13 @@ export class SparkSqlParser extends SQLParserBase { } public defaultExpression(): DefaultExpressionContext { let localContext = new DefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_defaultExpression); + this.enterRule(localContext, 338, SparkSqlParser.RULE_defaultExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3666; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3675; + this.state = 3667; this.expression(); } } @@ -16914,12 +16956,12 @@ export class SparkSqlParser extends SQLParserBase { } public variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 340, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3669; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16928,7 +16970,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3678; + this.state = 3670; this.expression(); } } @@ -16948,30 +16990,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 342, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3672; this.columnType(); - this.state = 3685; + this.state = 3677; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3681; + this.state = 3673; this.match(SparkSqlParser.COMMA); - this.state = 3682; + this.state = 3674; this.columnType(); } } } - this.state = 3687; + this.state = 3679; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 472, this.context); } } } @@ -16991,32 +17033,32 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 344, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3688; + this.state = 3680; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3689; + this.state = 3681; this.dataType(); - this.state = 3692; + this.state = 3684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 3690; + this.state = 3682; this.match(SparkSqlParser.KW_NOT); - this.state = 3691; + this.state = 3683; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3695; + this.state = 3687; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 3694; + this.state = 3686; this.commentSpec(); } break; @@ -17039,26 +17081,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 346, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3689; this.createOrReplaceTableColType(); - this.state = 3702; + this.state = 3694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3698; + this.state = 3690; this.match(SparkSqlParser.COMMA); - this.state = 3699; + this.state = 3691; this.createOrReplaceTableColType(); } } - this.state = 3704; + this.state = 3696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17080,26 +17122,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 348, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3705; + this.state = 3697; localContext._colName = this.columnNameCreate(); - this.state = 3706; + this.state = 3698; localContext._colType = this.dataType(); - this.state = 3710; + this.state = 3702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3707; + this.state = 3699; this.colDefinitionOption(); } } - this.state = 3712; + this.state = 3704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17121,38 +17163,38 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 350, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3718; + this.state = 3710; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3705; this.match(SparkSqlParser.KW_NOT); - this.state = 3714; + this.state = 3706; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3715; + this.state = 3707; this.defaultExpression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3716; + this.state = 3708; this.generationExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3717; + this.state = 3709; this.commentSpec(); } break; @@ -17176,21 +17218,21 @@ export class SparkSqlParser extends SQLParserBase { } public generationExpression(): GenerationExpressionContext { let localContext = new GenerationExpressionContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_generationExpression); + this.enterRule(localContext, 352, SparkSqlParser.RULE_generationExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3720; + this.state = 3712; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3721; + this.state = 3713; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3722; + this.state = 3714; this.match(SparkSqlParser.KW_AS); - this.state = 3723; + this.state = 3715; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3724; + this.state = 3716; this.expression(); - this.state = 3725; + this.state = 3717; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -17210,26 +17252,26 @@ export class SparkSqlParser extends SQLParserBase { } public complexColTypeList(): ComplexColTypeListContext { let localContext = new ComplexColTypeListContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColTypeList); + this.enterRule(localContext, 354, SparkSqlParser.RULE_complexColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3727; + this.state = 3719; this.complexColType(); - this.state = 3732; + this.state = 3724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3728; + this.state = 3720; this.match(SparkSqlParser.COMMA); - this.state = 3729; + this.state = 3721; this.complexColType(); } } - this.state = 3734; + this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17251,43 +17293,43 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 356, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3735; + this.state = 3727; this.identifier(); - this.state = 3737; + this.state = 3729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3736; + this.state = 3728; this.match(SparkSqlParser.COLON); } } - this.state = 3739; + this.state = 3731; this.dataType(); - this.state = 3742; + this.state = 3734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3740; + this.state = 3732; this.match(SparkSqlParser.KW_NOT); - this.state = 3741; + this.state = 3733; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3745; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3744; + this.state = 3736; this.commentSpec(); } } @@ -17310,17 +17352,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 358, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3747; + this.state = 3739; this.match(SparkSqlParser.KW_WHEN); - this.state = 3748; + this.state = 3740; localContext._condition = this.expression(); - this.state = 3749; + this.state = 3741; this.match(SparkSqlParser.KW_THEN); - this.state = 3750; + this.state = 3742; localContext._result = this.expression(); } } @@ -17340,32 +17382,32 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 360, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3752; + this.state = 3744; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3753; + this.state = 3745; this.namedWindow(); - this.state = 3758; + this.state = 3750; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3754; + this.state = 3746; this.match(SparkSqlParser.COMMA); - this.state = 3755; + this.state = 3747; this.namedWindow(); } } } - this.state = 3760; + this.state = 3752; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } } } @@ -17385,15 +17427,15 @@ export class SparkSqlParser extends SQLParserBase { } public zorderClause(): ZorderClauseContext { let localContext = new ZorderClauseContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_zorderClause); + this.enterRule(localContext, 362, SparkSqlParser.RULE_zorderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3761; + this.state = 3753; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3762; + this.state = 3754; this.match(SparkSqlParser.KW_BY); - this.state = 3763; + this.state = 3755; this.columnNameSeq(); } } @@ -17413,15 +17455,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 364, SparkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 3765; + this.state = 3757; localContext._name = this.errorCapturingIdentifier(); - this.state = 3766; + this.state = 3758; this.match(SparkSqlParser.KW_AS); - this.state = 3767; + this.state = 3759; this.windowSpec(); } } @@ -17441,61 +17483,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 366, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3815; + this.state = 3800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3769; + this.state = 3761; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3770; + this.state = 3762; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3771; + this.state = 3763; localContext._name = this.errorCapturingIdentifier(); - this.state = 3772; + this.state = 3764; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3774; + this.state = 3766; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3809; + this.state = 3794; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3775; + this.state = 3767; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3776; + this.state = 3768; this.match(SparkSqlParser.KW_BY); - this.state = 3777; + this.state = 3769; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3782; + this.state = 3774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3778; + this.state = 3770; this.match(SparkSqlParser.COMMA); - this.state = 3779; + this.state = 3771; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3784; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17509,12 +17551,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3795; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3785; + this.state = 3777; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17523,37 +17565,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3778; this.match(SparkSqlParser.KW_BY); - this.state = 3787; + this.state = 3779; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3792; + this.state = 3784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3788; + this.state = 3780; this.match(SparkSqlParser.COMMA); - this.state = 3789; + this.state = 3781; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3794; + this.state = 3786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3807; + this.state = 3792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3797; + this.state = 3789; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17562,26 +17604,10 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3798; + this.state = 3790; this.match(SparkSqlParser.KW_BY); - this.state = 3799; - this.sortItem(); - this.state = 3804; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 3800; - this.match(SparkSqlParser.COMMA); - this.state = 3801; - this.sortItem(); - } - } - this.state = 3806; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 3791; + this.orderOrSortByClause(); } } @@ -17590,17 +17616,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3812; + this.state = 3797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3811; + this.state = 3796; this.windowFrame(); } } - this.state = 3814; + this.state = 3799; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17622,56 +17648,56 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 368, SparkSqlParser.RULE_windowFrame); try { - this.state = 3833; + this.state = 3818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3817; + this.state = 3802; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3818; + this.state = 3803; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3819; + this.state = 3804; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3820; + this.state = 3805; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3821; + this.state = 3806; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3822; + this.state = 3807; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3823; + this.state = 3808; localContext._start_ = this.frameBound(); - this.state = 3824; + this.state = 3809; this.match(SparkSqlParser.KW_AND); - this.state = 3825; + this.state = 3810; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3827; + this.state = 3812; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3828; + this.state = 3813; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3829; + this.state = 3814; localContext._start_ = this.frameBound(); - this.state = 3830; + this.state = 3815; this.match(SparkSqlParser.KW_AND); - this.state = 3831; + this.state = 3816; localContext._end = this.frameBound(); } break; @@ -17693,18 +17719,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 370, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3842; + this.state = 3827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3835; + this.state = 3820; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3836; + this.state = 3821; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17719,18 +17745,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3837; + this.state = 3822; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3838; + this.state = 3823; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3839; + this.state = 3824; this.expression(); - this.state = 3840; + this.state = 3825; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17760,26 +17786,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 372, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3829; this.qualifiedName(); - this.state = 3849; + this.state = 3834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3845; + this.state = 3830; this.match(SparkSqlParser.COMMA); - this.state = 3846; + this.state = 3831; this.qualifiedName(); } } - this.state = 3851; + this.state = 3836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17801,49 +17827,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 366, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 374, SparkSqlParser.RULE_functionName); try { - this.state = 3861; + this.state = 3846; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3837; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3853; + this.state = 3838; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3854; + this.state = 3839; this.expression(); - this.state = 3855; + this.state = 3840; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3857; + this.state = 3842; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3858; + this.state = 3843; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3859; + this.state = 3844; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3860; + this.state = 3845; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17865,11 +17891,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 368, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 376, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3863; + this.state = 3848; this.qualifiedName(); } } @@ -17889,30 +17915,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 370, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 378, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3865; + this.state = 3850; this.identifier(); - this.state = 3870; + this.state = 3855; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 494, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3866; + this.state = 3851; this.match(SparkSqlParser.DOT); - this.state = 3867; + this.state = 3852; this.identifier(); } } } - this.state = 3872; + this.state = 3857; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 494, this.context); } } } @@ -17932,13 +17958,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 380, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3873; + this.state = 3858; this.identifier(); - this.state = 3874; + this.state = 3859; this.errorCapturingIdentifierExtra(); } } @@ -17958,16 +17984,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 374, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 382, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3883; + this.state = 3868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3863; this.errorHandler.sync(this); alternative = 1; do { @@ -17975,9 +18001,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3876; + this.state = 3861; this.match(SparkSqlParser.MINUS); - this.state = 3877; + this.state = 3862; this.identifier(); } } @@ -17985,9 +18011,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3880; + this.state = 3865; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -18015,22 +18041,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 376, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 384, SparkSqlParser.RULE_identifier); try { - this.state = 3887; + this.state = 3872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3885; + this.state = 3870; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3886; + this.state = 3871; this.strictNonReserved(); } break; @@ -18052,36 +18078,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 378, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 386, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3893; + this.state = 3878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3889; + this.state = 3874; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3890; + this.state = 3875; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3891; + this.state = 3876; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3892; + this.state = 3877; this.nonReserved(); } break; @@ -18103,12 +18129,12 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 380, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 388, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3895; + this.state = 3880; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -18135,11 +18161,11 @@ export class SparkSqlParser extends SQLParserBase { } public backQuotedIdentifier(): BackQuotedIdentifierContext { let localContext = new BackQuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 382, SparkSqlParser.RULE_backQuotedIdentifier); + this.enterRule(localContext, 390, SparkSqlParser.RULE_backQuotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3897; + this.state = 3882; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } } @@ -18159,60 +18185,60 @@ export class SparkSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 384, SparkSqlParser.RULE_number); + this.enterRule(localContext, 392, SparkSqlParser.RULE_number); let _la: number; try { - this.state = 3939; + this.state = 3924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3900; + this.state = 3885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3899; + this.state = 3884; this.match(SparkSqlParser.MINUS); } } - this.state = 3902; + this.state = 3887; this.match(SparkSqlParser.EXPONENT_VALUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3904; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3903; + this.state = 3888; this.match(SparkSqlParser.MINUS); } } - this.state = 3906; + this.state = 3891; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3908; + this.state = 3893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3907; + this.state = 3892; this.match(SparkSqlParser.MINUS); } } - this.state = 3910; + this.state = 3895; _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 384)) { this.errorHandler.recoverInline(this); @@ -18226,119 +18252,119 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3912; + this.state = 3897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3911; + this.state = 3896; this.match(SparkSqlParser.MINUS); } } - this.state = 3914; + this.state = 3899; this.match(SparkSqlParser.INTEGER_VALUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3916; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3915; + this.state = 3900; this.match(SparkSqlParser.MINUS); } } - this.state = 3918; + this.state = 3903; this.match(SparkSqlParser.BIGINT_LITERAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3920; + this.state = 3905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3919; + this.state = 3904; this.match(SparkSqlParser.MINUS); } } - this.state = 3922; + this.state = 3907; this.match(SparkSqlParser.SMALLINT_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3924; + this.state = 3909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3923; + this.state = 3908; this.match(SparkSqlParser.MINUS); } } - this.state = 3926; + this.state = 3911; this.match(SparkSqlParser.TINYINT_LITERAL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3928; + this.state = 3913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3927; + this.state = 3912; this.match(SparkSqlParser.MINUS); } } - this.state = 3930; + this.state = 3915; this.match(SparkSqlParser.DOUBLE_LITERAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3932; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3931; + this.state = 3916; this.match(SparkSqlParser.MINUS); } } - this.state = 3934; + this.state = 3919; this.match(SparkSqlParser.FLOAT_LITERAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3936; + this.state = 3921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3935; + this.state = 3920; this.match(SparkSqlParser.MINUS); } } - this.state = 3938; + this.state = 3923; this.match(SparkSqlParser.BIGDECIMAL_LITERAL); } break; @@ -18360,39 +18386,39 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 386, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 394, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3952; + this.state = 3937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3941; + this.state = 3926; this.match(SparkSqlParser.KW_TYPE); - this.state = 3942; + this.state = 3927; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3943; + this.state = 3928; this.commentSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3944; + this.state = 3929; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3945; + this.state = 3930; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -18402,27 +18428,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3946; + this.state = 3931; this.match(SparkSqlParser.KW_NOT); - this.state = 3947; + this.state = 3932; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3948; + this.state = 3933; this.match(SparkSqlParser.KW_SET); - this.state = 3949; + this.state = 3934; this.defaultExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3950; + this.state = 3935; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3951; + this.state = 3936; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18444,12 +18470,12 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 388, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 396, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3954; + this.state = 3939; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -18476,23 +18502,23 @@ export class SparkSqlParser extends SQLParserBase { } public commentStr(): CommentStrContext { let localContext = new CommentStrContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_commentStr); + this.enterRule(localContext, 398, SparkSqlParser.RULE_commentStr); try { - this.state = 3958; + this.state = 3943; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 3956; + this.state = 3941; this.stringLit(); } break; case SparkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 3957; + this.state = 3942; this.match(SparkSqlParser.KW_NULL); } break; @@ -18516,15 +18542,15 @@ export class SparkSqlParser extends SQLParserBase { } public version(): VersionContext { let localContext = new VersionContext(this.context, this.state); - this.enterRule(localContext, 392, SparkSqlParser.RULE_version); + this.enterRule(localContext, 400, SparkSqlParser.RULE_version); try { - this.state = 3962; + this.state = 3947; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3960; + this.state = 3945; this.match(SparkSqlParser.INTEGER_VALUE); } break; @@ -18532,7 +18558,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 3961; + this.state = 3946; this.stringLit(); } break; @@ -18556,12 +18582,12 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 394, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 402, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3949; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18588,12 +18614,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 396, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 404, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3966; + this.state = 3951; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18620,12 +18646,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 398, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 406, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3968; + this.state = 3953; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18655,13 +18681,13 @@ export class SparkSqlParser extends SQLParserBase { switch (ruleIndex) { case 46: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 52: + case 56: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 138: + case 142: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 140: + case 144: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 142: + case 146: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18721,7 +18747,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,393,3971,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,393,3956,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -18754,335 +18780,334 @@ export class SparkSqlParser extends SQLParserBase { 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, - 7,197,2,198,7,198,2,199,7,199,1,0,5,0,402,8,0,10,0,12,0,405,9,0, - 1,0,1,0,1,1,1,1,3,1,411,8,1,1,2,1,2,3,2,415,8,2,1,2,1,2,1,2,3,2, - 420,8,2,1,2,1,2,1,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,3,2,432,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,440,8,2,10,2,12,2,443,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,461,8, - 2,1,2,1,2,3,2,465,8,2,1,2,1,2,1,2,1,2,3,2,471,8,2,1,2,3,2,474,8, - 2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,1,2,3,2,484,8,2,1,2,3,2,487,8, - 2,1,2,1,2,3,2,491,8,2,1,2,3,2,494,8,2,1,2,1,2,1,2,3,2,499,8,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,511,8,2,10,2,12,2,514, - 9,2,1,2,1,2,1,2,1,2,1,2,3,2,521,8,2,1,2,3,2,524,8,2,1,2,1,2,3,2, - 528,8,2,1,2,3,2,531,8,2,1,2,1,2,1,2,1,2,3,2,537,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,548,8,2,1,2,1,2,1,2,1,2,3,2,554,8,2, - 1,2,1,2,1,2,3,2,559,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 7,197,2,198,7,198,2,199,7,199,2,200,7,200,2,201,7,201,2,202,7,202, + 2,203,7,203,1,0,5,0,410,8,0,10,0,12,0,413,9,0,1,0,1,0,1,1,1,1,3, + 1,419,8,1,1,2,1,2,3,2,423,8,2,1,2,1,2,1,2,3,2,428,8,2,1,2,1,2,1, + 2,1,2,1,2,3,2,435,8,2,1,2,1,2,1,2,3,2,440,8,2,1,2,1,2,1,2,1,2,1, + 2,1,2,5,2,448,8,2,10,2,12,2,451,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,469,8,2,1,2,1,2,3,2,473, + 8,2,1,2,1,2,1,2,1,2,3,2,479,8,2,1,2,3,2,482,8,2,1,2,3,2,485,8,2, + 1,2,1,2,1,2,1,2,1,2,3,2,492,8,2,1,2,3,2,495,8,2,1,2,1,2,3,2,499, + 8,2,1,2,3,2,502,8,2,1,2,1,2,1,2,3,2,507,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,5,2,519,8,2,10,2,12,2,522,9,2,1,2,1,2,1,2,1, + 2,1,2,3,2,529,8,2,1,2,3,2,532,8,2,1,2,1,2,3,2,536,8,2,1,2,3,2,539, + 8,2,1,2,1,2,1,2,1,2,3,2,545,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,3,2,556,8,2,1,2,1,2,1,2,1,2,3,2,562,8,2,1,2,1,2,1,2,3,2,567, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,3,2,592,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,602,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,613,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,635,8,2,1,2,1,2,1,2,3,2,640,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,649,8,2,1,2,1,2,3,2,653,8,2,1,2,1,2,1,2,1,2, - 3,2,659,8,2,1,2,1,2,3,2,663,8,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2, - 1,2,1,2,3,2,674,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2,1,2,3,2, - 700,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,711,8,2,1,2,1,2, - 3,2,715,8,2,1,2,4,2,718,8,2,11,2,12,2,719,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,735,8,2,1,2,1,2,3,2,739,8,2,1, - 2,1,2,1,2,5,2,744,8,2,10,2,12,2,747,9,2,1,2,3,2,750,8,2,1,2,1,2, - 1,2,1,2,3,2,756,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,600,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,610,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,621,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,632,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 643,8,2,1,2,1,2,1,2,3,2,648,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 657,8,2,1,2,1,2,3,2,661,8,2,1,2,1,2,1,2,1,2,3,2,667,8,2,1,2,1,2, + 3,2,671,8,2,1,2,1,2,1,2,3,2,676,8,2,1,2,1,2,1,2,1,2,3,2,682,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,702,8,2,1,2,1,2,1,2,1,2,3,2,708,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,719,8,2,1,2,1,2,3,2,723,8,2,1,2,4,2, + 726,8,2,11,2,12,2,727,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,743,8,2,1,2,1,2,3,2,747,8,2,1,2,1,2,1,2,5,2,752,8, + 2,10,2,12,2,755,9,2,1,2,3,2,758,8,2,1,2,1,2,1,2,1,2,3,2,764,8,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1,2,3,2,794,8,2,1,2,1,2, - 1,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,1,2,3,2,807,8,2,1,2,3,2,810, - 8,2,1,2,3,2,813,8,2,1,2,1,2,3,2,817,8,2,1,2,1,2,3,2,821,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,829,8,2,10,2,12,2,832,9,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,840,8,2,1,2,3,2,843,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,852,8,2,1,2,1,2,1,2,3,2,857,8,2,1,2,1,2,1,2,1,2,3,2,863,8, - 2,1,2,1,2,1,2,1,2,1,2,3,2,870,8,2,1,2,3,2,873,8,2,1,2,1,2,3,2,877, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,886,8,2,10,2,12,2,889,9,2,3, - 2,891,8,2,1,2,1,2,1,2,1,2,3,2,897,8,2,1,2,1,2,3,2,901,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,916,8,2,10,2,12, - 2,919,9,2,1,2,1,2,1,2,1,2,1,2,3,2,926,8,2,1,2,1,2,3,2,930,8,2,1, - 2,1,2,1,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,3,2,943,8,2,1, - 2,3,2,946,8,2,1,2,1,2,1,2,1,2,3,2,952,8,2,1,2,1,2,1,2,3,2,957,8, - 2,1,2,1,2,3,2,961,8,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,3,2,971, - 8,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,3,2,981,8,2,1,2,1,2,1,2, - 3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,995,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,3,2,1009,8,2,1,2,3,2,1012, - 8,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,1,2,3,2,1025, - 8,2,1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037,8, - 2,3,2,1039,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1047,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1055,8,2,1,2,3,2,1058,8,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1065,8,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,1,2,3, - 2,1091,8,2,1,2,1,2,1,2,3,2,1096,8,2,1,2,3,2,1099,8,2,1,2,1,2,3,2, - 1103,8,2,1,2,3,2,1106,8,2,1,2,1,2,3,2,1110,8,2,1,2,1,2,1,2,1,2,1, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,793,8,2,1,2,1,2, + 3,2,797,8,2,1,2,1,2,1,2,3,2,802,8,2,1,2,1,2,1,2,1,2,1,2,3,2,809, + 8,2,1,2,1,2,1,2,1,2,3,2,815,8,2,1,2,3,2,818,8,2,1,2,3,2,821,8,2, + 1,2,1,2,3,2,825,8,2,1,2,1,2,3,2,829,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 5,2,837,8,2,10,2,12,2,840,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,848,8, + 2,1,2,3,2,851,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,860,8,2,1,2,1, + 2,1,2,3,2,865,8,2,1,2,1,2,1,2,1,2,3,2,871,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,878,8,2,1,2,3,2,881,8,2,1,2,1,2,3,2,885,8,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,5,2,894,8,2,10,2,12,2,897,9,2,3,2,899,8,2,1,2,1,2, + 1,2,1,2,3,2,905,8,2,1,2,1,2,3,2,909,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,924,8,2,10,2,12,2,927,9,2,1,2,1, + 2,1,2,1,2,1,2,3,2,934,8,2,1,2,1,2,3,2,938,8,2,1,2,1,2,1,2,1,2,3, + 2,944,8,2,1,2,3,2,947,8,2,1,2,1,2,3,2,951,8,2,1,2,3,2,954,8,2,1, + 2,1,2,1,2,1,2,3,2,960,8,2,1,2,1,2,1,2,3,2,965,8,2,1,2,1,2,3,2,969, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,976,8,2,1,2,3,2,979,8,2,1,2,3,2,982, + 8,2,1,2,1,2,1,2,1,2,1,2,3,2,989,8,2,1,2,1,2,1,2,3,2,994,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 1011,8,2,1,2,1,2,1,2,1,2,3,2,1017,8,2,1,2,3,2,1020,8,2,1,2,3,2,1023, + 8,2,1,2,1,2,1,2,1,2,3,2,1029,8,2,1,2,1,2,3,2,1033,8,2,1,2,1,2,1, + 2,3,2,1038,8,2,1,2,3,2,1041,8,2,1,2,1,2,3,2,1045,8,2,3,2,1047,8, + 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1055,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1063,8,2,1,2,3,2,1066,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1073,8,2,1,2, + 3,2,1076,8,2,1,2,3,2,1079,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1088, + 8,2,1,2,1,2,1,2,3,2,1093,8,2,1,2,1,2,1,2,1,2,3,2,1099,8,2,1,2,1, + 2,1,2,3,2,1104,8,2,1,2,3,2,1107,8,2,1,2,1,2,3,2,1111,8,2,1,2,3,2, + 1114,8,2,1,2,1,2,3,2,1118,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5, + 2,1144,8,2,10,2,12,2,1147,9,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1157,8,2,1,2,1,2,1,2,1,2,3,2,1163,8,2,1,2,3,2,1166,8,2,1,2, + 3,2,1169,8,2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1182,8,2,1,2,1,2,1,2,3,2,1187,8,2,1,2,1,2,1,2,1,2,3,2,1193,8,2, + 1,2,1,2,1,2,1,2,3,2,1199,8,2,1,2,3,2,1202,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1209,8,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,9,2,1,2,1, + 2,1,2,5,2,1222,8,2,10,2,12,2,1225,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,5,2,1239,8,2,10,2,12,2,1242,9,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,1136,8,2,10,2,12,2,1139,9,2,3,2,1141,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,3,2,1155,8,2,1,2, - 3,2,1158,8,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,3,2,1179,8,2,1,2,1,2,1,2, - 1,2,3,2,1185,8,2,1,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,3,2,1194,8,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1201,8,2,1,2,1,2,1,2,5,2,1206,8,2,10,2,12, - 2,1209,9,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1231,8,2,10,2,12,2,1234, - 9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1258,8,2,10,2,12,2,1261,9,2,3,2, - 1263,8,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270,9,2,1,2,1,2,1,2,1,2, - 5,2,1276,8,2,10,2,12,2,1279,9,2,1,2,1,2,1,2,1,2,5,2,1285,8,2,10, - 2,12,2,1288,9,2,1,2,1,2,1,2,3,2,1293,8,2,1,2,1,2,1,2,3,2,1298,8, - 2,1,2,1,2,1,2,3,2,1303,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1310,8,2,1,2, - 1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,3,2,1320,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1327,8,2,1,2,1,2,1,2,1,2,5,2,1333,8,2,10,2,12,2,1336,9,2,3, - 2,1338,8,2,1,3,1,3,3,3,1342,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, - 1,6,1,6,3,6,1354,8,6,1,6,1,6,3,6,1358,8,6,1,6,1,6,1,6,1,6,1,6,3, - 6,1365,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, + 2,1,2,1,2,1,2,5,2,1266,8,2,10,2,12,2,1269,9,2,3,2,1271,8,2,1,2,1, + 2,5,2,1275,8,2,10,2,12,2,1278,9,2,1,2,1,2,1,2,1,2,5,2,1284,8,2,10, + 2,12,2,1287,9,2,1,2,1,2,1,2,1,2,5,2,1293,8,2,10,2,12,2,1296,9,2, + 1,2,1,2,1,2,3,2,1301,8,2,1,2,1,2,1,2,3,2,1306,8,2,1,2,1,2,1,2,3, + 2,1311,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1318,8,2,1,2,1,2,1,2,3,2,1323, + 8,2,1,2,1,2,1,2,3,2,1328,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1335,8,2,1, + 2,1,2,1,2,1,2,5,2,1341,8,2,10,2,12,2,1344,9,2,3,2,1346,8,2,1,3,1, + 3,3,3,1350,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1362, + 8,6,1,6,1,6,3,6,1366,8,6,1,6,1,6,1,6,1,6,1,6,3,6,1373,8,6,1,6,1, + 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,3,6,1481,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1489, - 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6,1,6,1,6,1,6, - 1,6,3,6,1506,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1516,8,6,1, - 7,1,7,3,7,1520,8,7,1,7,3,7,1523,8,7,1,7,1,7,3,7,1527,8,7,1,7,1,7, - 1,8,1,8,3,8,1533,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, - 1545,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1557, - 8,10,1,10,1,10,1,10,3,10,1562,8,10,1,11,1,11,1,11,1,12,1,12,1,12, - 1,13,3,13,1571,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1579,8,14, - 1,14,1,14,1,14,3,14,1584,8,14,3,14,1586,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,3,14,1594,8,14,1,14,1,14,1,14,3,14,1599,8,14,1,14,1,14, - 3,14,1603,8,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,1,14,1,14,1,14, - 3,14,1614,8,14,1,14,1,14,1,14,3,14,1619,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,3,14,1628,8,14,1,14,1,14,1,14,3,14,1633,8,14,1,14, - 3,14,1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,1,14,3,14,1645, - 8,14,1,14,1,14,1,14,3,14,1650,8,14,3,14,1652,8,14,1,15,1,15,3,15, - 1656,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1663,8,16,10,16,12,16,1666, - 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1673,8,17,1,17,1,17,1,17,1,17, - 3,17,1679,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, - 1690,8,20,1,21,1,21,1,21,5,21,1695,8,21,10,21,12,21,1698,9,21,1, - 22,1,22,1,22,1,22,5,22,1704,8,22,10,22,12,22,1707,9,22,1,23,1,23, - 3,23,1711,8,23,1,23,3,23,1714,8,23,1,23,1,23,1,23,1,23,1,24,1,24, - 1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,5,25,1737,8,25,10,25,12,25,1740,9,25,1,26,1,26,1,26,1, - 27,1,27,1,27,1,27,5,27,1749,8,27,10,27,12,27,1752,9,27,1,27,1,27, - 1,28,1,28,3,28,1758,8,28,1,28,3,28,1761,8,28,1,29,1,29,1,29,5,29, - 1766,8,29,10,29,12,29,1769,9,29,1,29,3,29,1772,8,29,1,30,1,30,1, - 30,1,30,3,30,1778,8,30,1,31,1,31,1,31,1,31,5,31,1784,8,31,10,31, - 12,31,1787,9,31,1,31,1,31,1,32,1,32,3,32,1793,8,32,1,32,3,32,1796, - 8,32,1,33,1,33,1,33,1,33,5,33,1802,8,33,10,33,12,33,1805,9,33,1, - 33,1,33,1,34,1,34,1,34,1,34,5,34,1813,8,34,10,34,12,34,1816,9,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1826,8,35,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,37,3,37,1840, - 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1850,8,39,11,39, - 12,39,1851,1,39,1,39,1,39,1,39,1,39,3,39,1859,8,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1866,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,5,39,1884,8,39,10,39, - 12,39,1887,9,39,1,39,5,39,1890,8,39,10,39,12,39,1893,9,39,1,39,5, - 39,1896,8,39,10,39,12,39,1899,9,39,3,39,1901,8,39,1,40,1,40,1,41, - 1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1917, - 8,46,1,47,1,47,1,47,5,47,1922,8,47,10,47,12,47,1925,9,47,1,48,1, - 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1935,8,49,1,50,1,50,1,50,1, - 50,1,50,5,50,1942,8,50,10,50,12,50,1945,9,50,3,50,1947,8,50,1,50, - 1,50,1,50,1,50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959, - 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9, - 50,3,50,1971,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50, - 12,50,1981,9,50,3,50,1983,8,50,1,50,3,50,1986,8,50,1,50,1,50,1,50, - 3,50,1991,8,50,3,50,1993,8,50,1,50,1,50,3,50,1997,8,50,1,51,1,51, - 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2008,8,52,1,52,1,52,1,52, - 1,52,3,52,2014,8,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,5,52, - 2023,8,52,10,52,12,52,2026,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, - 53,1,53,1,53,3,53,2037,8,53,1,54,1,54,3,54,2041,8,54,1,54,3,54,2044, - 8,54,1,54,1,54,3,54,2048,8,54,1,55,1,55,4,55,2052,8,55,11,55,12, - 55,2053,1,56,1,56,3,56,2058,8,56,1,56,1,56,1,56,1,56,5,56,2064,8, - 56,10,56,12,56,2067,9,56,1,56,3,56,2070,8,56,1,56,3,56,2073,8,56, - 1,56,3,56,2076,8,56,1,56,3,56,2079,8,56,1,56,1,56,3,56,2083,8,56, - 1,57,1,57,3,57,2087,8,57,1,57,5,57,2090,8,57,10,57,12,57,2093,9, - 57,1,57,3,57,2096,8,57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1, - 57,3,57,2105,8,57,1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10, - 57,12,57,2115,9,57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57, - 3,57,2124,8,57,1,57,3,57,2127,8,57,3,57,2129,8,57,1,58,1,58,1,58, - 1,58,3,58,2135,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2142,8,58,1,58, - 1,58,1,58,3,58,2147,8,58,1,58,3,58,2150,8,58,1,58,3,58,2153,8,58, - 1,58,1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 3,58,2167,8,58,1,58,1,58,3,58,2171,8,58,3,58,2173,8,58,1,58,3,58, - 2176,8,58,1,58,1,58,3,58,2180,8,58,1,59,1,59,5,59,2184,8,59,10,59, - 12,59,2187,9,59,1,59,3,59,2190,8,59,1,59,1,59,1,60,1,60,1,60,1,61, - 1,61,1,61,1,61,3,61,2201,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, - 1,62,3,62,2211,8,62,1,62,1,62,3,62,2215,8,62,1,62,1,62,1,62,1,63, - 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63,1,63,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2239,8,64,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2252,8,65,10,65,12,65,2255, - 9,65,1,65,1,65,3,65,2259,8,65,1,66,1,66,1,66,1,66,3,66,2265,8,66, - 1,67,1,67,1,67,5,67,2270,8,67,10,67,12,67,2273,9,67,1,68,1,68,1, - 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2288,8, - 71,1,71,5,71,2291,8,71,10,71,12,71,2294,9,71,1,71,1,71,1,72,1,72, - 1,72,1,72,1,72,1,72,5,72,2304,8,72,10,72,12,72,2307,9,72,1,72,1, - 72,3,72,2311,8,72,1,73,1,73,1,73,1,73,5,73,2317,8,73,10,73,12,73, - 2320,9,73,1,73,5,73,2323,8,73,10,73,12,73,2326,9,73,1,73,3,73,2329, - 8,73,1,73,3,73,2332,8,73,1,74,1,74,1,75,3,75,2337,8,75,1,75,1,75, - 1,75,1,75,1,75,3,75,2344,8,75,1,75,1,75,1,75,1,75,3,75,2350,8,75, - 1,76,1,76,1,76,1,76,1,76,5,76,2357,8,76,10,76,12,76,2360,9,76,1, - 76,1,76,1,76,1,76,1,76,5,76,2367,8,76,10,76,12,76,2370,9,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2382,8,76,10,76, - 12,76,2385,9,76,1,76,1,76,3,76,2389,8,76,3,76,2391,8,76,1,77,1,77, - 1,77,3,77,2396,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2403,8,78,10,78, - 12,78,2406,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2416, - 8,78,10,78,12,78,2419,9,78,1,78,1,78,3,78,2423,8,78,1,79,1,79,3, - 79,2427,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2434,8,80,1,80,1,80,1, - 80,3,80,2439,8,80,5,80,2441,8,80,10,80,12,80,2444,9,80,3,80,2446, - 8,80,1,80,3,80,2449,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,5,81,2461,8,81,10,81,12,81,2464,9,81,1,81,1,81,1,81,1, - 82,1,82,1,82,1,82,1,82,5,82,2474,8,82,10,82,12,82,2477,9,82,1,82, - 1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8,83,1,83,3,83,2488,8,83, - 1,84,1,84,3,84,2492,8,84,1,84,1,84,1,84,1,84,3,84,2498,8,84,1,84, - 3,84,2501,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2508,8,86,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2518,8,87,10,87,12,87,2521,9, - 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2529,8,88,10,88,12,88,2532, - 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2542,8,88,10,88, - 12,88,2545,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2553,8,89,10, - 89,12,89,2556,9,89,1,89,1,89,3,89,2560,8,89,1,90,1,90,1,91,1,91, - 1,92,1,92,3,92,2568,8,92,1,93,1,93,1,94,3,94,2573,8,94,1,94,1,94, - 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2587,8,97, - 1,97,1,97,1,97,1,97,1,97,5,97,2594,8,97,10,97,12,97,2597,9,97,3, - 97,2599,8,97,1,97,1,97,1,97,3,97,2604,8,97,1,97,1,97,1,97,5,97,2609, - 8,97,10,97,12,97,2612,9,97,3,97,2614,8,97,1,98,1,98,1,99,1,99,3, - 99,2620,8,99,1,99,1,99,5,99,2624,8,99,10,99,12,99,2627,9,99,3,99, - 2629,8,99,1,100,1,100,1,100,3,100,2634,8,100,1,101,1,101,1,101,3, - 101,2639,8,101,1,101,1,101,3,101,2643,8,101,1,101,1,101,1,101,1, - 101,3,101,2649,8,101,1,101,1,101,3,101,2653,8,101,1,102,3,102,2656, - 8,102,1,102,1,102,1,102,3,102,2661,8,102,1,102,3,102,2664,8,102, - 1,102,1,102,1,102,3,102,2669,8,102,1,102,1,102,3,102,2673,8,102, - 1,102,3,102,2676,8,102,1,102,3,102,2679,8,102,1,103,1,103,1,103, - 1,103,3,103,2685,8,103,1,104,1,104,1,104,3,104,2690,8,104,1,104, - 1,104,1,104,1,104,1,104,3,104,2697,8,104,1,105,3,105,2700,8,105, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,3,105,2718,8,105,3,105,2720,8,105, - 1,105,3,105,2723,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 5,107,2732,8,107,10,107,12,107,2735,9,107,1,108,1,108,1,108,1,108, - 5,108,2741,8,108,10,108,12,108,2744,9,108,1,108,1,108,1,109,1,109, - 3,109,2750,8,109,1,110,1,110,1,110,1,110,5,110,2756,8,110,10,110, - 12,110,2759,9,110,1,110,1,110,1,111,1,111,3,111,2765,8,111,1,112, - 1,112,1,112,3,112,2770,8,112,1,112,3,112,2773,8,112,1,112,3,112, - 2776,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2784,8,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2792,8,112,1,112,1,112, - 1,112,1,112,3,112,2798,8,112,1,113,1,113,1,113,1,113,5,113,2804, - 8,113,10,113,12,113,2807,9,113,1,113,1,113,1,114,1,114,1,114,3,114, - 2814,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2821,8,114,1,114, - 1,114,1,114,1,114,1,114,3,114,2828,8,114,3,114,2830,8,114,1,115, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2841,8,115, - 10,115,12,115,2844,9,115,1,115,1,115,1,115,3,115,2849,8,115,3,115, - 2851,8,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2859,8,115, - 10,115,12,115,2862,9,115,1,115,1,115,1,115,3,115,2867,8,115,3,115, - 2869,8,115,1,116,1,116,1,116,1,116,1,117,1,117,3,117,2877,8,117, - 1,118,1,118,3,118,2881,8,118,1,119,1,119,1,119,1,119,1,119,5,119, - 2888,8,119,10,119,12,119,2891,9,119,3,119,2893,8,119,1,119,1,119, - 1,119,1,120,3,120,2899,8,120,1,120,1,120,3,120,2903,8,120,3,120, - 2905,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2914, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2926,8,121,3,121,2928,8,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2935,8,121,1,121,1,121,1,121,1,121,1,121,3,121,2942,8,121, - 1,121,1,121,1,121,1,121,3,121,2948,8,121,1,121,1,121,1,121,1,121, - 3,121,2954,8,121,3,121,2956,8,121,1,122,1,122,1,122,5,122,2961,8, - 122,10,122,12,122,2964,9,122,1,123,1,123,1,123,5,123,2969,8,123, - 10,123,12,123,2972,9,123,1,124,1,124,1,124,5,124,2977,8,124,10,124, - 12,124,2980,9,124,1,125,1,125,1,125,3,125,2985,8,125,1,126,1,126, - 1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127,1,127,3,127,2997, - 8,127,1,127,1,127,1,128,1,128,3,128,3003,8,128,1,128,3,128,3006, - 8,128,1,128,1,128,3,128,3010,8,128,3,128,3012,8,128,1,129,1,129, - 1,129,5,129,3017,8,129,10,129,12,129,3020,9,129,1,130,1,130,1,130, - 1,130,5,130,3026,8,130,10,130,12,130,3029,9,130,1,130,1,130,1,131, - 1,131,3,131,3035,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3043,8,132,10,132,12,132,3046,9,132,1,132,1,132,3,132,3050,8,132, - 1,133,1,133,3,133,3054,8,133,1,134,1,134,1,135,1,135,1,135,1,135, - 1,136,1,136,3,136,3064,8,136,1,137,1,137,1,137,5,137,3069,8,137, - 10,137,12,137,3072,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,3,138,3084,8,138,3,138,3086,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3094,8,138,10,138,12,138,3097,9,138, - 1,139,3,139,3100,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 3108,8,139,1,139,1,139,1,139,1,139,1,139,5,139,3115,8,139,10,139, - 12,139,3118,9,139,1,139,1,139,1,139,3,139,3123,8,139,1,139,1,139, - 1,139,1,139,1,139,1,139,3,139,3131,8,139,1,139,1,139,1,139,3,139, - 3136,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,5,139, - 3146,8,139,10,139,12,139,3149,9,139,1,139,1,139,3,139,3153,8,139, - 1,139,3,139,3156,8,139,1,139,1,139,1,139,1,139,3,139,3162,8,139, - 1,139,1,139,3,139,3166,8,139,1,139,1,139,1,139,3,139,3171,8,139, - 1,139,1,139,1,139,3,139,3176,8,139,1,139,1,139,1,139,3,139,3181, - 8,139,1,140,1,140,1,140,1,140,3,140,3187,8,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,5,140,3208,8,140,10,140,12,140,3211, - 9,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3221, - 8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3233,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3243,8,142,11,142,12,142,3244,1,142,1,142,3,142,3249,8,142, - 1,142,1,142,1,142,1,142,1,142,4,142,3256,8,142,11,142,12,142,3257, - 1,142,1,142,3,142,3262,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3278,8,142, - 10,142,12,142,3281,9,142,3,142,3283,8,142,1,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3291,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,3,142,3300,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3309,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3330,8,142,11,142,12,142,3331,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3348, - 8,142,1,142,1,142,1,142,5,142,3353,8,142,10,142,12,142,3356,9,142, - 3,142,3358,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 3367,8,142,1,142,1,142,3,142,3371,8,142,1,142,1,142,3,142,3375,8, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,4,142,3385,8, - 142,11,142,12,142,3386,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,3,142,3412,8,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3419,8,142,1,142,3,142,3422,8,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3437,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3458,8,142,1,142,1,142,3,142,3462,8,142,3,142,3464,8,142,1, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3474,8,142,10, - 142,12,142,3477,9,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 3,143,3486,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,4,144,3499,8,144,11,144,12,144,3500,3,144,3503, - 8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149, - 1,149,3,149,3516,8,149,1,150,1,150,3,150,3520,8,150,1,151,1,151, - 1,151,4,151,3525,8,151,11,151,12,151,3526,1,152,1,152,1,152,3,152, - 3532,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,3540,8,154, - 1,154,1,154,1,154,3,154,3545,8,154,1,155,1,155,1,156,1,156,1,157, - 1,157,1,157,3,157,3554,8,157,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,3586,8,158,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3603, - 8,159,1,159,1,159,3,159,3607,8,159,1,159,1,159,1,159,1,159,3,159, - 3613,8,159,1,159,1,159,1,159,1,159,3,159,3619,8,159,1,159,1,159, - 1,159,1,159,1,159,5,159,3626,8,159,10,159,12,159,3629,9,159,1,159, - 3,159,3632,8,159,3,159,3634,8,159,1,160,1,160,1,160,5,160,3639,8, - 160,10,160,12,160,3642,9,160,1,161,1,161,1,161,5,161,3647,8,161, - 10,161,12,161,3650,9,161,1,162,1,162,1,162,5,162,3655,8,162,10,162, - 12,162,3658,9,162,1,163,1,163,1,163,5,163,3663,8,163,10,163,12,163, - 3666,9,163,1,164,1,164,1,164,1,164,1,164,3,164,3673,8,164,1,165, - 1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,5,167,3684,8,167, - 10,167,12,167,3687,9,167,1,168,1,168,1,168,1,168,3,168,3693,8,168, - 1,168,3,168,3696,8,168,1,169,1,169,1,169,5,169,3701,8,169,10,169, - 12,169,3704,9,169,1,170,1,170,1,170,5,170,3709,8,170,10,170,12,170, - 3712,9,170,1,171,1,171,1,171,1,171,1,171,3,171,3719,8,171,1,172, - 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3731, - 8,173,10,173,12,173,3734,9,173,1,174,1,174,3,174,3738,8,174,1,174, - 1,174,1,174,3,174,3743,8,174,1,174,3,174,3746,8,174,1,175,1,175, - 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,3757,8,176,10,176, - 12,176,3760,9,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 5,179,3781,8,179,10,179,12,179,3784,9,179,1,179,1,179,1,179,1,179, - 1,179,5,179,3791,8,179,10,179,12,179,3794,9,179,3,179,3796,8,179, - 1,179,1,179,1,179,1,179,1,179,5,179,3803,8,179,10,179,12,179,3806, - 9,179,3,179,3808,8,179,3,179,3810,8,179,1,179,3,179,3813,8,179,1, - 179,3,179,3816,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1, - 180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,3834,8, - 180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3843,8,181,1, - 182,1,182,1,182,5,182,3848,8,182,10,182,12,182,3851,9,182,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,3862,8,183, - 1,184,1,184,1,185,1,185,1,185,5,185,3869,8,185,10,185,12,185,3872, - 9,185,1,186,1,186,1,186,1,187,1,187,4,187,3879,8,187,11,187,12,187, - 3880,1,187,3,187,3884,8,187,1,188,1,188,3,188,3888,8,188,1,189,1, - 189,1,189,1,189,3,189,3894,8,189,1,190,1,190,1,191,1,191,1,192,3, - 192,3901,8,192,1,192,1,192,3,192,3905,8,192,1,192,1,192,3,192,3909, - 8,192,1,192,1,192,3,192,3913,8,192,1,192,1,192,3,192,3917,8,192, - 1,192,1,192,3,192,3921,8,192,1,192,1,192,3,192,3925,8,192,1,192, - 1,192,3,192,3929,8,192,1,192,1,192,3,192,3933,8,192,1,192,1,192, - 3,192,3937,8,192,1,192,3,192,3940,8,192,1,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3953,8,193,1,194, - 1,194,1,195,1,195,3,195,3959,8,195,1,196,1,196,3,196,3963,8,196, - 1,197,1,197,1,198,1,198,1,199,1,199,1,199,9,1137,1207,1215,1232, - 1259,1268,1277,1286,1334,4,104,276,280,284,200,0,2,4,6,8,10,12,14, + 6,3,6,1489,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6, + 1,6,1,6,1,6,3,6,1505,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1514,8, + 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1524,8,6,1,7,1,7,3,7,1528, + 8,7,1,7,3,7,1531,8,7,1,7,1,7,3,7,1535,8,7,1,7,1,7,1,8,1,8,3,8,1541, + 8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1553,8,9,1,9,1,9, + 1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1565,8,10,1,10,1,10,1, + 10,3,10,1570,8,10,1,11,1,11,1,11,1,12,1,12,1,12,1,13,3,13,1579,8, + 13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1587,8,14,1,14,1,14,1,14,3, + 14,1592,8,14,3,14,1594,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1602, + 8,14,1,14,1,14,1,14,3,14,1607,8,14,1,14,1,14,3,14,1611,8,14,1,14, + 3,14,1614,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1622,8,14,1,14, + 1,14,1,14,3,14,1627,8,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14, + 1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,3,14,1644,8,14,1,14, + 1,14,1,14,3,14,1649,8,14,1,14,1,14,3,14,1653,8,14,1,14,1,14,1,14, + 3,14,1658,8,14,3,14,1660,8,14,1,15,1,15,3,15,1664,8,15,1,16,1,16, + 1,16,1,16,1,16,5,16,1671,8,16,10,16,12,16,1674,9,16,1,16,1,16,1, + 17,1,17,1,17,3,17,1681,8,17,1,17,1,17,1,17,1,17,3,17,1687,8,17,1, + 18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20,1698,8,20,1,21,1, + 21,1,21,5,21,1703,8,21,10,21,12,21,1706,9,21,1,22,1,22,1,22,1,22, + 5,22,1712,8,22,10,22,12,22,1715,9,22,1,23,1,23,3,23,1719,8,23,1, + 23,3,23,1722,8,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1, + 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,5,25,1745, + 8,25,10,25,12,25,1748,9,25,1,26,1,26,1,26,1,27,1,27,1,27,1,27,5, + 27,1757,8,27,10,27,12,27,1760,9,27,1,27,1,27,1,28,1,28,3,28,1766, + 8,28,1,28,3,28,1769,8,28,1,29,1,29,1,29,5,29,1774,8,29,10,29,12, + 29,1777,9,29,1,29,3,29,1780,8,29,1,30,1,30,1,30,1,30,3,30,1786,8, + 30,1,31,1,31,1,31,1,31,5,31,1792,8,31,10,31,12,31,1795,9,31,1,31, + 1,31,1,32,1,32,3,32,1801,8,32,1,32,3,32,1804,8,32,1,33,1,33,1,33, + 1,33,5,33,1810,8,33,10,33,12,33,1813,9,33,1,33,1,33,1,34,1,34,1, + 34,1,34,5,34,1821,8,34,10,34,12,34,1824,9,34,1,34,1,34,1,35,1,35, + 1,35,1,35,1,35,1,35,3,35,1834,8,35,1,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1842,8,36,1,37,1,37,1,37,1,37,3,37,1848,8,37,1,38,1,38,1,38, + 1,39,1,39,1,39,1,39,1,39,4,39,1858,8,39,11,39,12,39,1859,1,39,1, + 39,1,39,1,39,1,39,3,39,1867,8,39,1,39,1,39,1,39,1,39,1,39,3,39,1874, + 8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,1886, + 8,39,1,39,1,39,1,39,1,39,5,39,1892,8,39,10,39,12,39,1895,9,39,1, + 39,5,39,1898,8,39,10,39,12,39,1901,9,39,1,39,5,39,1904,8,39,10,39, + 12,39,1907,9,39,3,39,1909,8,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43, + 1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1925,8,46,1,47,1,47,1,48, + 1,48,1,48,5,48,1932,8,48,10,48,12,48,1935,9,48,1,49,1,49,1,50,1, + 50,1,50,1,50,1,50,1,50,3,50,1945,8,50,1,51,1,51,1,51,3,51,1950,8, + 51,1,51,1,51,1,51,3,51,1955,8,51,1,51,1,51,1,51,3,51,1960,8,51,1, + 51,1,51,1,51,3,51,1965,8,51,1,51,3,51,1968,8,51,1,51,3,51,1971,8, + 51,1,51,1,51,3,51,1975,8,51,1,52,1,52,1,52,3,52,1980,8,52,1,53,1, + 53,1,53,5,53,1985,8,53,10,53,12,53,1988,9,53,1,54,1,54,1,54,5,54, + 1993,8,54,10,54,12,54,1996,9,54,1,55,1,55,1,55,1,56,1,56,1,56,1, + 56,1,56,1,56,3,56,2007,8,56,1,56,1,56,1,56,1,56,3,56,2013,8,56,1, + 56,1,56,1,56,1,56,3,56,2019,8,56,1,56,5,56,2022,8,56,10,56,12,56, + 2025,9,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2036, + 8,57,1,58,1,58,3,58,2040,8,58,1,58,3,58,2043,8,58,1,58,1,58,3,58, + 2047,8,58,1,59,1,59,4,59,2051,8,59,11,59,12,59,2052,1,60,1,60,3, + 60,2057,8,60,1,60,1,60,1,60,1,60,5,60,2063,8,60,10,60,12,60,2066, + 9,60,1,60,3,60,2069,8,60,1,60,3,60,2072,8,60,1,60,3,60,2075,8,60, + 1,60,3,60,2078,8,60,1,60,1,60,3,60,2082,8,60,1,61,1,61,3,61,2086, + 8,61,1,61,5,61,2089,8,61,10,61,12,61,2092,9,61,1,61,3,61,2095,8, + 61,1,61,3,61,2098,8,61,1,61,3,61,2101,8,61,1,61,3,61,2104,8,61,1, + 61,1,61,3,61,2108,8,61,1,61,5,61,2111,8,61,10,61,12,61,2114,9,61, + 1,61,3,61,2117,8,61,1,61,3,61,2120,8,61,1,61,3,61,2123,8,61,1,61, + 3,61,2126,8,61,3,61,2128,8,61,1,62,1,62,1,62,1,62,3,62,2134,8,62, + 1,62,1,62,1,62,1,62,1,62,3,62,2141,8,62,1,62,1,62,1,62,3,62,2146, + 8,62,1,62,3,62,2149,8,62,1,62,3,62,2152,8,62,1,62,1,62,3,62,2156, + 8,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,2166,8,62,1,62, + 1,62,3,62,2170,8,62,3,62,2172,8,62,1,62,3,62,2175,8,62,1,62,1,62, + 3,62,2179,8,62,1,63,1,63,5,63,2183,8,63,10,63,12,63,2186,9,63,1, + 63,3,63,2189,8,63,1,63,1,63,1,64,1,64,1,64,1,65,1,65,1,65,1,65,3, + 65,2200,8,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,3,66,2210,8, + 66,1,66,1,66,3,66,2214,8,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1, + 67,1,67,1,67,3,67,2226,8,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2238,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1, + 69,1,69,1,69,1,69,5,69,2251,8,69,10,69,12,69,2254,9,69,1,69,1,69, + 3,69,2258,8,69,1,70,1,70,1,70,1,70,3,70,2264,8,70,1,71,1,71,1,71, + 5,71,2269,8,71,10,71,12,71,2272,9,71,1,72,1,72,1,72,1,72,1,73,1, + 73,1,73,1,74,1,74,1,74,1,75,1,75,1,75,3,75,2287,8,75,1,75,5,75,2290, + 8,75,10,75,12,75,2293,9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1, + 76,5,76,2303,8,76,10,76,12,76,2306,9,76,1,76,1,76,3,76,2310,8,76, + 1,77,1,77,1,77,1,77,5,77,2316,8,77,10,77,12,77,2319,9,77,1,77,5, + 77,2322,8,77,10,77,12,77,2325,9,77,1,77,3,77,2328,8,77,1,77,3,77, + 2331,8,77,1,78,1,78,1,79,3,79,2336,8,79,1,79,1,79,1,79,1,79,1,79, + 3,79,2343,8,79,1,79,1,79,1,79,1,79,3,79,2349,8,79,1,80,1,80,1,80, + 1,80,1,80,5,80,2356,8,80,10,80,12,80,2359,9,80,1,80,1,80,1,80,1, + 80,1,80,5,80,2366,8,80,10,80,12,80,2369,9,80,1,80,1,80,1,80,1,80, + 1,80,1,80,1,80,1,80,1,80,1,80,5,80,2381,8,80,10,80,12,80,2384,9, + 80,1,80,1,80,3,80,2388,8,80,3,80,2390,8,80,1,81,1,81,1,81,3,81,2395, + 8,81,1,82,1,82,1,82,1,82,1,82,5,82,2402,8,82,10,82,12,82,2405,9, + 82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,2415,8,82,10,82, + 12,82,2418,9,82,1,82,1,82,3,82,2422,8,82,1,83,1,83,3,83,2426,8,83, + 1,84,1,84,1,84,1,84,1,84,3,84,2433,8,84,1,84,1,84,1,84,3,84,2438, + 8,84,5,84,2440,8,84,10,84,12,84,2443,9,84,3,84,2445,8,84,1,84,3, + 84,2448,8,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,5, + 85,2460,8,85,10,85,12,85,2463,9,85,1,85,1,85,1,85,1,86,1,86,1,86, + 1,86,1,86,5,86,2473,8,86,10,86,12,86,2476,9,86,1,86,1,86,3,86,2480, + 8,86,1,87,1,87,3,87,2484,8,87,1,87,3,87,2487,8,87,1,88,1,88,3,88, + 2491,8,88,1,88,1,88,1,88,1,88,3,88,2497,8,88,1,88,3,88,2500,8,88, + 1,89,1,89,1,89,1,90,1,90,3,90,2507,8,90,1,91,1,91,1,91,1,91,1,91, + 1,91,1,91,1,91,5,91,2517,8,91,10,91,12,91,2520,9,91,1,91,1,91,1, + 92,1,92,1,92,1,92,5,92,2528,8,92,10,92,12,92,2531,9,92,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,1,92,5,92,2541,8,92,10,92,12,92,2544,9, + 92,1,92,1,92,1,93,1,93,1,93,1,93,5,93,2552,8,93,10,93,12,93,2555, + 9,93,1,93,1,93,3,93,2559,8,93,1,94,1,94,1,95,1,95,1,96,1,96,3,96, + 2567,8,96,1,97,1,97,1,98,3,98,2572,8,98,1,98,1,98,1,99,1,99,1,99, + 1,99,1,100,1,100,1,100,1,101,1,101,1,101,3,101,2586,8,101,1,101, + 1,101,1,101,1,101,1,101,5,101,2593,8,101,10,101,12,101,2596,9,101, + 3,101,2598,8,101,1,101,1,101,1,101,3,101,2603,8,101,1,101,1,101, + 1,101,5,101,2608,8,101,10,101,12,101,2611,9,101,3,101,2613,8,101, + 1,102,1,102,1,103,1,103,3,103,2619,8,103,1,103,1,103,5,103,2623, + 8,103,10,103,12,103,2626,9,103,3,103,2628,8,103,1,104,1,104,1,104, + 3,104,2633,8,104,1,105,1,105,1,105,3,105,2638,8,105,1,105,1,105, + 3,105,2642,8,105,1,105,1,105,1,105,1,105,3,105,2648,8,105,1,105, + 1,105,3,105,2652,8,105,1,106,3,106,2655,8,106,1,106,1,106,1,106, + 3,106,2660,8,106,1,106,3,106,2663,8,106,1,106,1,106,1,106,3,106, + 2668,8,106,1,106,1,106,3,106,2672,8,106,1,106,3,106,2675,8,106,1, + 106,3,106,2678,8,106,1,107,1,107,1,107,1,107,3,107,2684,8,107,1, + 108,1,108,1,108,3,108,2689,8,108,1,108,1,108,1,108,1,108,1,108,3, + 108,2696,8,108,1,109,3,109,2699,8,109,1,109,1,109,1,109,1,109,1, + 109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, + 1,109,3,109,2717,8,109,3,109,2719,8,109,1,109,3,109,2722,8,109,1, + 110,1,110,1,110,1,110,1,111,1,111,1,111,5,111,2731,8,111,10,111, + 12,111,2734,9,111,1,112,1,112,1,112,1,112,5,112,2740,8,112,10,112, + 12,112,2743,9,112,1,112,1,112,1,113,1,113,3,113,2749,8,113,1,114, + 1,114,1,114,1,114,5,114,2755,8,114,10,114,12,114,2758,9,114,1,114, + 1,114,1,115,1,115,3,115,2764,8,115,1,116,1,116,1,116,3,116,2769, + 8,116,1,116,3,116,2772,8,116,1,116,3,116,2775,8,116,1,116,1,116, + 1,116,1,116,1,116,1,116,3,116,2783,8,116,1,116,1,116,1,116,1,116, + 1,116,1,116,3,116,2791,8,116,1,116,1,116,1,116,1,116,3,116,2797, + 8,116,1,117,1,117,1,117,1,117,5,117,2803,8,117,10,117,12,117,2806, + 9,117,1,117,1,117,1,118,1,118,1,118,3,118,2813,8,118,1,118,1,118, + 1,118,1,118,1,118,3,118,2820,8,118,1,118,1,118,1,118,1,118,1,118, + 3,118,2827,8,118,3,118,2829,8,118,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,1,119,5,119,2840,8,119,10,119,12,119,2843,9,119, + 1,119,1,119,1,119,3,119,2848,8,119,3,119,2850,8,119,1,119,1,119, + 1,119,1,119,1,119,1,119,1,119,3,119,2859,8,119,3,119,2861,8,119, + 1,120,1,120,1,120,1,120,1,121,1,121,3,121,2869,8,121,1,122,1,122, + 3,122,2873,8,122,1,123,1,123,1,123,1,123,1,123,5,123,2880,8,123, + 10,123,12,123,2883,9,123,3,123,2885,8,123,1,123,1,123,1,123,1,124, + 3,124,2891,8,124,1,124,1,124,3,124,2895,8,124,3,124,2897,8,124,1, + 125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,2906,8,125,1,125,1, + 125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,2918,8, + 125,3,125,2920,8,125,1,125,1,125,1,125,1,125,1,125,3,125,2927,8, + 125,1,125,1,125,1,125,1,125,1,125,3,125,2934,8,125,1,125,1,125,1, + 125,1,125,3,125,2940,8,125,1,125,1,125,1,125,1,125,3,125,2946,8, + 125,3,125,2948,8,125,1,126,1,126,1,126,5,126,2953,8,126,10,126,12, + 126,2956,9,126,1,127,1,127,1,127,5,127,2961,8,127,10,127,12,127, + 2964,9,127,1,128,1,128,1,128,5,128,2969,8,128,10,128,12,128,2972, + 9,128,1,129,1,129,1,129,3,129,2977,8,129,1,130,1,130,1,130,3,130, + 2982,8,130,1,130,1,130,1,131,1,131,1,131,3,131,2989,8,131,1,131, + 1,131,1,132,1,132,3,132,2995,8,132,1,132,3,132,2998,8,132,1,132, + 1,132,3,132,3002,8,132,3,132,3004,8,132,1,133,1,133,1,133,5,133, + 3009,8,133,10,133,12,133,3012,9,133,1,134,1,134,1,134,1,134,5,134, + 3018,8,134,10,134,12,134,3021,9,134,1,134,1,134,1,135,1,135,3,135, + 3027,8,135,1,136,1,136,1,136,1,136,1,136,1,136,5,136,3035,8,136, + 10,136,12,136,3038,9,136,1,136,1,136,3,136,3042,8,136,1,137,1,137, + 3,137,3046,8,137,1,138,1,138,1,139,1,139,1,139,1,139,1,140,1,140, + 3,140,3056,8,140,1,141,1,141,1,141,5,141,3061,8,141,10,141,12,141, + 3064,9,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,3,142,3076,8,142,3,142,3078,8,142,1,142,1,142,1,142,1,142, + 1,142,1,142,5,142,3086,8,142,10,142,12,142,3089,9,142,1,143,3,143, + 3092,8,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,3100,8,143, + 1,143,1,143,1,143,1,143,1,143,5,143,3107,8,143,10,143,12,143,3110, + 9,143,1,143,1,143,1,143,3,143,3115,8,143,1,143,1,143,1,143,1,143, + 1,143,1,143,3,143,3123,8,143,1,143,1,143,1,143,3,143,3128,8,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,5,143,3138,8,143, + 10,143,12,143,3141,9,143,1,143,1,143,3,143,3145,8,143,1,143,3,143, + 3148,8,143,1,143,1,143,1,143,1,143,3,143,3154,8,143,1,143,1,143, + 3,143,3158,8,143,1,143,1,143,1,143,3,143,3163,8,143,1,143,1,143, + 1,143,3,143,3168,8,143,1,143,1,143,1,143,3,143,3173,8,143,1,144, + 1,144,1,144,1,144,3,144,3179,8,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,144, + 1,144,1,144,1,144,5,144,3200,8,144,10,144,12,144,3203,9,144,1,145, + 1,145,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3213,8,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3225, + 8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,4,146,3235, + 8,146,11,146,12,146,3236,1,146,1,146,3,146,3241,8,146,1,146,1,146, + 1,146,1,146,1,146,4,146,3248,8,146,11,146,12,146,3249,1,146,1,146, + 3,146,3254,8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,5,146,3270,8,146,10,146,12,146, + 3273,9,146,3,146,3275,8,146,1,146,1,146,1,146,1,146,1,146,1,146, + 3,146,3283,8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146, + 3292,8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3301, + 8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,4,146,3322, + 8,146,11,146,12,146,3323,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3340,8,146,1,146, + 1,146,1,146,5,146,3345,8,146,10,146,12,146,3348,9,146,3,146,3350, + 8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3359,8,146, + 1,146,1,146,3,146,3363,8,146,1,146,1,146,3,146,3367,8,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,4,146,3377,8,146,11,146, + 12,146,3378,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,3,146,3404,8,146,1,146,1,146,1,146,1,146,1,146, + 3,146,3411,8,146,1,146,3,146,3414,8,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3429, + 8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3450, + 8,146,1,146,1,146,3,146,3454,8,146,3,146,3456,8,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,5,146,3466,8,146,10,146,12,146, + 3469,9,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147,3478, + 8,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,4,148,3491,8,148,11,148,12,148,3492,3,148,3495,8,148,1,149, + 1,149,1,150,1,150,1,151,1,151,1,152,1,152,1,153,1,153,1,153,3,153, + 3508,8,153,1,154,1,154,3,154,3512,8,154,1,155,1,155,1,155,4,155, + 3517,8,155,11,155,12,155,3518,1,156,1,156,1,156,3,156,3524,8,156, + 1,157,1,157,1,157,1,157,1,157,1,158,3,158,3532,8,158,1,158,1,158, + 1,158,3,158,3537,8,158,1,159,1,159,1,160,1,160,1,161,1,161,1,161, + 3,161,3546,8,161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162,1,162, + 3,162,3578,8,162,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,1,163,1,163,1,163,1,163,3,163,3595,8,163,1,163, + 1,163,3,163,3599,8,163,1,163,1,163,1,163,1,163,3,163,3605,8,163, + 1,163,1,163,1,163,1,163,3,163,3611,8,163,1,163,1,163,1,163,1,163, + 1,163,5,163,3618,8,163,10,163,12,163,3621,9,163,1,163,3,163,3624, + 8,163,3,163,3626,8,163,1,164,1,164,1,164,5,164,3631,8,164,10,164, + 12,164,3634,9,164,1,165,1,165,1,165,5,165,3639,8,165,10,165,12,165, + 3642,9,165,1,166,1,166,1,166,5,166,3647,8,166,10,166,12,166,3650, + 9,166,1,167,1,167,1,167,5,167,3655,8,167,10,167,12,167,3658,9,167, + 1,168,1,168,1,168,1,168,1,168,3,168,3665,8,168,1,169,1,169,1,169, + 1,170,1,170,1,170,1,171,1,171,1,171,5,171,3676,8,171,10,171,12,171, + 3679,9,171,1,172,1,172,1,172,1,172,3,172,3685,8,172,1,172,3,172, + 3688,8,172,1,173,1,173,1,173,5,173,3693,8,173,10,173,12,173,3696, + 9,173,1,174,1,174,1,174,5,174,3701,8,174,10,174,12,174,3704,9,174, + 1,175,1,175,1,175,1,175,1,175,3,175,3711,8,175,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,177,1,177,1,177,5,177,3723,8,177,10,177, + 12,177,3726,9,177,1,178,1,178,3,178,3730,8,178,1,178,1,178,1,178, + 3,178,3735,8,178,1,178,3,178,3738,8,178,1,179,1,179,1,179,1,179, + 1,179,1,180,1,180,1,180,1,180,5,180,3749,8,180,10,180,12,180,3752, + 9,180,1,181,1,181,1,181,1,181,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,183,1,183,1,183,5,183,3773, + 8,183,10,183,12,183,3776,9,183,1,183,1,183,1,183,1,183,1,183,5,183, + 3783,8,183,10,183,12,183,3786,9,183,3,183,3788,8,183,1,183,1,183, + 1,183,3,183,3793,8,183,3,183,3795,8,183,1,183,3,183,3798,8,183,1, + 183,3,183,3801,8,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1, + 184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,3,184,3819,8, + 184,1,185,1,185,1,185,1,185,1,185,1,185,1,185,3,185,3828,8,185,1, + 186,1,186,1,186,5,186,3833,8,186,10,186,12,186,3836,9,186,1,187, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187,3847,8,187, + 1,188,1,188,1,189,1,189,1,189,5,189,3854,8,189,10,189,12,189,3857, + 9,189,1,190,1,190,1,190,1,191,1,191,4,191,3864,8,191,11,191,12,191, + 3865,1,191,3,191,3869,8,191,1,192,1,192,3,192,3873,8,192,1,193,1, + 193,1,193,1,193,3,193,3879,8,193,1,194,1,194,1,195,1,195,1,196,3, + 196,3886,8,196,1,196,1,196,3,196,3890,8,196,1,196,1,196,3,196,3894, + 8,196,1,196,1,196,3,196,3898,8,196,1,196,1,196,3,196,3902,8,196, + 1,196,1,196,3,196,3906,8,196,1,196,1,196,3,196,3910,8,196,1,196, + 1,196,3,196,3914,8,196,1,196,1,196,3,196,3918,8,196,1,196,1,196, + 3,196,3922,8,196,1,196,3,196,3925,8,196,1,197,1,197,1,197,1,197, + 1,197,1,197,1,197,1,197,1,197,1,197,1,197,3,197,3938,8,197,1,198, + 1,198,1,199,1,199,3,199,3944,8,199,1,200,1,200,3,200,3948,8,200, + 1,201,1,201,1,202,1,202,1,203,1,203,1,203,9,1145,1215,1223,1240, + 1267,1276,1285,1294,1342,4,112,284,288,292,204,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, @@ -19094,1373 +19119,1368 @@ export class SparkSqlParser extends SQLParserBase { 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, - 390,392,394,396,398,0,64,2,0,78,78,229,229,2,0,34,34,247,247,2,0, - 123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58, - 108,108,122,122,173,173,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96, - 96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72,190,190,261,261, - 3,0,73,73,191,191,262,262,4,0,102,102,148,148,270,270,323,323,3, - 0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,3, - 0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291,291,303,303, - 2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,382,382, - 384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360, - 1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316, - 316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369, - 369,11,0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231, - 231,259,259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0, - 74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138, - 138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28, - 160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14, - 14,140,140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67, - 68,134,135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134, - 134,184,184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67, - 134,134,184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352, - 352,2,0,118,118,226,226,2,0,378,378,389,389,1,0,383,384,2,0,96,96, - 269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34, - 37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103, - 110,113,113,115,118,121,122,125,128,131,131,133,139,141,143,145, - 147,149,151,154,154,156,157,159,159,163,193,195,195,199,201,205, - 207,210,210,212,213,215,219,222,226,228,238,240,249,251,262,264, - 267,269,276,278,292,294,299,302,308,310,310,312,322,326,330,333, - 342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144,144,148, - 148,155,155,158,158,161,161,194,194,203,203,250,250,264,264,270, - 270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143,145,147, - 149,154,156,157,159,160,162,193,195,195,197,202,204,249,251,262, - 265,269,271,292,294,322,324,331,333,351,4586,0,403,1,0,0,0,2,408, - 1,0,0,0,4,1337,1,0,0,0,6,1341,1,0,0,0,8,1343,1,0,0,0,10,1345,1,0, - 0,0,12,1515,1,0,0,0,14,1517,1,0,0,0,16,1532,1,0,0,0,18,1538,1,0, - 0,0,20,1550,1,0,0,0,22,1563,1,0,0,0,24,1566,1,0,0,0,26,1570,1,0, - 0,0,28,1651,1,0,0,0,30,1653,1,0,0,0,32,1657,1,0,0,0,34,1678,1,0, - 0,0,36,1680,1,0,0,0,38,1682,1,0,0,0,40,1689,1,0,0,0,42,1691,1,0, - 0,0,44,1699,1,0,0,0,46,1708,1,0,0,0,48,1719,1,0,0,0,50,1738,1,0, - 0,0,52,1741,1,0,0,0,54,1744,1,0,0,0,56,1755,1,0,0,0,58,1771,1,0, - 0,0,60,1777,1,0,0,0,62,1779,1,0,0,0,64,1790,1,0,0,0,66,1797,1,0, - 0,0,68,1808,1,0,0,0,70,1825,1,0,0,0,72,1833,1,0,0,0,74,1835,1,0, - 0,0,76,1841,1,0,0,0,78,1900,1,0,0,0,80,1902,1,0,0,0,82,1904,1,0, - 0,0,84,1906,1,0,0,0,86,1908,1,0,0,0,88,1910,1,0,0,0,90,1912,1,0, - 0,0,92,1916,1,0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1934,1,0, - 0,0,100,1946,1,0,0,0,102,1998,1,0,0,0,104,2001,1,0,0,0,106,2036, - 1,0,0,0,108,2040,1,0,0,0,110,2049,1,0,0,0,112,2082,1,0,0,0,114,2128, - 1,0,0,0,116,2149,1,0,0,0,118,2181,1,0,0,0,120,2193,1,0,0,0,122,2196, - 1,0,0,0,124,2205,1,0,0,0,126,2219,1,0,0,0,128,2238,1,0,0,0,130,2258, - 1,0,0,0,132,2264,1,0,0,0,134,2266,1,0,0,0,136,2274,1,0,0,0,138,2278, - 1,0,0,0,140,2281,1,0,0,0,142,2284,1,0,0,0,144,2310,1,0,0,0,146,2312, - 1,0,0,0,148,2333,1,0,0,0,150,2349,1,0,0,0,152,2390,1,0,0,0,154,2395, - 1,0,0,0,156,2422,1,0,0,0,158,2426,1,0,0,0,160,2448,1,0,0,0,162,2450, - 1,0,0,0,164,2480,1,0,0,0,166,2482,1,0,0,0,168,2489,1,0,0,0,170,2502, - 1,0,0,0,172,2507,1,0,0,0,174,2509,1,0,0,0,176,2524,1,0,0,0,178,2548, - 1,0,0,0,180,2561,1,0,0,0,182,2563,1,0,0,0,184,2565,1,0,0,0,186,2569, - 1,0,0,0,188,2572,1,0,0,0,190,2576,1,0,0,0,192,2580,1,0,0,0,194,2583, - 1,0,0,0,196,2615,1,0,0,0,198,2628,1,0,0,0,200,2633,1,0,0,0,202,2652, - 1,0,0,0,204,2678,1,0,0,0,206,2684,1,0,0,0,208,2686,1,0,0,0,210,2722, - 1,0,0,0,212,2724,1,0,0,0,214,2728,1,0,0,0,216,2736,1,0,0,0,218,2747, - 1,0,0,0,220,2751,1,0,0,0,222,2762,1,0,0,0,224,2797,1,0,0,0,226,2799, - 1,0,0,0,228,2829,1,0,0,0,230,2850,1,0,0,0,232,2870,1,0,0,0,234,2876, - 1,0,0,0,236,2880,1,0,0,0,238,2882,1,0,0,0,240,2904,1,0,0,0,242,2955, - 1,0,0,0,244,2957,1,0,0,0,246,2965,1,0,0,0,248,2973,1,0,0,0,250,2981, - 1,0,0,0,252,2989,1,0,0,0,254,2996,1,0,0,0,256,3002,1,0,0,0,258,3013, - 1,0,0,0,260,3021,1,0,0,0,262,3034,1,0,0,0,264,3049,1,0,0,0,266,3053, - 1,0,0,0,268,3055,1,0,0,0,270,3057,1,0,0,0,272,3063,1,0,0,0,274,3065, - 1,0,0,0,276,3085,1,0,0,0,278,3180,1,0,0,0,280,3186,1,0,0,0,282,3212, - 1,0,0,0,284,3463,1,0,0,0,286,3485,1,0,0,0,288,3502,1,0,0,0,290,3504, - 1,0,0,0,292,3506,1,0,0,0,294,3508,1,0,0,0,296,3510,1,0,0,0,298,3512, - 1,0,0,0,300,3517,1,0,0,0,302,3524,1,0,0,0,304,3528,1,0,0,0,306,3533, - 1,0,0,0,308,3539,1,0,0,0,310,3546,1,0,0,0,312,3548,1,0,0,0,314,3553, - 1,0,0,0,316,3585,1,0,0,0,318,3633,1,0,0,0,320,3635,1,0,0,0,322,3643, - 1,0,0,0,324,3651,1,0,0,0,326,3659,1,0,0,0,328,3672,1,0,0,0,330,3674, - 1,0,0,0,332,3677,1,0,0,0,334,3680,1,0,0,0,336,3688,1,0,0,0,338,3697, - 1,0,0,0,340,3705,1,0,0,0,342,3718,1,0,0,0,344,3720,1,0,0,0,346,3727, - 1,0,0,0,348,3735,1,0,0,0,350,3747,1,0,0,0,352,3752,1,0,0,0,354,3761, - 1,0,0,0,356,3765,1,0,0,0,358,3815,1,0,0,0,360,3833,1,0,0,0,362,3842, - 1,0,0,0,364,3844,1,0,0,0,366,3861,1,0,0,0,368,3863,1,0,0,0,370,3865, - 1,0,0,0,372,3873,1,0,0,0,374,3883,1,0,0,0,376,3887,1,0,0,0,378,3893, - 1,0,0,0,380,3895,1,0,0,0,382,3897,1,0,0,0,384,3939,1,0,0,0,386,3952, - 1,0,0,0,388,3954,1,0,0,0,390,3958,1,0,0,0,392,3962,1,0,0,0,394,3964, - 1,0,0,0,396,3966,1,0,0,0,398,3968,1,0,0,0,400,402,3,2,1,0,401,400, - 1,0,0,0,402,405,1,0,0,0,403,401,1,0,0,0,403,404,1,0,0,0,404,406, - 1,0,0,0,405,403,1,0,0,0,406,407,5,0,0,1,407,1,1,0,0,0,408,410,3, - 4,2,0,409,411,5,1,0,0,410,409,1,0,0,0,410,411,1,0,0,0,411,3,1,0, - 0,0,412,1338,3,26,13,0,413,415,3,44,22,0,414,413,1,0,0,0,414,415, - 1,0,0,0,415,416,1,0,0,0,416,1338,3,78,39,0,417,419,5,330,0,0,418, - 420,3,36,18,0,419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 1338,3,80,40,0,422,423,5,269,0,0,423,426,5,37,0,0,424,427,3,376, - 188,0,425,427,3,388,194,0,426,424,1,0,0,0,426,425,1,0,0,0,427,1338, - 1,0,0,0,428,429,5,59,0,0,429,431,3,36,18,0,430,432,3,190,95,0,431, - 430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,441,3,82,41,0,434, - 440,3,24,12,0,435,440,3,22,11,0,436,437,5,346,0,0,437,438,7,0,0, - 0,438,440,3,54,27,0,439,434,1,0,0,0,439,435,1,0,0,0,439,436,1,0, - 0,0,440,443,1,0,0,0,441,439,1,0,0,0,441,442,1,0,0,0,442,1338,1,0, - 0,0,443,441,1,0,0,0,444,445,5,11,0,0,445,446,3,36,18,0,446,447,3, - 80,40,0,447,448,5,269,0,0,448,449,7,0,0,0,449,450,3,54,27,0,450, - 1338,1,0,0,0,451,452,5,11,0,0,452,453,3,36,18,0,453,454,3,80,40, - 0,454,455,5,269,0,0,455,456,3,22,11,0,456,1338,1,0,0,0,457,458,5, - 96,0,0,458,460,3,36,18,0,459,461,3,192,96,0,460,459,1,0,0,0,460, - 461,1,0,0,0,461,462,1,0,0,0,462,464,3,80,40,0,463,465,7,1,0,0,464, - 463,1,0,0,0,464,465,1,0,0,0,465,1338,1,0,0,0,466,467,5,273,0,0,467, - 470,3,38,19,0,468,469,7,2,0,0,469,471,3,246,123,0,470,468,1,0,0, - 0,470,471,1,0,0,0,471,476,1,0,0,0,472,474,5,163,0,0,473,472,1,0, - 0,0,473,474,1,0,0,0,474,475,1,0,0,0,475,477,3,388,194,0,476,473, - 1,0,0,0,476,477,1,0,0,0,477,1338,1,0,0,0,478,483,3,14,7,0,479,480, - 5,2,0,0,480,481,3,338,169,0,481,482,5,3,0,0,482,484,1,0,0,0,483, - 479,1,0,0,0,483,484,1,0,0,0,484,486,1,0,0,0,485,487,3,48,24,0,486, - 485,1,0,0,0,486,487,1,0,0,0,487,488,1,0,0,0,488,493,3,50,25,0,489, - 491,5,20,0,0,490,489,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492, - 494,3,26,13,0,493,490,1,0,0,0,493,494,1,0,0,0,494,1338,1,0,0,0,495, - 496,5,59,0,0,496,498,5,293,0,0,497,499,3,190,95,0,498,497,1,0,0, - 0,498,499,1,0,0,0,499,500,1,0,0,0,500,501,3,84,42,0,501,502,5,163, - 0,0,502,512,3,86,43,0,503,511,3,48,24,0,504,511,3,242,121,0,505, - 511,3,70,35,0,506,511,3,22,11,0,507,508,5,297,0,0,508,511,3,54,27, - 0,509,511,3,52,26,0,510,503,1,0,0,0,510,504,1,0,0,0,510,505,1,0, - 0,0,510,506,1,0,0,0,510,507,1,0,0,0,510,509,1,0,0,0,511,514,1,0, - 0,0,512,510,1,0,0,0,512,513,1,0,0,0,513,1338,1,0,0,0,514,512,1,0, - 0,0,515,520,3,16,8,0,516,517,5,2,0,0,517,518,3,338,169,0,518,519, - 5,3,0,0,519,521,1,0,0,0,520,516,1,0,0,0,520,521,1,0,0,0,521,523, - 1,0,0,0,522,524,3,48,24,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525, - 1,0,0,0,525,530,3,50,25,0,526,528,5,20,0,0,527,526,1,0,0,0,527,528, - 1,0,0,0,528,529,1,0,0,0,529,531,3,26,13,0,530,527,1,0,0,0,530,531, - 1,0,0,0,531,1338,1,0,0,0,532,533,5,13,0,0,533,534,5,293,0,0,534, - 536,3,86,43,0,535,537,3,32,16,0,536,535,1,0,0,0,536,537,1,0,0,0, - 537,538,1,0,0,0,538,539,5,55,0,0,539,547,5,282,0,0,540,548,5,196, - 0,0,541,542,5,119,0,0,542,543,5,50,0,0,543,548,3,94,47,0,544,545, - 5,119,0,0,545,546,5,10,0,0,546,548,5,50,0,0,547,540,1,0,0,0,547, - 541,1,0,0,0,547,544,1,0,0,0,547,548,1,0,0,0,548,1338,1,0,0,0,549, - 550,5,13,0,0,550,553,5,294,0,0,551,552,7,2,0,0,552,554,3,80,40,0, - 553,551,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,5,55,0,0, - 556,558,5,282,0,0,557,559,5,196,0,0,558,557,1,0,0,0,558,559,1,0, - 0,0,559,1338,1,0,0,0,560,561,5,11,0,0,561,562,5,293,0,0,562,563, - 3,86,43,0,563,564,5,8,0,0,564,565,5,49,0,0,565,566,3,322,161,0,566, - 1338,1,0,0,0,567,568,5,11,0,0,568,569,5,293,0,0,569,570,3,86,43, - 0,570,571,5,8,0,0,571,572,5,50,0,0,572,573,5,2,0,0,573,574,3,320, - 160,0,574,575,5,3,0,0,575,1338,1,0,0,0,576,577,5,11,0,0,577,578, - 5,293,0,0,578,579,3,86,43,0,579,580,5,241,0,0,580,581,5,49,0,0,581, - 582,3,92,46,0,582,583,5,309,0,0,583,584,3,96,48,0,584,1338,1,0,0, - 0,585,586,5,11,0,0,586,587,5,293,0,0,587,588,3,86,43,0,588,589,5, - 96,0,0,589,591,5,49,0,0,590,592,3,192,96,0,591,590,1,0,0,0,591,592, - 1,0,0,0,592,593,1,0,0,0,593,594,3,92,46,0,594,1338,1,0,0,0,595,596, - 5,11,0,0,596,597,5,293,0,0,597,598,3,86,43,0,598,599,5,96,0,0,599, - 601,5,50,0,0,600,602,3,192,96,0,601,600,1,0,0,0,601,602,1,0,0,0, - 602,603,1,0,0,0,603,604,5,2,0,0,604,605,3,94,47,0,605,606,5,3,0, - 0,606,1338,1,0,0,0,607,612,5,11,0,0,608,609,5,293,0,0,609,613,3, - 86,43,0,610,611,5,338,0,0,611,613,3,90,45,0,612,608,1,0,0,0,612, - 610,1,0,0,0,613,614,1,0,0,0,614,615,5,241,0,0,615,616,5,309,0,0, - 616,617,3,246,123,0,617,1338,1,0,0,0,618,623,5,11,0,0,619,620,5, - 293,0,0,620,624,3,86,43,0,621,622,5,338,0,0,622,624,3,90,45,0,623, - 619,1,0,0,0,623,621,1,0,0,0,624,625,1,0,0,0,625,626,5,269,0,0,626, - 627,5,297,0,0,627,628,3,54,27,0,628,1338,1,0,0,0,629,634,5,11,0, - 0,630,631,5,293,0,0,631,635,3,86,43,0,632,633,5,338,0,0,633,635, - 3,90,45,0,634,630,1,0,0,0,634,632,1,0,0,0,635,636,1,0,0,0,636,637, - 5,328,0,0,637,639,5,297,0,0,638,640,3,192,96,0,639,638,1,0,0,0,639, - 640,1,0,0,0,640,641,1,0,0,0,641,642,3,54,27,0,642,1338,1,0,0,0,643, - 644,5,11,0,0,644,645,5,293,0,0,645,646,3,86,43,0,646,648,7,3,0,0, - 647,649,5,49,0,0,648,647,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0, - 650,652,3,92,46,0,651,653,3,386,193,0,652,651,1,0,0,0,652,653,1, - 0,0,0,653,1338,1,0,0,0,654,655,5,11,0,0,655,656,5,293,0,0,656,658, - 3,86,43,0,657,659,3,32,16,0,658,657,1,0,0,0,658,659,1,0,0,0,659, - 660,1,0,0,0,660,662,5,39,0,0,661,663,5,49,0,0,662,661,1,0,0,0,662, - 663,1,0,0,0,663,664,1,0,0,0,664,665,3,92,46,0,665,667,3,336,168, - 0,666,668,3,314,157,0,667,666,1,0,0,0,667,668,1,0,0,0,668,1338,1, - 0,0,0,669,670,5,11,0,0,670,671,5,293,0,0,671,673,3,86,43,0,672,674, - 3,32,16,0,673,672,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676, - 5,244,0,0,676,677,5,50,0,0,677,678,5,2,0,0,678,679,3,324,162,0,679, - 680,5,3,0,0,680,1338,1,0,0,0,681,682,5,11,0,0,682,683,5,293,0,0, - 683,685,3,86,43,0,684,686,3,32,16,0,685,684,1,0,0,0,685,686,1,0, - 0,0,686,687,1,0,0,0,687,688,5,269,0,0,688,689,5,266,0,0,689,693, - 3,388,194,0,690,691,5,346,0,0,691,692,5,267,0,0,692,694,3,54,27, - 0,693,690,1,0,0,0,693,694,1,0,0,0,694,1338,1,0,0,0,695,696,5,11, - 0,0,696,697,5,293,0,0,697,699,3,86,43,0,698,700,3,32,16,0,699,698, - 1,0,0,0,699,700,1,0,0,0,700,701,1,0,0,0,701,702,5,269,0,0,702,703, - 5,267,0,0,703,704,3,54,27,0,704,1338,1,0,0,0,705,710,5,11,0,0,706, - 707,5,293,0,0,707,711,3,86,43,0,708,709,5,338,0,0,709,711,3,90,45, - 0,710,706,1,0,0,0,710,708,1,0,0,0,711,712,1,0,0,0,712,714,5,8,0, - 0,713,715,3,190,95,0,714,713,1,0,0,0,714,715,1,0,0,0,715,717,1,0, - 0,0,716,718,3,30,15,0,717,716,1,0,0,0,718,719,1,0,0,0,719,717,1, - 0,0,0,719,720,1,0,0,0,720,1338,1,0,0,0,721,722,5,11,0,0,722,723, - 5,293,0,0,723,724,3,86,43,0,724,725,3,32,16,0,725,726,5,241,0,0, - 726,727,5,309,0,0,727,728,3,32,16,0,728,1338,1,0,0,0,729,734,5,11, - 0,0,730,731,5,293,0,0,731,735,3,86,43,0,732,733,5,338,0,0,733,735, - 3,90,45,0,734,730,1,0,0,0,734,732,1,0,0,0,735,736,1,0,0,0,736,738, - 5,96,0,0,737,739,3,192,96,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 740,1,0,0,0,740,745,3,32,16,0,741,742,5,4,0,0,742,744,3,32,16,0, - 743,741,1,0,0,0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0, - 746,749,1,0,0,0,747,745,1,0,0,0,748,750,5,230,0,0,749,748,1,0,0, - 0,749,750,1,0,0,0,750,1338,1,0,0,0,751,752,5,11,0,0,752,753,5,293, - 0,0,753,755,3,86,43,0,754,756,3,32,16,0,755,754,1,0,0,0,755,756, - 1,0,0,0,756,757,1,0,0,0,757,758,5,269,0,0,758,759,3,22,11,0,759, - 1338,1,0,0,0,760,761,5,11,0,0,761,762,5,293,0,0,762,763,3,86,43, - 0,763,764,5,237,0,0,764,765,5,219,0,0,765,1338,1,0,0,0,766,767,5, - 11,0,0,767,768,5,176,0,0,768,769,5,338,0,0,769,770,3,90,45,0,770, - 771,7,4,0,0,771,772,5,248,0,0,772,1338,1,0,0,0,773,774,5,11,0,0, - 774,775,5,176,0,0,775,776,5,338,0,0,776,777,3,90,45,0,777,778,5, - 269,0,0,778,779,5,297,0,0,779,780,3,54,27,0,780,1338,1,0,0,0,781, - 782,5,96,0,0,782,784,5,293,0,0,783,785,3,192,96,0,784,783,1,0,0, - 0,784,785,1,0,0,0,785,786,1,0,0,0,786,788,3,86,43,0,787,789,5,230, - 0,0,788,787,1,0,0,0,788,789,1,0,0,0,789,1338,1,0,0,0,790,791,5,96, - 0,0,791,793,5,338,0,0,792,794,3,192,96,0,793,792,1,0,0,0,793,794, - 1,0,0,0,794,795,1,0,0,0,795,1338,3,90,45,0,796,797,5,96,0,0,797, - 798,5,176,0,0,798,800,5,338,0,0,799,801,3,192,96,0,800,799,1,0,0, - 0,800,801,1,0,0,0,801,802,1,0,0,0,802,1338,3,90,45,0,803,806,5,59, - 0,0,804,805,5,208,0,0,805,807,5,244,0,0,806,804,1,0,0,0,806,807, - 1,0,0,0,807,812,1,0,0,0,808,810,5,128,0,0,809,808,1,0,0,0,809,810, - 1,0,0,0,810,811,1,0,0,0,811,813,5,298,0,0,812,809,1,0,0,0,812,813, - 1,0,0,0,813,814,1,0,0,0,814,816,5,338,0,0,815,817,3,190,95,0,816, - 815,1,0,0,0,816,817,1,0,0,0,817,818,1,0,0,0,818,820,3,88,44,0,819, - 821,3,220,110,0,820,819,1,0,0,0,820,821,1,0,0,0,821,830,1,0,0,0, - 822,829,3,24,12,0,823,824,5,218,0,0,824,825,5,203,0,0,825,829,3, - 212,106,0,826,827,5,297,0,0,827,829,3,54,27,0,828,822,1,0,0,0,828, - 823,1,0,0,0,828,826,1,0,0,0,829,832,1,0,0,0,830,828,1,0,0,0,830, - 831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0,833,834,5,20,0,0,834, - 835,3,26,13,0,835,1338,1,0,0,0,836,839,5,59,0,0,837,838,5,208,0, - 0,838,840,5,244,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0, - 0,0,841,843,5,128,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1, - 0,0,0,844,845,5,298,0,0,845,846,5,338,0,0,846,851,3,88,44,0,847, - 848,5,2,0,0,848,849,3,334,167,0,849,850,5,3,0,0,850,852,1,0,0,0, - 851,847,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853,856,3,48,24, - 0,854,855,5,207,0,0,855,857,3,54,27,0,856,854,1,0,0,0,856,857,1, - 0,0,0,857,1338,1,0,0,0,858,859,5,11,0,0,859,860,5,338,0,0,860,862, - 3,90,45,0,861,863,5,20,0,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864, - 1,0,0,0,864,865,3,26,13,0,865,1338,1,0,0,0,866,869,5,59,0,0,867, - 868,5,208,0,0,868,870,5,244,0,0,869,867,1,0,0,0,869,870,1,0,0,0, - 870,872,1,0,0,0,871,873,5,298,0,0,872,871,1,0,0,0,872,873,1,0,0, - 0,873,874,1,0,0,0,874,876,5,125,0,0,875,877,3,190,95,0,876,875,1, - 0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,368,184,0,879,880, - 5,20,0,0,880,890,3,388,194,0,881,882,5,332,0,0,882,887,3,76,38,0, - 883,884,5,4,0,0,884,886,3,76,38,0,885,883,1,0,0,0,886,889,1,0,0, - 0,887,885,1,0,0,0,887,888,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0, - 0,890,881,1,0,0,0,890,891,1,0,0,0,891,1338,1,0,0,0,892,893,5,59, - 0,0,893,894,5,176,0,0,894,896,5,338,0,0,895,897,3,190,95,0,896,895, - 1,0,0,0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,3,88,44,0,899,901, - 3,48,24,0,900,899,1,0,0,0,900,901,1,0,0,0,901,917,1,0,0,0,902,903, - 5,207,0,0,903,916,3,54,27,0,904,905,5,218,0,0,905,906,5,31,0,0,906, - 916,3,260,130,0,907,916,3,20,10,0,908,916,3,18,9,0,909,916,3,242, - 121,0,910,916,3,70,35,0,911,916,3,22,11,0,912,916,3,24,12,0,913, - 914,5,297,0,0,914,916,3,54,27,0,915,902,1,0,0,0,915,904,1,0,0,0, - 915,907,1,0,0,0,915,908,1,0,0,0,915,909,1,0,0,0,915,910,1,0,0,0, - 915,911,1,0,0,0,915,912,1,0,0,0,915,913,1,0,0,0,916,919,1,0,0,0, - 917,915,1,0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,917,1,0,0,0, - 920,921,5,20,0,0,921,922,3,26,13,0,922,1338,1,0,0,0,923,925,5,96, - 0,0,924,926,5,298,0,0,925,924,1,0,0,0,925,926,1,0,0,0,926,927,1, - 0,0,0,927,929,5,125,0,0,928,930,3,192,96,0,929,928,1,0,0,0,929,930, - 1,0,0,0,930,931,1,0,0,0,931,1338,3,366,183,0,932,935,5,81,0,0,933, - 934,5,208,0,0,934,936,5,244,0,0,935,933,1,0,0,0,935,936,1,0,0,0, - 936,938,1,0,0,0,937,939,5,336,0,0,938,937,1,0,0,0,938,939,1,0,0, - 0,939,940,1,0,0,0,940,942,3,366,183,0,941,943,3,318,159,0,942,941, - 1,0,0,0,942,943,1,0,0,0,943,945,1,0,0,0,944,946,3,332,166,0,945, - 944,1,0,0,0,945,946,1,0,0,0,946,1338,1,0,0,0,947,948,5,96,0,0,948, - 949,5,298,0,0,949,951,5,336,0,0,950,952,3,192,96,0,951,950,1,0,0, - 0,951,952,1,0,0,0,952,956,1,0,0,0,953,957,3,86,43,0,954,957,3,90, - 45,0,955,957,3,366,183,0,956,953,1,0,0,0,956,954,1,0,0,0,956,955, - 1,0,0,0,957,1338,1,0,0,0,958,960,5,106,0,0,959,961,7,5,0,0,960,959, - 1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,1338,3,4,2,0,963,964, - 5,273,0,0,964,967,5,294,0,0,965,966,7,2,0,0,966,968,3,80,40,0,967, - 965,1,0,0,0,967,968,1,0,0,0,968,973,1,0,0,0,969,971,5,163,0,0,970, - 969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,388,194,0, - 973,970,1,0,0,0,973,974,1,0,0,0,974,1338,1,0,0,0,975,976,5,273,0, - 0,976,977,5,293,0,0,977,980,5,108,0,0,978,979,7,2,0,0,979,981,3, - 80,40,0,980,978,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983, - 5,163,0,0,983,985,3,388,194,0,984,986,3,32,16,0,985,984,1,0,0,0, - 985,986,1,0,0,0,986,1338,1,0,0,0,987,988,5,273,0,0,988,989,5,297, - 0,0,989,994,3,86,43,0,990,991,5,2,0,0,991,992,3,58,29,0,992,993, - 5,3,0,0,993,995,1,0,0,0,994,990,1,0,0,0,994,995,1,0,0,0,995,1338, - 1,0,0,0,996,997,5,273,0,0,997,998,5,50,0,0,998,999,7,2,0,0,999,1002, - 3,86,43,0,1000,1001,7,2,0,0,1001,1003,3,80,40,0,1002,1000,1,0,0, - 0,1002,1003,1,0,0,0,1003,1338,1,0,0,0,1004,1005,5,273,0,0,1005,1008, - 5,339,0,0,1006,1007,7,2,0,0,1007,1009,3,80,40,0,1008,1006,1,0,0, - 0,1008,1009,1,0,0,0,1009,1014,1,0,0,0,1010,1012,5,163,0,0,1011,1010, - 1,0,0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1015,3,388,194, - 0,1014,1011,1,0,0,0,1014,1015,1,0,0,0,1015,1338,1,0,0,0,1016,1017, - 5,273,0,0,1017,1018,5,219,0,0,1018,1020,3,86,43,0,1019,1021,3,32, - 16,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1338,1,0,0,0,1022, - 1024,5,273,0,0,1023,1025,3,148,74,0,1024,1023,1,0,0,0,1024,1025, - 1,0,0,0,1025,1026,1,0,0,0,1026,1029,5,126,0,0,1027,1028,7,2,0,0, - 1028,1030,3,80,40,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1038, - 1,0,0,0,1031,1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0, - 1033,1036,1,0,0,0,1034,1037,3,246,123,0,1035,1037,3,388,194,0,1036, - 1034,1,0,0,0,1036,1035,1,0,0,0,1037,1039,1,0,0,0,1038,1032,1,0,0, - 0,1038,1039,1,0,0,0,1039,1338,1,0,0,0,1040,1041,5,273,0,0,1041,1042, - 5,59,0,0,1042,1043,5,293,0,0,1043,1046,3,86,43,0,1044,1045,5,20, - 0,0,1045,1047,5,266,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, - 1338,1,0,0,0,1048,1049,5,273,0,0,1049,1050,5,62,0,0,1050,1338,3, - 36,18,0,1051,1052,5,273,0,0,1052,1057,5,38,0,0,1053,1055,5,163,0, - 0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056,1,0,0,0,1056,1058, - 3,388,194,0,1057,1054,1,0,0,0,1057,1058,1,0,0,0,1058,1338,1,0,0, - 0,1059,1060,5,273,0,0,1060,1061,5,176,0,0,1061,1064,5,339,0,0,1062, - 1063,7,2,0,0,1063,1065,3,80,40,0,1064,1062,1,0,0,0,1064,1065,1,0, - 0,0,1065,1070,1,0,0,0,1066,1068,5,163,0,0,1067,1066,1,0,0,0,1067, - 1068,1,0,0,0,1068,1069,1,0,0,0,1069,1071,3,388,194,0,1070,1067,1, - 0,0,0,1070,1071,1,0,0,0,1071,1338,1,0,0,0,1072,1073,5,273,0,0,1073, - 1074,5,59,0,0,1074,1075,5,176,0,0,1075,1076,5,338,0,0,1076,1079, - 3,90,45,0,1077,1078,5,20,0,0,1078,1080,5,266,0,0,1079,1077,1,0,0, - 0,1079,1080,1,0,0,0,1080,1338,1,0,0,0,1081,1082,7,6,0,0,1082,1084, - 5,125,0,0,1083,1085,5,108,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0, - 0,1085,1086,1,0,0,0,1086,1338,3,40,20,0,1087,1088,7,6,0,0,1088,1090, - 5,72,0,0,1089,1091,5,108,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0, - 1091,1092,1,0,0,0,1092,1338,3,80,40,0,1093,1095,7,6,0,0,1094,1096, - 5,293,0,0,1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, - 1097,1099,7,7,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100, - 1,0,0,0,1100,1102,3,86,43,0,1101,1103,3,32,16,0,1102,1101,1,0,0, - 0,1102,1103,1,0,0,0,1103,1105,1,0,0,0,1104,1106,3,42,21,0,1105,1104, - 1,0,0,0,1105,1106,1,0,0,0,1106,1338,1,0,0,0,1107,1109,7,6,0,0,1108, - 1110,5,232,0,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0, - 0,0,1111,1338,3,26,13,0,1112,1113,5,51,0,0,1113,1114,5,203,0,0,1114, - 1115,3,36,18,0,1115,1116,3,80,40,0,1116,1117,5,153,0,0,1117,1118, - 3,390,195,0,1118,1338,1,0,0,0,1119,1120,5,51,0,0,1120,1121,5,203, - 0,0,1121,1122,5,293,0,0,1122,1123,3,86,43,0,1123,1124,5,153,0,0, - 1124,1125,3,390,195,0,1125,1338,1,0,0,0,1126,1127,5,240,0,0,1127, - 1128,5,293,0,0,1128,1338,3,86,43,0,1129,1130,5,240,0,0,1130,1131, - 5,125,0,0,1131,1338,3,366,183,0,1132,1140,5,240,0,0,1133,1141,3, - 388,194,0,1134,1136,9,0,0,0,1135,1134,1,0,0,0,1136,1139,1,0,0,0, - 1137,1138,1,0,0,0,1137,1135,1,0,0,0,1138,1141,1,0,0,0,1139,1137, - 1,0,0,0,1140,1133,1,0,0,0,1140,1137,1,0,0,0,1141,1338,1,0,0,0,1142, - 1143,5,240,0,0,1143,1144,5,176,0,0,1144,1145,5,338,0,0,1145,1338, - 3,90,45,0,1146,1148,5,33,0,0,1147,1149,5,159,0,0,1148,1147,1,0,0, - 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,293,0,0,1151,1154, - 3,86,43,0,1152,1153,5,207,0,0,1153,1155,3,54,27,0,1154,1152,1,0, - 0,0,1154,1155,1,0,0,0,1155,1160,1,0,0,0,1156,1158,5,20,0,0,1157, - 1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1161,3,26, - 13,0,1160,1157,1,0,0,0,1160,1161,1,0,0,0,1161,1338,1,0,0,0,1162, - 1163,5,322,0,0,1163,1165,5,293,0,0,1164,1166,3,192,96,0,1165,1164, - 1,0,0,0,1165,1166,1,0,0,0,1166,1167,1,0,0,0,1167,1338,3,86,43,0, - 1168,1169,5,43,0,0,1169,1338,5,33,0,0,1170,1171,5,168,0,0,1171,1173, - 5,70,0,0,1172,1174,5,169,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0, - 1174,1175,1,0,0,0,1175,1176,5,145,0,0,1176,1178,3,388,194,0,1177, - 1179,5,216,0,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1180,1,0, - 0,0,1180,1181,5,152,0,0,1181,1182,5,293,0,0,1182,1184,3,86,43,0, - 1183,1185,3,32,16,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1338, - 1,0,0,0,1186,1187,5,317,0,0,1187,1188,5,293,0,0,1188,1190,3,86,43, - 0,1189,1191,3,32,16,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1338, - 1,0,0,0,1192,1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1196,5,242,0,0,1196,1197,5,293,0,0,1197,1200, - 3,86,43,0,1198,1199,7,8,0,0,1199,1201,5,219,0,0,1200,1198,1,0,0, - 0,1200,1201,1,0,0,0,1201,1338,1,0,0,0,1202,1203,7,9,0,0,1203,1207, - 3,376,188,0,1204,1206,9,0,0,0,1205,1204,1,0,0,0,1206,1209,1,0,0, - 0,1207,1208,1,0,0,0,1207,1205,1,0,0,0,1208,1338,1,0,0,0,1209,1207, - 1,0,0,0,1210,1211,5,269,0,0,1211,1215,5,253,0,0,1212,1214,9,0,0, - 0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215,1213, - 1,0,0,0,1216,1338,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269,0,0, - 1219,1220,5,301,0,0,1220,1221,5,350,0,0,1221,1338,3,298,149,0,1222, - 1223,5,269,0,0,1223,1224,5,301,0,0,1224,1225,5,350,0,0,1225,1338, - 3,6,3,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228,1232,5,350, - 0,0,1229,1231,9,0,0,0,1230,1229,1,0,0,0,1231,1234,1,0,0,0,1232,1233, - 1,0,0,0,1232,1230,1,0,0,0,1233,1338,1,0,0,0,1234,1232,1,0,0,0,1235, - 1236,5,269,0,0,1236,1237,7,10,0,0,1237,1338,3,134,67,0,1238,1239, - 5,269,0,0,1239,1240,7,10,0,0,1240,1241,5,2,0,0,1241,1242,3,244,122, - 0,1242,1243,5,3,0,0,1243,1244,5,352,0,0,1244,1245,5,2,0,0,1245,1246, - 3,26,13,0,1246,1247,5,3,0,0,1247,1338,1,0,0,0,1248,1249,5,269,0, - 0,1249,1250,3,8,4,0,1250,1251,5,352,0,0,1251,1252,3,10,5,0,1252, - 1338,1,0,0,0,1253,1254,5,269,0,0,1254,1262,3,8,4,0,1255,1259,5,352, - 0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259,1260, - 1,0,0,0,1259,1257,1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1262, - 1255,1,0,0,0,1262,1263,1,0,0,0,1263,1338,1,0,0,0,1264,1268,5,269, - 0,0,1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, - 1,0,0,0,1268,1266,1,0,0,0,1269,1271,1,0,0,0,1270,1268,1,0,0,0,1271, - 1272,5,352,0,0,1272,1338,3,10,5,0,1273,1277,5,269,0,0,1274,1276, - 9,0,0,0,1275,1274,1,0,0,0,1276,1279,1,0,0,0,1277,1278,1,0,0,0,1277, - 1275,1,0,0,0,1278,1338,1,0,0,0,1279,1277,1,0,0,0,1280,1281,5,245, - 0,0,1281,1338,3,8,4,0,1282,1286,5,245,0,0,1283,1285,9,0,0,0,1284, - 1283,1,0,0,0,1285,1288,1,0,0,0,1286,1287,1,0,0,0,1286,1284,1,0,0, - 0,1287,1338,1,0,0,0,1288,1286,1,0,0,0,1289,1290,5,59,0,0,1290,1292, - 5,142,0,0,1291,1293,3,190,95,0,1292,1291,1,0,0,0,1292,1293,1,0,0, - 0,1293,1294,1,0,0,0,1294,1295,3,376,188,0,1295,1297,5,203,0,0,1296, - 1298,5,293,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, - 0,0,1299,1302,3,86,43,0,1300,1301,5,332,0,0,1301,1303,3,376,188, - 0,1302,1300,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, - 5,2,0,0,1305,1306,3,248,124,0,1306,1309,5,3,0,0,1307,1308,5,207, - 0,0,1308,1310,3,54,27,0,1309,1307,1,0,0,0,1309,1310,1,0,0,0,1310, - 1338,1,0,0,0,1311,1312,5,96,0,0,1312,1314,5,142,0,0,1313,1315,3, - 192,96,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316, - 1317,3,376,188,0,1317,1319,5,203,0,0,1318,1320,5,293,0,0,1319,1318, - 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,86,43,0, - 1322,1338,1,0,0,0,1323,1324,5,205,0,0,1324,1326,3,86,43,0,1325,1327, - 3,138,69,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0, - 1328,1329,3,354,177,0,1329,1338,1,0,0,0,1330,1334,3,12,6,0,1331, - 1333,9,0,0,0,1332,1331,1,0,0,0,1333,1336,1,0,0,0,1334,1335,1,0,0, - 0,1334,1332,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0,1337,412, - 1,0,0,0,1337,414,1,0,0,0,1337,417,1,0,0,0,1337,422,1,0,0,0,1337, - 428,1,0,0,0,1337,444,1,0,0,0,1337,451,1,0,0,0,1337,457,1,0,0,0,1337, - 466,1,0,0,0,1337,478,1,0,0,0,1337,495,1,0,0,0,1337,515,1,0,0,0,1337, - 532,1,0,0,0,1337,549,1,0,0,0,1337,560,1,0,0,0,1337,567,1,0,0,0,1337, - 576,1,0,0,0,1337,585,1,0,0,0,1337,595,1,0,0,0,1337,607,1,0,0,0,1337, - 618,1,0,0,0,1337,629,1,0,0,0,1337,643,1,0,0,0,1337,654,1,0,0,0,1337, - 669,1,0,0,0,1337,681,1,0,0,0,1337,695,1,0,0,0,1337,705,1,0,0,0,1337, - 721,1,0,0,0,1337,729,1,0,0,0,1337,751,1,0,0,0,1337,760,1,0,0,0,1337, - 766,1,0,0,0,1337,773,1,0,0,0,1337,781,1,0,0,0,1337,790,1,0,0,0,1337, - 796,1,0,0,0,1337,803,1,0,0,0,1337,836,1,0,0,0,1337,858,1,0,0,0,1337, - 866,1,0,0,0,1337,892,1,0,0,0,1337,923,1,0,0,0,1337,932,1,0,0,0,1337, - 947,1,0,0,0,1337,958,1,0,0,0,1337,963,1,0,0,0,1337,975,1,0,0,0,1337, - 987,1,0,0,0,1337,996,1,0,0,0,1337,1004,1,0,0,0,1337,1016,1,0,0,0, - 1337,1022,1,0,0,0,1337,1040,1,0,0,0,1337,1048,1,0,0,0,1337,1051, - 1,0,0,0,1337,1059,1,0,0,0,1337,1072,1,0,0,0,1337,1081,1,0,0,0,1337, - 1087,1,0,0,0,1337,1093,1,0,0,0,1337,1107,1,0,0,0,1337,1112,1,0,0, - 0,1337,1119,1,0,0,0,1337,1126,1,0,0,0,1337,1129,1,0,0,0,1337,1132, - 1,0,0,0,1337,1142,1,0,0,0,1337,1146,1,0,0,0,1337,1162,1,0,0,0,1337, - 1168,1,0,0,0,1337,1170,1,0,0,0,1337,1186,1,0,0,0,1337,1193,1,0,0, - 0,1337,1202,1,0,0,0,1337,1210,1,0,0,0,1337,1218,1,0,0,0,1337,1222, - 1,0,0,0,1337,1226,1,0,0,0,1337,1235,1,0,0,0,1337,1238,1,0,0,0,1337, - 1248,1,0,0,0,1337,1253,1,0,0,0,1337,1264,1,0,0,0,1337,1273,1,0,0, - 0,1337,1280,1,0,0,0,1337,1282,1,0,0,0,1337,1289,1,0,0,0,1337,1311, - 1,0,0,0,1337,1323,1,0,0,0,1337,1330,1,0,0,0,1338,5,1,0,0,0,1339, - 1342,3,388,194,0,1340,1342,5,169,0,0,1341,1339,1,0,0,0,1341,1340, - 1,0,0,0,1342,7,1,0,0,0,1343,1344,3,380,190,0,1344,9,1,0,0,0,1345, - 1346,3,382,191,0,1346,11,1,0,0,0,1347,1348,5,59,0,0,1348,1516,5, - 253,0,0,1349,1350,5,96,0,0,1350,1516,5,253,0,0,1351,1353,5,129,0, - 0,1352,1354,5,253,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1516, - 1,0,0,0,1355,1357,5,249,0,0,1356,1358,5,253,0,0,1357,1356,1,0,0, - 0,1357,1358,1,0,0,0,1358,1516,1,0,0,0,1359,1360,5,273,0,0,1360,1516, - 5,129,0,0,1361,1362,5,273,0,0,1362,1364,5,253,0,0,1363,1365,5,129, - 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1516,1,0,0,0,1366,1367, - 5,273,0,0,1367,1516,5,228,0,0,1368,1369,5,273,0,0,1369,1516,5,254, - 0,0,1370,1371,5,273,0,0,1371,1372,5,62,0,0,1372,1516,5,254,0,0,1373, - 1374,5,107,0,0,1374,1516,5,293,0,0,1375,1376,5,139,0,0,1376,1516, - 5,293,0,0,1377,1378,5,273,0,0,1378,1516,5,54,0,0,1379,1380,5,273, - 0,0,1380,1381,5,59,0,0,1381,1516,5,293,0,0,1382,1383,5,273,0,0,1383, - 1516,5,313,0,0,1384,1385,5,273,0,0,1385,1516,5,143,0,0,1386,1387, - 5,273,0,0,1387,1516,5,172,0,0,1388,1389,5,59,0,0,1389,1516,5,142, - 0,0,1390,1391,5,96,0,0,1391,1516,5,142,0,0,1392,1393,5,11,0,0,1393, - 1516,5,142,0,0,1394,1395,5,171,0,0,1395,1516,5,293,0,0,1396,1397, - 5,171,0,0,1397,1516,5,72,0,0,1398,1399,5,326,0,0,1399,1516,5,293, - 0,0,1400,1401,5,326,0,0,1401,1516,5,72,0,0,1402,1403,5,59,0,0,1403, - 1404,5,298,0,0,1404,1516,5,175,0,0,1405,1406,5,96,0,0,1406,1407, - 5,298,0,0,1407,1516,5,175,0,0,1408,1409,5,11,0,0,1409,1410,5,293, - 0,0,1410,1411,3,86,43,0,1411,1412,5,197,0,0,1412,1413,5,45,0,0,1413, - 1516,1,0,0,0,1414,1415,5,11,0,0,1415,1416,5,293,0,0,1416,1417,3, - 86,43,0,1417,1418,5,45,0,0,1418,1419,5,31,0,0,1419,1516,1,0,0,0, - 1420,1421,5,11,0,0,1421,1422,5,293,0,0,1422,1423,3,86,43,0,1423, - 1424,5,197,0,0,1424,1425,5,279,0,0,1425,1516,1,0,0,0,1426,1427,5, - 11,0,0,1427,1428,5,293,0,0,1428,1429,3,86,43,0,1429,1430,5,275,0, - 0,1430,1431,5,31,0,0,1431,1516,1,0,0,0,1432,1433,5,11,0,0,1433,1434, - 5,293,0,0,1434,1435,3,86,43,0,1435,1436,5,197,0,0,1436,1437,5,275, - 0,0,1437,1516,1,0,0,0,1438,1439,5,11,0,0,1439,1440,5,293,0,0,1440, - 1441,3,86,43,0,1441,1442,5,197,0,0,1442,1443,5,283,0,0,1443,1444, - 5,20,0,0,1444,1445,5,89,0,0,1445,1516,1,0,0,0,1446,1447,5,11,0,0, - 1447,1448,5,293,0,0,1448,1449,3,86,43,0,1449,1450,5,269,0,0,1450, - 1451,5,275,0,0,1451,1452,5,170,0,0,1452,1516,1,0,0,0,1453,1454,5, - 11,0,0,1454,1455,5,293,0,0,1455,1456,3,86,43,0,1456,1457,5,103,0, - 0,1457,1458,5,217,0,0,1458,1516,1,0,0,0,1459,1460,5,11,0,0,1460, - 1461,5,293,0,0,1461,1462,3,86,43,0,1462,1463,5,18,0,0,1463,1464, - 5,217,0,0,1464,1516,1,0,0,0,1465,1466,5,11,0,0,1466,1467,5,293,0, - 0,1467,1468,3,86,43,0,1468,1469,5,320,0,0,1469,1470,5,217,0,0,1470, - 1516,1,0,0,0,1471,1472,5,11,0,0,1472,1473,5,293,0,0,1473,1474,3, - 86,43,0,1474,1475,5,310,0,0,1475,1516,1,0,0,0,1476,1477,5,11,0,0, - 1477,1478,5,293,0,0,1478,1480,3,86,43,0,1479,1481,3,32,16,0,1480, - 1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1483,5,53, - 0,0,1483,1516,1,0,0,0,1484,1485,5,11,0,0,1485,1486,5,293,0,0,1486, - 1488,3,86,43,0,1487,1489,3,32,16,0,1488,1487,1,0,0,0,1488,1489,1, - 0,0,0,1489,1490,1,0,0,0,1490,1491,5,56,0,0,1491,1516,1,0,0,0,1492, - 1493,5,11,0,0,1493,1494,5,293,0,0,1494,1496,3,86,43,0,1495,1497, - 3,32,16,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0, - 1498,1499,5,269,0,0,1499,1500,5,115,0,0,1500,1516,1,0,0,0,1501,1502, - 5,11,0,0,1502,1503,5,293,0,0,1503,1505,3,86,43,0,1504,1506,3,32, - 16,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507, - 1508,5,244,0,0,1508,1509,5,50,0,0,1509,1516,1,0,0,0,1510,1511,5, - 281,0,0,1511,1516,5,312,0,0,1512,1516,5,52,0,0,1513,1516,5,255,0, - 0,1514,1516,5,88,0,0,1515,1347,1,0,0,0,1515,1349,1,0,0,0,1515,1351, - 1,0,0,0,1515,1355,1,0,0,0,1515,1359,1,0,0,0,1515,1361,1,0,0,0,1515, - 1366,1,0,0,0,1515,1368,1,0,0,0,1515,1370,1,0,0,0,1515,1373,1,0,0, - 0,1515,1375,1,0,0,0,1515,1377,1,0,0,0,1515,1379,1,0,0,0,1515,1382, - 1,0,0,0,1515,1384,1,0,0,0,1515,1386,1,0,0,0,1515,1388,1,0,0,0,1515, - 1390,1,0,0,0,1515,1392,1,0,0,0,1515,1394,1,0,0,0,1515,1396,1,0,0, - 0,1515,1398,1,0,0,0,1515,1400,1,0,0,0,1515,1402,1,0,0,0,1515,1405, - 1,0,0,0,1515,1408,1,0,0,0,1515,1414,1,0,0,0,1515,1420,1,0,0,0,1515, - 1426,1,0,0,0,1515,1432,1,0,0,0,1515,1438,1,0,0,0,1515,1446,1,0,0, - 0,1515,1453,1,0,0,0,1515,1459,1,0,0,0,1515,1465,1,0,0,0,1515,1471, - 1,0,0,0,1515,1476,1,0,0,0,1515,1484,1,0,0,0,1515,1492,1,0,0,0,1515, - 1501,1,0,0,0,1515,1510,1,0,0,0,1515,1512,1,0,0,0,1515,1513,1,0,0, - 0,1515,1514,1,0,0,0,1516,13,1,0,0,0,1517,1519,5,59,0,0,1518,1520, - 5,298,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, - 1521,1523,5,109,0,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524, - 1,0,0,0,1524,1526,5,293,0,0,1525,1527,3,190,95,0,1526,1525,1,0,0, - 0,1526,1527,1,0,0,0,1527,1528,1,0,0,0,1528,1529,3,84,42,0,1529,15, - 1,0,0,0,1530,1531,5,59,0,0,1531,1533,5,208,0,0,1532,1530,1,0,0,0, - 1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534,1535,5,244,0,0,1535,1536, - 5,293,0,0,1536,1537,3,84,42,0,1537,17,1,0,0,0,1538,1539,5,45,0,0, - 1539,1540,5,31,0,0,1540,1544,3,212,106,0,1541,1542,5,279,0,0,1542, - 1543,5,31,0,0,1543,1545,3,216,108,0,1544,1541,1,0,0,0,1544,1545, - 1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,152,0,0,1547,1548,5,382,0, - 0,1548,1549,5,30,0,0,1549,19,1,0,0,0,1550,1551,5,275,0,0,1551,1552, - 5,31,0,0,1552,1553,3,212,106,0,1553,1556,5,203,0,0,1554,1557,3,66, - 33,0,1555,1557,3,68,34,0,1556,1554,1,0,0,0,1556,1555,1,0,0,0,1557, - 1561,1,0,0,0,1558,1559,5,283,0,0,1559,1560,5,20,0,0,1560,1562,5, - 89,0,0,1561,1558,1,0,0,0,1561,1562,1,0,0,0,1562,21,1,0,0,0,1563, - 1564,5,170,0,0,1564,1565,3,388,194,0,1565,23,1,0,0,0,1566,1567,5, - 51,0,0,1567,1568,3,388,194,0,1568,25,1,0,0,0,1569,1571,3,44,22,0, - 1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573, - 3,104,52,0,1573,1574,3,100,50,0,1574,27,1,0,0,0,1575,1576,5,147, - 0,0,1576,1578,5,216,0,0,1577,1579,5,293,0,0,1578,1577,1,0,0,0,1578, - 1579,1,0,0,0,1579,1580,1,0,0,0,1580,1585,3,86,43,0,1581,1583,3,32, - 16,0,1582,1584,3,190,95,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584, - 1586,1,0,0,0,1585,1581,1,0,0,0,1585,1586,1,0,0,0,1586,1593,1,0,0, - 0,1587,1588,5,31,0,0,1588,1594,5,189,0,0,1589,1590,5,2,0,0,1590, - 1591,3,94,47,0,1591,1592,5,3,0,0,1592,1594,1,0,0,0,1593,1587,1,0, - 0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1652,1,0,0,0,1595,1596, - 5,147,0,0,1596,1598,5,152,0,0,1597,1599,5,293,0,0,1598,1597,1,0, - 0,0,1598,1599,1,0,0,0,1599,1600,1,0,0,0,1600,1602,3,86,43,0,1601, - 1603,3,32,16,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1605,1,0, - 0,0,1604,1606,3,190,95,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606, - 1613,1,0,0,0,1607,1608,5,31,0,0,1608,1614,5,189,0,0,1609,1610,5, - 2,0,0,1610,1611,3,94,47,0,1611,1612,5,3,0,0,1612,1614,1,0,0,0,1613, - 1607,1,0,0,0,1613,1609,1,0,0,0,1613,1614,1,0,0,0,1614,1652,1,0,0, - 0,1615,1616,5,147,0,0,1616,1618,5,152,0,0,1617,1619,5,293,0,0,1618, - 1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1621,3,86, - 43,0,1621,1622,5,244,0,0,1622,1623,3,138,69,0,1623,1652,1,0,0,0, - 1624,1625,5,147,0,0,1625,1627,5,216,0,0,1626,1628,5,169,0,0,1627, - 1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629,1630,5,90, - 0,0,1630,1632,3,388,194,0,1631,1633,3,242,121,0,1632,1631,1,0,0, - 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,70,35,0,1635,1634, - 1,0,0,0,1635,1636,1,0,0,0,1636,1652,1,0,0,0,1637,1638,5,147,0,0, - 1638,1640,5,216,0,0,1639,1641,5,169,0,0,1640,1639,1,0,0,0,1640,1641, - 1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,90,0,0,1643,1645,3,388,194, - 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0,0,0,1646,1649, - 3,48,24,0,1647,1648,5,207,0,0,1648,1650,3,54,27,0,1649,1647,1,0, - 0,0,1649,1650,1,0,0,0,1650,1652,1,0,0,0,1651,1575,1,0,0,0,1651,1595, - 1,0,0,0,1651,1615,1,0,0,0,1651,1624,1,0,0,0,1651,1637,1,0,0,0,1652, - 29,1,0,0,0,1653,1655,3,32,16,0,1654,1656,3,22,11,0,1655,1654,1,0, - 0,0,1655,1656,1,0,0,0,1656,31,1,0,0,0,1657,1658,5,217,0,0,1658,1659, - 5,2,0,0,1659,1664,3,34,17,0,1660,1661,5,4,0,0,1661,1663,3,34,17, - 0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664,1662,1,0,0,0,1664,1665, - 1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0,0,1667,1668,5,3,0,0,1668, - 33,1,0,0,0,1669,1672,3,376,188,0,1670,1671,5,352,0,0,1671,1673,3, - 288,144,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,1679,1,0,0,0, - 1674,1675,3,376,188,0,1675,1676,5,352,0,0,1676,1677,5,82,0,0,1677, - 1679,1,0,0,0,1678,1669,1,0,0,0,1678,1674,1,0,0,0,1679,35,1,0,0,0, - 1680,1681,7,11,0,0,1681,37,1,0,0,0,1682,1683,7,12,0,0,1683,39,1, - 0,0,0,1684,1690,3,98,49,0,1685,1690,3,388,194,0,1686,1690,3,290, - 145,0,1687,1690,3,292,146,0,1688,1690,3,294,147,0,1689,1684,1,0, - 0,0,1689,1685,1,0,0,0,1689,1686,1,0,0,0,1689,1687,1,0,0,0,1689,1688, - 1,0,0,0,1690,41,1,0,0,0,1691,1696,3,376,188,0,1692,1693,5,5,0,0, - 1693,1695,3,376,188,0,1694,1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694, - 1,0,0,0,1696,1697,1,0,0,0,1697,43,1,0,0,0,1698,1696,1,0,0,0,1699, - 1700,5,346,0,0,1700,1705,3,46,23,0,1701,1702,5,4,0,0,1702,1704,3, - 46,23,0,1703,1701,1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705, - 1706,1,0,0,0,1706,45,1,0,0,0,1707,1705,1,0,0,0,1708,1710,3,372,186, - 0,1709,1711,3,212,106,0,1710,1709,1,0,0,0,1710,1711,1,0,0,0,1711, - 1713,1,0,0,0,1712,1714,5,20,0,0,1713,1712,1,0,0,0,1713,1714,1,0, - 0,0,1714,1715,1,0,0,0,1715,1716,5,2,0,0,1716,1717,3,26,13,0,1717, - 1718,5,3,0,0,1718,47,1,0,0,0,1719,1720,5,332,0,0,1720,1721,3,246, - 123,0,1721,49,1,0,0,0,1722,1723,5,207,0,0,1723,1737,3,62,31,0,1724, - 1725,5,218,0,0,1725,1726,5,31,0,0,1726,1737,3,260,130,0,1727,1737, - 3,20,10,0,1728,1737,3,18,9,0,1729,1737,3,242,121,0,1730,1737,3,70, - 35,0,1731,1737,3,22,11,0,1732,1737,3,24,12,0,1733,1734,5,297,0,0, - 1734,1737,3,54,27,0,1735,1737,3,52,26,0,1736,1722,1,0,0,0,1736,1724, - 1,0,0,0,1736,1727,1,0,0,0,1736,1728,1,0,0,0,1736,1729,1,0,0,0,1736, - 1730,1,0,0,0,1736,1731,1,0,0,0,1736,1732,1,0,0,0,1736,1733,1,0,0, - 0,1736,1735,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, - 1,0,0,0,1739,51,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,162,0,0,1742, - 1743,5,382,0,0,1743,53,1,0,0,0,1744,1745,5,2,0,0,1745,1750,3,56, - 28,0,1746,1747,5,4,0,0,1747,1749,3,56,28,0,1748,1746,1,0,0,0,1749, - 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0, - 0,1752,1750,1,0,0,0,1753,1754,5,3,0,0,1754,55,1,0,0,0,1755,1760, - 3,58,29,0,1756,1758,5,352,0,0,1757,1756,1,0,0,0,1757,1758,1,0,0, - 0,1758,1759,1,0,0,0,1759,1761,3,60,30,0,1760,1757,1,0,0,0,1760,1761, - 1,0,0,0,1761,57,1,0,0,0,1762,1767,3,376,188,0,1763,1764,5,5,0,0, - 1764,1766,3,376,188,0,1765,1763,1,0,0,0,1766,1769,1,0,0,0,1767,1765, - 1,0,0,0,1767,1768,1,0,0,0,1768,1772,1,0,0,0,1769,1767,1,0,0,0,1770, - 1772,3,388,194,0,1771,1762,1,0,0,0,1771,1770,1,0,0,0,1772,59,1,0, - 0,0,1773,1778,5,382,0,0,1774,1778,5,384,0,0,1775,1778,3,296,148, - 0,1776,1778,3,388,194,0,1777,1773,1,0,0,0,1777,1774,1,0,0,0,1777, - 1775,1,0,0,0,1777,1776,1,0,0,0,1778,61,1,0,0,0,1779,1780,5,2,0,0, - 1780,1785,3,64,32,0,1781,1782,5,4,0,0,1782,1784,3,64,32,0,1783,1781, - 1,0,0,0,1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786, - 1788,1,0,0,0,1787,1785,1,0,0,0,1788,1789,5,3,0,0,1789,63,1,0,0,0, - 1790,1795,3,58,29,0,1791,1793,5,352,0,0,1792,1791,1,0,0,0,1792,1793, - 1,0,0,0,1793,1794,1,0,0,0,1794,1796,3,268,134,0,1795,1792,1,0,0, - 0,1795,1796,1,0,0,0,1796,65,1,0,0,0,1797,1798,5,2,0,0,1798,1803, - 3,288,144,0,1799,1800,5,4,0,0,1800,1802,3,288,144,0,1801,1799,1, - 0,0,0,1802,1805,1,0,0,0,1803,1801,1,0,0,0,1803,1804,1,0,0,0,1804, - 1806,1,0,0,0,1805,1803,1,0,0,0,1806,1807,5,3,0,0,1807,67,1,0,0,0, - 1808,1809,5,2,0,0,1809,1814,3,66,33,0,1810,1811,5,4,0,0,1811,1813, - 3,66,33,0,1812,1810,1,0,0,0,1813,1816,1,0,0,0,1814,1812,1,0,0,0, - 1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1814,1,0,0,0,1817,1818, - 5,3,0,0,1818,69,1,0,0,0,1819,1820,5,283,0,0,1820,1821,5,20,0,0,1821, - 1826,3,72,36,0,1822,1823,5,283,0,0,1823,1824,5,31,0,0,1824,1826, - 3,74,37,0,1825,1819,1,0,0,0,1825,1822,1,0,0,0,1826,71,1,0,0,0,1827, - 1828,5,146,0,0,1828,1829,3,388,194,0,1829,1830,5,212,0,0,1830,1831, - 3,388,194,0,1831,1834,1,0,0,0,1832,1834,3,376,188,0,1833,1827,1, - 0,0,0,1833,1832,1,0,0,0,1834,73,1,0,0,0,1835,1839,3,388,194,0,1836, - 1837,5,346,0,0,1837,1838,5,267,0,0,1838,1840,3,54,27,0,1839,1836, - 1,0,0,0,1839,1840,1,0,0,0,1840,75,1,0,0,0,1841,1842,3,376,188,0, - 1842,1843,3,388,194,0,1843,77,1,0,0,0,1844,1845,3,28,14,0,1845,1846, - 3,26,13,0,1846,1901,1,0,0,0,1847,1849,3,146,73,0,1848,1850,3,102, - 51,0,1849,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1849,1,0,0,0,1851, - 1852,1,0,0,0,1852,1901,1,0,0,0,1853,1854,5,84,0,0,1854,1855,5,123, - 0,0,1855,1856,3,86,43,0,1856,1858,3,240,120,0,1857,1859,3,138,69, - 0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1901,1,0,0,0,1860,1861, - 5,329,0,0,1861,1862,3,86,43,0,1862,1863,3,240,120,0,1863,1865,3, - 120,60,0,1864,1866,3,138,69,0,1865,1864,1,0,0,0,1865,1866,1,0,0, - 0,1866,1901,1,0,0,0,1867,1868,5,179,0,0,1868,1869,5,152,0,0,1869, - 1870,3,86,43,0,1870,1871,3,240,120,0,1871,1877,5,332,0,0,1872,1878, - 3,98,49,0,1873,1874,5,2,0,0,1874,1875,3,26,13,0,1875,1876,5,3,0, - 0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877,1873,1,0,0,0,1878,1879, - 1,0,0,0,1879,1880,3,240,120,0,1880,1881,5,203,0,0,1881,1885,3,276, - 138,0,1882,1884,3,122,61,0,1883,1882,1,0,0,0,1884,1887,1,0,0,0,1885, - 1883,1,0,0,0,1885,1886,1,0,0,0,1886,1891,1,0,0,0,1887,1885,1,0,0, - 0,1888,1890,3,124,62,0,1889,1888,1,0,0,0,1890,1893,1,0,0,0,1891, - 1889,1,0,0,0,1891,1892,1,0,0,0,1892,1897,1,0,0,0,1893,1891,1,0,0, - 0,1894,1896,3,126,63,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, - 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0, - 0,1900,1844,1,0,0,0,1900,1847,1,0,0,0,1900,1853,1,0,0,0,1900,1860, - 1,0,0,0,1900,1867,1,0,0,0,1901,79,1,0,0,0,1902,1903,3,98,49,0,1903, - 81,1,0,0,0,1904,1905,3,98,49,0,1905,83,1,0,0,0,1906,1907,3,252,126, - 0,1907,85,1,0,0,0,1908,1909,3,252,126,0,1909,87,1,0,0,0,1910,1911, - 3,254,127,0,1911,89,1,0,0,0,1912,1913,3,254,127,0,1913,91,1,0,0, - 0,1914,1917,3,246,123,0,1915,1917,4,46,0,0,1916,1914,1,0,0,0,1916, - 1915,1,0,0,0,1917,93,1,0,0,0,1918,1923,3,92,46,0,1919,1920,5,4,0, - 0,1920,1922,3,92,46,0,1921,1919,1,0,0,0,1922,1925,1,0,0,0,1923,1921, - 1,0,0,0,1923,1924,1,0,0,0,1924,95,1,0,0,0,1925,1923,1,0,0,0,1926, - 1927,3,372,186,0,1927,97,1,0,0,0,1928,1929,5,136,0,0,1929,1930,5, - 2,0,0,1930,1931,3,268,134,0,1931,1932,5,3,0,0,1932,1935,1,0,0,0, - 1933,1935,3,246,123,0,1934,1928,1,0,0,0,1934,1933,1,0,0,0,1935,99, - 1,0,0,0,1936,1937,5,209,0,0,1937,1938,5,31,0,0,1938,1943,3,108,54, - 0,1939,1940,5,4,0,0,1940,1942,3,108,54,0,1941,1939,1,0,0,0,1942, - 1945,1,0,0,0,1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,1947,1,0,0, - 0,1945,1943,1,0,0,0,1946,1936,1,0,0,0,1946,1947,1,0,0,0,1947,1958, - 1,0,0,0,1948,1949,5,44,0,0,1949,1950,5,31,0,0,1950,1955,3,268,134, - 0,1951,1952,5,4,0,0,1952,1954,3,268,134,0,1953,1951,1,0,0,0,1954, - 1957,1,0,0,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0, - 0,1957,1955,1,0,0,0,1958,1948,1,0,0,0,1958,1959,1,0,0,0,1959,1970, - 1,0,0,0,1960,1961,5,93,0,0,1961,1962,5,31,0,0,1962,1967,3,268,134, - 0,1963,1964,5,4,0,0,1964,1966,3,268,134,0,1965,1963,1,0,0,0,1966, - 1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0,0,1968,1971,1,0,0, - 0,1969,1967,1,0,0,0,1970,1960,1,0,0,0,1970,1971,1,0,0,0,1971,1982, - 1,0,0,0,1972,1973,5,278,0,0,1973,1974,5,31,0,0,1974,1979,3,108,54, - 0,1975,1976,5,4,0,0,1976,1978,3,108,54,0,1977,1975,1,0,0,0,1978, - 1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980,1983,1,0,0, - 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1985, - 1,0,0,0,1984,1986,3,352,176,0,1985,1984,1,0,0,0,1985,1986,1,0,0, - 0,1986,1992,1,0,0,0,1987,1990,5,165,0,0,1988,1991,5,10,0,0,1989, - 1991,3,268,134,0,1990,1988,1,0,0,0,1990,1989,1,0,0,0,1991,1993,1, - 0,0,0,1992,1987,1,0,0,0,1992,1993,1,0,0,0,1993,1996,1,0,0,0,1994, - 1995,5,202,0,0,1995,1997,3,268,134,0,1996,1994,1,0,0,0,1996,1997, - 1,0,0,0,1997,101,1,0,0,0,1998,1999,3,28,14,0,1999,2000,3,112,56, - 0,2000,103,1,0,0,0,2001,2002,6,52,-1,0,2002,2003,3,106,53,0,2003, - 2024,1,0,0,0,2004,2005,10,3,0,0,2005,2007,7,13,0,0,2006,2008,3,196, - 98,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009, - 2023,3,104,52,4,2010,2011,10,2,0,0,2011,2013,5,148,0,0,2012,2014, - 3,196,98,0,2013,2012,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0, - 2015,2023,3,104,52,3,2016,2017,10,1,0,0,2017,2019,7,14,0,0,2018, - 2020,3,196,98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1, - 0,0,0,2021,2023,3,104,52,2,2022,2004,1,0,0,0,2022,2010,1,0,0,0,2022, - 2016,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025,1,0,0, - 0,2025,105,1,0,0,0,2026,2024,1,0,0,0,2027,2037,3,114,57,0,2028,2037, - 3,110,55,0,2029,2030,5,293,0,0,2030,2037,3,86,43,0,2031,2037,3,226, - 113,0,2032,2033,5,2,0,0,2033,2034,3,26,13,0,2034,2035,5,3,0,0,2035, - 2037,1,0,0,0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0, - 0,2036,2031,1,0,0,0,2036,2032,1,0,0,0,2037,107,1,0,0,0,2038,2041, - 3,92,46,0,2039,2041,3,268,134,0,2040,2038,1,0,0,0,2040,2039,1,0, - 0,0,2041,2043,1,0,0,0,2042,2044,7,15,0,0,2043,2042,1,0,0,0,2043, - 2044,1,0,0,0,2044,2047,1,0,0,0,2045,2046,5,199,0,0,2046,2048,7,16, - 0,0,2047,2045,1,0,0,0,2047,2048,1,0,0,0,2048,109,1,0,0,0,2049,2051, - 3,146,73,0,2050,2052,3,112,56,0,2051,2050,1,0,0,0,2052,2053,1,0, - 0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,111,1,0,0,0,2055,2057, - 3,116,58,0,2056,2058,3,138,69,0,2057,2056,1,0,0,0,2057,2058,1,0, - 0,0,2058,2059,1,0,0,0,2059,2060,3,100,50,0,2060,2083,1,0,0,0,2061, - 2065,3,118,59,0,2062,2064,3,194,97,0,2063,2062,1,0,0,0,2064,2067, - 1,0,0,0,2065,2063,1,0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067, - 2065,1,0,0,0,2068,2070,3,138,69,0,2069,2068,1,0,0,0,2069,2070,1, - 0,0,0,2070,2072,1,0,0,0,2071,2073,3,152,76,0,2072,2071,1,0,0,0,2072, - 2073,1,0,0,0,2073,2075,1,0,0,0,2074,2076,3,140,70,0,2075,2074,1, - 0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077,2079,3,352,176,0, - 2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2081, - 3,100,50,0,2081,2083,1,0,0,0,2082,2055,1,0,0,0,2082,2061,1,0,0,0, - 2083,113,1,0,0,0,2084,2086,3,116,58,0,2085,2087,3,146,73,0,2086, - 2085,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0,0,2088,2090,3,194, - 97,0,2089,2088,1,0,0,0,2090,2093,1,0,0,0,2091,2089,1,0,0,0,2091, - 2092,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2094,2096,3,138, - 69,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097, - 2099,3,152,76,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1, - 0,0,0,2100,2102,3,140,70,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, - 2104,1,0,0,0,2103,2105,3,352,176,0,2104,2103,1,0,0,0,2104,2105,1, - 0,0,0,2105,2129,1,0,0,0,2106,2108,3,118,59,0,2107,2109,3,146,73, - 0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110,2112, - 3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0, - 2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116,2118, - 3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, - 2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, - 1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, - 2124,2126,1,0,0,0,2125,2127,3,352,176,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2129,1,0,0,0,2128,2084,1,0,0,0,2128,2106,1,0,0,0,2129, - 115,1,0,0,0,2130,2131,5,263,0,0,2131,2132,5,314,0,0,2132,2134,5, - 2,0,0,2133,2135,3,196,98,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, - 2136,1,0,0,0,2136,2137,3,274,137,0,2137,2138,5,3,0,0,2138,2150,1, - 0,0,0,2139,2141,5,177,0,0,2140,2142,3,196,98,0,2141,2140,1,0,0,0, - 2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2150,3,274,137,0,2144,2146, - 5,238,0,0,2145,2147,3,196,98,0,2146,2145,1,0,0,0,2146,2147,1,0,0, - 0,2147,2148,1,0,0,0,2148,2150,3,274,137,0,2149,2130,1,0,0,0,2149, - 2139,1,0,0,0,2149,2144,1,0,0,0,2150,2152,1,0,0,0,2151,2153,3,242, - 121,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2156,1,0,0,0,2154, - 2155,5,236,0,0,2155,2157,3,388,194,0,2156,2154,1,0,0,0,2156,2157, - 1,0,0,0,2157,2158,1,0,0,0,2158,2159,5,332,0,0,2159,2172,3,388,194, - 0,2160,2170,5,20,0,0,2161,2171,3,214,107,0,2162,2171,3,334,167,0, - 2163,2166,5,2,0,0,2164,2167,3,214,107,0,2165,2167,3,334,167,0,2166, - 2164,1,0,0,0,2166,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2169,5,3,0, - 0,2169,2171,1,0,0,0,2170,2161,1,0,0,0,2170,2162,1,0,0,0,2170,2163, - 1,0,0,0,2171,2173,1,0,0,0,2172,2160,1,0,0,0,2172,2173,1,0,0,0,2173, - 2175,1,0,0,0,2174,2176,3,242,121,0,2175,2174,1,0,0,0,2175,2176,1, - 0,0,0,2176,2179,1,0,0,0,2177,2178,5,235,0,0,2178,2180,3,388,194, - 0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,117,1,0,0,0,2181,2185, - 5,263,0,0,2182,2184,3,142,71,0,2183,2182,1,0,0,0,2184,2187,1,0,0, - 0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2189,1,0,0,0,2187,2185, - 1,0,0,0,2188,2190,3,196,98,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0, - 2190,2191,1,0,0,0,2191,2192,3,258,129,0,2192,119,1,0,0,0,2193,2194, - 5,269,0,0,2194,2195,3,134,67,0,2195,121,1,0,0,0,2196,2197,5,343, - 0,0,2197,2200,5,178,0,0,2198,2199,5,14,0,0,2199,2201,3,276,138,0, - 2200,2198,1,0,0,0,2200,2201,1,0,0,0,2201,2202,1,0,0,0,2202,2203, - 5,300,0,0,2203,2204,3,128,64,0,2204,123,1,0,0,0,2205,2206,5,343, - 0,0,2206,2207,5,197,0,0,2207,2210,5,178,0,0,2208,2209,5,31,0,0,2209, - 2211,5,296,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2214,1,0, - 0,0,2212,2213,5,14,0,0,2213,2215,3,276,138,0,2214,2212,1,0,0,0,2214, - 2215,1,0,0,0,2215,2216,1,0,0,0,2216,2217,5,300,0,0,2217,2218,3,130, - 65,0,2218,125,1,0,0,0,2219,2220,5,343,0,0,2220,2221,5,197,0,0,2221, - 2222,5,178,0,0,2222,2223,5,31,0,0,2223,2226,5,280,0,0,2224,2225, - 5,14,0,0,2225,2227,3,276,138,0,2226,2224,1,0,0,0,2226,2227,1,0,0, - 0,2227,2228,1,0,0,0,2228,2229,5,300,0,0,2229,2230,3,132,66,0,2230, - 127,1,0,0,0,2231,2239,5,84,0,0,2232,2233,5,329,0,0,2233,2234,5,269, - 0,0,2234,2239,5,363,0,0,2235,2236,5,329,0,0,2236,2237,5,269,0,0, - 2237,2239,3,134,67,0,2238,2231,1,0,0,0,2238,2232,1,0,0,0,2238,2235, - 1,0,0,0,2239,129,1,0,0,0,2240,2241,5,147,0,0,2241,2259,5,363,0,0, - 2242,2243,5,147,0,0,2243,2244,5,2,0,0,2244,2245,3,244,122,0,2245, - 2246,5,3,0,0,2246,2247,5,333,0,0,2247,2248,5,2,0,0,2248,2253,3,268, - 134,0,2249,2250,5,4,0,0,2250,2252,3,268,134,0,2251,2249,1,0,0,0, - 2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256, - 1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,3,0,0,2257,2259,1,0,0,0,2258, - 2240,1,0,0,0,2258,2242,1,0,0,0,2259,131,1,0,0,0,2260,2265,5,84,0, - 0,2261,2262,5,329,0,0,2262,2263,5,269,0,0,2263,2265,3,134,67,0,2264, - 2260,1,0,0,0,2264,2261,1,0,0,0,2265,133,1,0,0,0,2266,2271,3,136, - 68,0,2267,2268,5,4,0,0,2268,2270,3,136,68,0,2269,2267,1,0,0,0,2270, - 2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0, - 0,2273,2271,1,0,0,0,2274,2275,3,246,123,0,2275,2276,5,352,0,0,2276, - 2277,3,268,134,0,2277,137,1,0,0,0,2278,2279,5,344,0,0,2279,2280, - 3,276,138,0,2280,139,1,0,0,0,2281,2282,5,132,0,0,2282,2283,3,276, - 138,0,2283,141,1,0,0,0,2284,2285,5,374,0,0,2285,2292,3,144,72,0, - 2286,2288,5,4,0,0,2287,2286,1,0,0,0,2287,2288,1,0,0,0,2288,2289, - 1,0,0,0,2289,2291,3,144,72,0,2290,2287,1,0,0,0,2291,2294,1,0,0,0, - 2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292, - 1,0,0,0,2295,2296,5,375,0,0,2296,143,1,0,0,0,2297,2311,3,376,188, - 0,2298,2299,3,376,188,0,2299,2300,5,2,0,0,2300,2305,3,284,142,0, - 2301,2302,5,4,0,0,2302,2304,3,284,142,0,2303,2301,1,0,0,0,2304,2307, - 1,0,0,0,2305,2303,1,0,0,0,2305,2306,1,0,0,0,2306,2308,1,0,0,0,2307, - 2305,1,0,0,0,2308,2309,5,3,0,0,2309,2311,1,0,0,0,2310,2297,1,0,0, - 0,2310,2298,1,0,0,0,2311,145,1,0,0,0,2312,2313,5,123,0,0,2313,2318, - 3,198,99,0,2314,2315,5,4,0,0,2315,2317,3,198,99,0,2316,2314,1,0, - 0,0,2317,2320,1,0,0,0,2318,2316,1,0,0,0,2318,2319,1,0,0,0,2319,2324, - 1,0,0,0,2320,2318,1,0,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0,0, - 2323,2326,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2328, - 1,0,0,0,2326,2324,1,0,0,0,2327,2329,3,162,81,0,2328,2327,1,0,0,0, - 2328,2329,1,0,0,0,2329,2331,1,0,0,0,2330,2332,3,168,84,0,2331,2330, - 1,0,0,0,2331,2332,1,0,0,0,2332,147,1,0,0,0,2333,2334,7,17,0,0,2334, - 149,1,0,0,0,2335,2337,5,119,0,0,2336,2335,1,0,0,0,2336,2337,1,0, - 0,0,2337,2338,1,0,0,0,2338,2339,7,18,0,0,2339,2340,5,20,0,0,2340, - 2341,5,201,0,0,2341,2350,3,392,196,0,2342,2344,5,119,0,0,2343,2342, - 1,0,0,0,2343,2344,1,0,0,0,2344,2345,1,0,0,0,2345,2346,7,19,0,0,2346, - 2347,5,20,0,0,2347,2348,5,201,0,0,2348,2350,3,280,140,0,2349,2336, - 1,0,0,0,2349,2343,1,0,0,0,2350,151,1,0,0,0,2351,2352,5,130,0,0,2352, - 2353,5,31,0,0,2353,2358,3,154,77,0,2354,2355,5,4,0,0,2355,2357,3, - 154,77,0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358, - 2359,1,0,0,0,2359,2391,1,0,0,0,2360,2358,1,0,0,0,2361,2362,5,130, - 0,0,2362,2363,5,31,0,0,2363,2368,3,268,134,0,2364,2365,5,4,0,0,2365, - 2367,3,268,134,0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1, - 0,0,0,2368,2369,1,0,0,0,2369,2388,1,0,0,0,2370,2368,1,0,0,0,2371, - 2372,5,346,0,0,2372,2389,5,256,0,0,2373,2374,5,346,0,0,2374,2389, - 5,61,0,0,2375,2376,5,131,0,0,2376,2377,5,271,0,0,2377,2378,5,2,0, - 0,2378,2383,3,160,80,0,2379,2380,5,4,0,0,2380,2382,3,160,80,0,2381, - 2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0, - 0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,3,0,0,2387,2389, - 1,0,0,0,2388,2371,1,0,0,0,2388,2373,1,0,0,0,2388,2375,1,0,0,0,2388, - 2389,1,0,0,0,2389,2391,1,0,0,0,2390,2351,1,0,0,0,2390,2361,1,0,0, - 0,2391,153,1,0,0,0,2392,2396,3,92,46,0,2393,2396,3,156,78,0,2394, - 2396,3,268,134,0,2395,2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1, - 0,0,0,2396,155,1,0,0,0,2397,2398,7,20,0,0,2398,2399,5,2,0,0,2399, - 2404,3,160,80,0,2400,2401,5,4,0,0,2401,2403,3,160,80,0,2402,2400, - 1,0,0,0,2403,2406,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, - 2407,1,0,0,0,2406,2404,1,0,0,0,2407,2408,5,3,0,0,2408,2423,1,0,0, - 0,2409,2410,5,131,0,0,2410,2411,5,271,0,0,2411,2412,5,2,0,0,2412, - 2417,3,158,79,0,2413,2414,5,4,0,0,2414,2416,3,158,79,0,2415,2413, - 1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418, - 2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421,2423,1,0,0, - 0,2422,2397,1,0,0,0,2422,2409,1,0,0,0,2423,157,1,0,0,0,2424,2427, - 3,156,78,0,2425,2427,3,160,80,0,2426,2424,1,0,0,0,2426,2425,1,0, - 0,0,2427,159,1,0,0,0,2428,2449,3,92,46,0,2429,2449,3,268,134,0,2430, - 2445,5,2,0,0,2431,2434,3,92,46,0,2432,2434,3,268,134,0,2433,2431, - 1,0,0,0,2433,2432,1,0,0,0,2434,2442,1,0,0,0,2435,2438,5,4,0,0,2436, - 2439,3,92,46,0,2437,2439,3,268,134,0,2438,2436,1,0,0,0,2438,2437, - 1,0,0,0,2439,2441,1,0,0,0,2440,2435,1,0,0,0,2441,2444,1,0,0,0,2442, - 2440,1,0,0,0,2442,2443,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0, - 0,2445,2433,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447,2449, - 5,3,0,0,2448,2428,1,0,0,0,2448,2429,1,0,0,0,2448,2430,1,0,0,0,2449, - 161,1,0,0,0,2450,2451,5,223,0,0,2451,2452,5,2,0,0,2452,2453,3,258, - 129,0,2453,2454,5,119,0,0,2454,2455,3,164,82,0,2455,2456,5,140,0, - 0,2456,2457,5,2,0,0,2457,2462,3,166,83,0,2458,2459,5,4,0,0,2459, - 2461,3,166,83,0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1, - 0,0,0,2462,2463,1,0,0,0,2463,2465,1,0,0,0,2464,2462,1,0,0,0,2465, - 2466,5,3,0,0,2466,2467,5,3,0,0,2467,163,1,0,0,0,2468,2481,3,376, - 188,0,2469,2470,5,2,0,0,2470,2475,3,376,188,0,2471,2472,5,4,0,0, - 2472,2474,3,376,188,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473, - 1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478, - 2479,5,3,0,0,2479,2481,1,0,0,0,2480,2468,1,0,0,0,2480,2469,1,0,0, - 0,2481,165,1,0,0,0,2482,2487,3,268,134,0,2483,2485,5,20,0,0,2484, - 2483,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1,0,0,0,2486,2488,3,376, - 188,0,2487,2484,1,0,0,0,2487,2488,1,0,0,0,2488,167,1,0,0,0,2489, - 2491,5,327,0,0,2490,2492,3,170,85,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,5,2,0,0,2494,2495,3,172,86,0, - 2495,2500,5,3,0,0,2496,2498,5,20,0,0,2497,2496,1,0,0,0,2497,2498, - 1,0,0,0,2498,2499,1,0,0,0,2499,2501,3,376,188,0,2500,2497,1,0,0, - 0,2500,2501,1,0,0,0,2501,169,1,0,0,0,2502,2503,7,21,0,0,2503,2504, - 5,199,0,0,2504,171,1,0,0,0,2505,2508,3,174,87,0,2506,2508,3,176, - 88,0,2507,2505,1,0,0,0,2507,2506,1,0,0,0,2508,173,1,0,0,0,2509,2510, - 3,180,90,0,2510,2511,5,119,0,0,2511,2512,3,182,91,0,2512,2513,5, - 140,0,0,2513,2514,5,2,0,0,2514,2519,3,184,92,0,2515,2516,5,4,0,0, - 2516,2518,3,184,92,0,2517,2515,1,0,0,0,2518,2521,1,0,0,0,2519,2517, - 1,0,0,0,2519,2520,1,0,0,0,2520,2522,1,0,0,0,2521,2519,1,0,0,0,2522, - 2523,5,3,0,0,2523,175,1,0,0,0,2524,2525,5,2,0,0,2525,2530,3,180, - 90,0,2526,2527,5,4,0,0,2527,2529,3,180,90,0,2528,2526,1,0,0,0,2529, - 2532,1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0, - 0,2532,2530,1,0,0,0,2533,2534,5,3,0,0,2534,2535,5,119,0,0,2535,2536, - 3,182,91,0,2536,2537,5,140,0,0,2537,2538,5,2,0,0,2538,2543,3,178, - 89,0,2539,2540,5,4,0,0,2540,2542,3,178,89,0,2541,2539,1,0,0,0,2542, - 2545,1,0,0,0,2543,2541,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2543,1,0,0,0,2546,2547,5,3,0,0,2547,177,1,0,0,0,2548,2549, - 5,2,0,0,2549,2554,3,186,93,0,2550,2551,5,4,0,0,2551,2553,3,186,93, - 0,2552,2550,1,0,0,0,2553,2556,1,0,0,0,2554,2552,1,0,0,0,2554,2555, - 1,0,0,0,2555,2557,1,0,0,0,2556,2554,1,0,0,0,2557,2559,5,3,0,0,2558, - 2560,3,188,94,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,179,1,0, - 0,0,2561,2562,3,376,188,0,2562,181,1,0,0,0,2563,2564,3,376,188,0, - 2564,183,1,0,0,0,2565,2567,3,186,93,0,2566,2568,3,188,94,0,2567, - 2566,1,0,0,0,2567,2568,1,0,0,0,2568,185,1,0,0,0,2569,2570,3,246, - 123,0,2570,187,1,0,0,0,2571,2573,5,20,0,0,2572,2571,1,0,0,0,2572, - 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2575,3,376,188,0,2575,189,1, - 0,0,0,2576,2577,5,137,0,0,2577,2578,5,197,0,0,2578,2579,5,105,0, - 0,2579,191,1,0,0,0,2580,2581,5,137,0,0,2581,2582,5,105,0,0,2582, - 193,1,0,0,0,2583,2584,5,158,0,0,2584,2586,5,338,0,0,2585,2587,5, - 211,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0,2588, - 2589,3,90,45,0,2589,2598,5,2,0,0,2590,2595,3,268,134,0,2591,2592, - 5,4,0,0,2592,2594,3,268,134,0,2593,2591,1,0,0,0,2594,2597,1,0,0, - 0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2599,1,0,0,0,2597,2595, - 1,0,0,0,2598,2590,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, - 2601,5,3,0,0,2601,2613,3,240,120,0,2602,2604,5,20,0,0,2603,2602, - 1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605,2610,3,376,188, - 0,2606,2607,5,4,0,0,2607,2609,3,376,188,0,2608,2606,1,0,0,0,2609, - 2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2614,1,0,0, - 0,2612,2610,1,0,0,0,2613,2603,1,0,0,0,2613,2614,1,0,0,0,2614,195, - 1,0,0,0,2615,2616,7,22,0,0,2616,197,1,0,0,0,2617,2629,3,86,43,0, - 2618,2620,5,158,0,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,2621, - 1,0,0,0,2621,2625,3,224,112,0,2622,2624,3,200,100,0,2623,2622,1, - 0,0,0,2624,2627,1,0,0,0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626, - 2629,1,0,0,0,2627,2625,1,0,0,0,2628,2617,1,0,0,0,2628,2619,1,0,0, - 0,2629,199,1,0,0,0,2630,2634,3,202,101,0,2631,2634,3,162,81,0,2632, - 2634,3,168,84,0,2633,2630,1,0,0,0,2633,2631,1,0,0,0,2633,2632,1, - 0,0,0,2634,201,1,0,0,0,2635,2636,3,204,102,0,2636,2638,5,155,0,0, - 2637,2639,5,158,0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640, - 1,0,0,0,2640,2642,3,224,112,0,2641,2643,3,206,103,0,2642,2641,1, - 0,0,0,2642,2643,1,0,0,0,2643,2653,1,0,0,0,2644,2645,5,194,0,0,2645, - 2646,3,204,102,0,2646,2648,5,155,0,0,2647,2649,5,158,0,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,224,112, - 0,2651,2653,1,0,0,0,2652,2635,1,0,0,0,2652,2644,1,0,0,0,2653,203, - 1,0,0,0,2654,2656,5,144,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0, - 2656,2679,1,0,0,0,2657,2679,5,60,0,0,2658,2660,5,161,0,0,2659,2661, - 5,211,0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2679,1,0,0,0, - 2662,2664,5,161,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, - 1,0,0,0,2665,2679,5,264,0,0,2666,2668,5,250,0,0,2667,2669,5,211, - 0,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2679,1,0,0,0,2670,2672, - 5,124,0,0,2671,2673,5,211,0,0,2672,2671,1,0,0,0,2672,2673,1,0,0, - 0,2673,2679,1,0,0,0,2674,2676,5,161,0,0,2675,2674,1,0,0,0,2675,2676, - 1,0,0,0,2676,2677,1,0,0,0,2677,2679,5,15,0,0,2678,2655,1,0,0,0,2678, - 2657,1,0,0,0,2678,2658,1,0,0,0,2678,2663,1,0,0,0,2678,2666,1,0,0, - 0,2678,2670,1,0,0,0,2678,2675,1,0,0,0,2679,205,1,0,0,0,2680,2681, - 5,203,0,0,2681,2685,3,276,138,0,2682,2683,5,332,0,0,2683,2685,3, - 212,106,0,2684,2680,1,0,0,0,2684,2682,1,0,0,0,2685,207,1,0,0,0,2686, - 2687,5,295,0,0,2687,2689,5,2,0,0,2688,2690,3,210,105,0,2689,2688, - 1,0,0,0,2689,2690,1,0,0,0,2690,2691,1,0,0,0,2691,2696,5,3,0,0,2692, - 2693,5,243,0,0,2693,2694,5,2,0,0,2694,2695,5,382,0,0,2695,2697,5, - 3,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,209,1,0,0,0,2698, - 2700,5,362,0,0,2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0, - 0,0,2701,2702,7,23,0,0,2702,2723,5,222,0,0,2703,2704,3,268,134,0, - 2704,2705,5,258,0,0,2705,2723,1,0,0,0,2706,2707,5,29,0,0,2707,2708, - 5,382,0,0,2708,2709,5,210,0,0,2709,2710,5,201,0,0,2710,2719,5,382, - 0,0,2711,2717,5,203,0,0,2712,2718,3,376,188,0,2713,2714,3,370,185, - 0,2714,2715,5,2,0,0,2715,2716,5,3,0,0,2716,2718,1,0,0,0,2717,2712, - 1,0,0,0,2717,2713,1,0,0,0,2718,2720,1,0,0,0,2719,2711,1,0,0,0,2719, - 2720,1,0,0,0,2720,2723,1,0,0,0,2721,2723,3,268,134,0,2722,2699,1, - 0,0,0,2722,2703,1,0,0,0,2722,2706,1,0,0,0,2722,2721,1,0,0,0,2723, - 211,1,0,0,0,2724,2725,5,2,0,0,2725,2726,3,214,107,0,2726,2727,5, - 3,0,0,2727,213,1,0,0,0,2728,2733,3,372,186,0,2729,2730,5,4,0,0,2730, - 2732,3,372,186,0,2731,2729,1,0,0,0,2732,2735,1,0,0,0,2733,2731,1, - 0,0,0,2733,2734,1,0,0,0,2734,215,1,0,0,0,2735,2733,1,0,0,0,2736, - 2737,5,2,0,0,2737,2742,3,218,109,0,2738,2739,5,4,0,0,2739,2741,3, - 218,109,0,2740,2738,1,0,0,0,2741,2744,1,0,0,0,2742,2740,1,0,0,0, - 2742,2743,1,0,0,0,2743,2745,1,0,0,0,2744,2742,1,0,0,0,2745,2746, - 5,3,0,0,2746,217,1,0,0,0,2747,2749,3,372,186,0,2748,2750,7,15,0, - 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,219,1,0,0,0,2751,2752, - 5,2,0,0,2752,2757,3,222,111,0,2753,2754,5,4,0,0,2754,2756,3,222, - 111,0,2755,2753,1,0,0,0,2756,2759,1,0,0,0,2757,2755,1,0,0,0,2757, - 2758,1,0,0,0,2758,2760,1,0,0,0,2759,2757,1,0,0,0,2760,2761,5,3,0, - 0,2761,221,1,0,0,0,2762,2764,3,96,48,0,2763,2765,3,24,12,0,2764, - 2763,1,0,0,0,2764,2765,1,0,0,0,2765,223,1,0,0,0,2766,2770,3,86,43, - 0,2767,2770,3,90,45,0,2768,2770,3,98,49,0,2769,2766,1,0,0,0,2769, - 2767,1,0,0,0,2769,2768,1,0,0,0,2770,2772,1,0,0,0,2771,2773,3,150, - 75,0,2772,2771,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0,0,2774, - 2776,3,208,104,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2777,1, - 0,0,0,2777,2778,3,240,120,0,2778,2798,1,0,0,0,2779,2780,5,2,0,0, - 2780,2781,3,26,13,0,2781,2783,5,3,0,0,2782,2784,3,208,104,0,2783, - 2782,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0,0,2785,2786,3,240, - 120,0,2786,2798,1,0,0,0,2787,2788,5,2,0,0,2788,2789,3,198,99,0,2789, - 2791,5,3,0,0,2790,2792,3,208,104,0,2791,2790,1,0,0,0,2791,2792,1, - 0,0,0,2792,2793,1,0,0,0,2793,2794,3,240,120,0,2794,2798,1,0,0,0, - 2795,2798,3,226,113,0,2796,2798,3,238,119,0,2797,2769,1,0,0,0,2797, - 2779,1,0,0,0,2797,2787,1,0,0,0,2797,2795,1,0,0,0,2797,2796,1,0,0, - 0,2798,225,1,0,0,0,2799,2800,5,333,0,0,2800,2805,3,268,134,0,2801, - 2802,5,4,0,0,2802,2804,3,268,134,0,2803,2801,1,0,0,0,2804,2807,1, - 0,0,0,2805,2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807, - 2805,1,0,0,0,2808,2809,3,240,120,0,2809,227,1,0,0,0,2810,2811,5, - 293,0,0,2811,2813,3,86,43,0,2812,2814,3,230,115,0,2813,2812,1,0, - 0,0,2813,2814,1,0,0,0,2814,2830,1,0,0,0,2815,2816,5,293,0,0,2816, - 2817,5,2,0,0,2817,2818,3,86,43,0,2818,2820,5,3,0,0,2819,2821,3,230, - 115,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0,2821,2830,1,0,0,0,2822, - 2823,5,293,0,0,2823,2824,5,2,0,0,2824,2825,3,26,13,0,2825,2827,5, - 3,0,0,2826,2828,3,230,115,0,2827,2826,1,0,0,0,2827,2828,1,0,0,0, - 2828,2830,1,0,0,0,2829,2810,1,0,0,0,2829,2815,1,0,0,0,2829,2822, - 1,0,0,0,2830,229,1,0,0,0,2831,2832,5,346,0,0,2832,2833,5,274,0,0, - 2833,2851,5,217,0,0,2834,2835,7,24,0,0,2835,2848,5,31,0,0,2836,2837, - 5,2,0,0,2837,2842,3,268,134,0,2838,2839,5,4,0,0,2839,2841,3,268, - 134,0,2840,2838,1,0,0,0,2841,2844,1,0,0,0,2842,2840,1,0,0,0,2842, - 2843,1,0,0,0,2843,2845,1,0,0,0,2844,2842,1,0,0,0,2845,2846,5,3,0, - 0,2846,2849,1,0,0,0,2847,2849,3,268,134,0,2848,2836,1,0,0,0,2848, - 2847,1,0,0,0,2849,2851,1,0,0,0,2850,2831,1,0,0,0,2850,2834,1,0,0, - 0,2851,2868,1,0,0,0,2852,2853,7,25,0,0,2853,2866,5,31,0,0,2854,2855, - 5,2,0,0,2855,2860,3,108,54,0,2856,2857,5,4,0,0,2857,2859,3,108,54, - 0,2858,2856,1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861, - 1,0,0,0,2861,2863,1,0,0,0,2862,2860,1,0,0,0,2863,2864,5,3,0,0,2864, - 2867,1,0,0,0,2865,2867,3,108,54,0,2866,2854,1,0,0,0,2866,2865,1, - 0,0,0,2867,2869,1,0,0,0,2868,2852,1,0,0,0,2868,2869,1,0,0,0,2869, - 231,1,0,0,0,2870,2871,3,376,188,0,2871,2872,5,373,0,0,2872,2873, - 3,228,114,0,2873,233,1,0,0,0,2874,2877,3,228,114,0,2875,2877,3,232, - 116,0,2876,2874,1,0,0,0,2876,2875,1,0,0,0,2877,235,1,0,0,0,2878, - 2881,3,234,117,0,2879,2881,3,272,136,0,2880,2878,1,0,0,0,2880,2879, - 1,0,0,0,2881,237,1,0,0,0,2882,2883,3,366,183,0,2883,2892,5,2,0,0, - 2884,2889,3,236,118,0,2885,2886,5,4,0,0,2886,2888,3,236,118,0,2887, - 2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1,0,0,0,2889,2890,1,0,0, - 0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2892,2884,1,0,0,0,2892,2893, - 1,0,0,0,2893,2894,1,0,0,0,2894,2895,5,3,0,0,2895,2896,3,240,120, - 0,2896,239,1,0,0,0,2897,2899,5,20,0,0,2898,2897,1,0,0,0,2898,2899, - 1,0,0,0,2899,2900,1,0,0,0,2900,2902,3,378,189,0,2901,2903,3,212, - 106,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904, - 2898,1,0,0,0,2904,2905,1,0,0,0,2905,241,1,0,0,0,2906,2907,5,257, - 0,0,2907,2908,5,121,0,0,2908,2909,5,266,0,0,2909,2913,3,388,194, - 0,2910,2911,5,346,0,0,2911,2912,5,267,0,0,2912,2914,3,54,27,0,2913, - 2910,1,0,0,0,2913,2914,1,0,0,0,2914,2956,1,0,0,0,2915,2916,5,257, - 0,0,2916,2917,5,121,0,0,2917,2927,5,85,0,0,2918,2919,5,113,0,0,2919, - 2920,5,299,0,0,2920,2921,5,31,0,0,2921,2925,3,388,194,0,2922,2923, - 5,101,0,0,2923,2924,5,31,0,0,2924,2926,3,388,194,0,2925,2922,1,0, - 0,0,2925,2926,1,0,0,0,2926,2928,1,0,0,0,2927,2918,1,0,0,0,2927,2928, - 1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,48,0,0,2930,2931,5,154,0,0, - 2931,2932,5,299,0,0,2932,2933,5,31,0,0,2933,2935,3,388,194,0,2934, - 2929,1,0,0,0,2934,2935,1,0,0,0,2935,2941,1,0,0,0,2936,2937,5,177, - 0,0,2937,2938,5,156,0,0,2938,2939,5,299,0,0,2939,2940,5,31,0,0,2940, - 2942,3,388,194,0,2941,2936,1,0,0,0,2941,2942,1,0,0,0,2942,2947,1, - 0,0,0,2943,2944,5,166,0,0,2944,2945,5,299,0,0,2945,2946,5,31,0,0, - 2946,2948,3,388,194,0,2947,2943,1,0,0,0,2947,2948,1,0,0,0,2948,2953, - 1,0,0,0,2949,2950,5,198,0,0,2950,2951,5,83,0,0,2951,2952,5,20,0, - 0,2952,2954,3,388,194,0,2953,2949,1,0,0,0,2953,2954,1,0,0,0,2954, - 2956,1,0,0,0,2955,2906,1,0,0,0,2955,2915,1,0,0,0,2956,243,1,0,0, - 0,2957,2962,3,246,123,0,2958,2959,5,4,0,0,2959,2961,3,246,123,0, - 2960,2958,1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963, - 1,0,0,0,2963,245,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,372,186,0, - 2966,2967,5,5,0,0,2967,2969,3,372,186,0,2968,2966,1,0,0,0,2969,2972, - 1,0,0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,247,1,0,0,0,2972, - 2970,1,0,0,0,2973,2978,3,250,125,0,2974,2975,5,4,0,0,2975,2977,3, - 250,125,0,2976,2974,1,0,0,0,2977,2980,1,0,0,0,2978,2976,1,0,0,0, - 2978,2979,1,0,0,0,2979,249,1,0,0,0,2980,2978,1,0,0,0,2981,2984,3, - 246,123,0,2982,2983,5,207,0,0,2983,2985,3,54,27,0,2984,2982,1,0, - 0,0,2984,2985,1,0,0,0,2985,251,1,0,0,0,2986,2987,3,372,186,0,2987, - 2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1,0,0,0,2989,2990,1,0,0, - 0,2990,2991,1,0,0,0,2991,2992,3,372,186,0,2992,253,1,0,0,0,2993, - 2994,3,372,186,0,2994,2995,5,5,0,0,2995,2997,1,0,0,0,2996,2993,1, - 0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,2999,3,372,186,0, - 2999,255,1,0,0,0,3000,3003,3,92,46,0,3001,3003,3,268,134,0,3002, - 3000,1,0,0,0,3002,3001,1,0,0,0,3003,3011,1,0,0,0,3004,3006,5,20, - 0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006,3009,1,0,0,0,3007,3010, - 3,372,186,0,3008,3010,3,212,106,0,3009,3007,1,0,0,0,3009,3008,1, - 0,0,0,3010,3012,1,0,0,0,3011,3005,1,0,0,0,3011,3012,1,0,0,0,3012, - 257,1,0,0,0,3013,3018,3,256,128,0,3014,3015,5,4,0,0,3015,3017,3, - 256,128,0,3016,3014,1,0,0,0,3017,3020,1,0,0,0,3018,3016,1,0,0,0, - 3018,3019,1,0,0,0,3019,259,1,0,0,0,3020,3018,1,0,0,0,3021,3022,5, - 2,0,0,3022,3027,3,262,131,0,3023,3024,5,4,0,0,3024,3026,3,262,131, - 0,3025,3023,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028, - 1,0,0,0,3028,3030,1,0,0,0,3029,3027,1,0,0,0,3030,3031,5,3,0,0,3031, - 261,1,0,0,0,3032,3035,3,264,132,0,3033,3035,3,336,168,0,3034,3032, - 1,0,0,0,3034,3033,1,0,0,0,3035,263,1,0,0,0,3036,3050,3,370,185,0, - 3037,3038,3,376,188,0,3038,3039,5,2,0,0,3039,3044,3,266,133,0,3040, - 3041,5,4,0,0,3041,3043,3,266,133,0,3042,3040,1,0,0,0,3043,3046,1, - 0,0,0,3044,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3047,1,0,0,0,3046, - 3044,1,0,0,0,3047,3048,5,3,0,0,3048,3050,1,0,0,0,3049,3036,1,0,0, - 0,3049,3037,1,0,0,0,3050,265,1,0,0,0,3051,3054,3,370,185,0,3052, - 3054,3,288,144,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,267,1, - 0,0,0,3055,3056,3,276,138,0,3056,269,1,0,0,0,3057,3058,3,376,188, - 0,3058,3059,5,373,0,0,3059,3060,3,268,134,0,3060,271,1,0,0,0,3061, - 3064,3,268,134,0,3062,3064,3,270,135,0,3063,3061,1,0,0,0,3063,3062, - 1,0,0,0,3064,273,1,0,0,0,3065,3070,3,268,134,0,3066,3067,5,4,0,0, - 3067,3069,3,268,134,0,3068,3066,1,0,0,0,3069,3072,1,0,0,0,3070,3068, - 1,0,0,0,3070,3071,1,0,0,0,3071,275,1,0,0,0,3072,3070,1,0,0,0,3073, - 3074,6,138,-1,0,3074,3075,7,26,0,0,3075,3086,3,276,138,5,3076,3077, - 5,105,0,0,3077,3078,5,2,0,0,3078,3079,3,26,13,0,3079,3080,5,3,0, - 0,3080,3086,1,0,0,0,3081,3083,3,280,140,0,3082,3084,3,278,139,0, - 3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1,0,0,0,3085,3073, - 1,0,0,0,3085,3076,1,0,0,0,3085,3081,1,0,0,0,3086,3095,1,0,0,0,3087, - 3088,10,2,0,0,3088,3089,5,14,0,0,3089,3094,3,276,138,3,3090,3091, - 10,1,0,0,3091,3092,5,208,0,0,3092,3094,3,276,138,2,3093,3087,1,0, - 0,0,3093,3090,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096, - 1,0,0,0,3096,277,1,0,0,0,3097,3095,1,0,0,0,3098,3100,5,197,0,0,3099, - 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,24, - 0,0,3102,3103,3,280,140,0,3103,3104,5,14,0,0,3104,3105,3,280,140, - 0,3105,3181,1,0,0,0,3106,3108,5,197,0,0,3107,3106,1,0,0,0,3107,3108, - 1,0,0,0,3108,3109,1,0,0,0,3109,3110,5,140,0,0,3110,3111,5,2,0,0, - 3111,3116,3,268,134,0,3112,3113,5,4,0,0,3113,3115,3,268,134,0,3114, - 3112,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3116,3117,1,0,0, - 0,3117,3119,1,0,0,0,3118,3116,1,0,0,0,3119,3120,5,3,0,0,3120,3181, - 1,0,0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, - 3123,3124,1,0,0,0,3124,3125,5,140,0,0,3125,3126,5,2,0,0,3126,3127, - 3,26,13,0,3127,3128,5,3,0,0,3128,3181,1,0,0,0,3129,3131,5,197,0, - 0,3130,3129,1,0,0,0,3130,3131,1,0,0,0,3131,3132,1,0,0,0,3132,3133, - 7,27,0,0,3133,3181,3,280,140,0,3134,3136,5,197,0,0,3135,3134,1,0, - 0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,7,28,0,0,3138, - 3152,7,29,0,0,3139,3140,5,2,0,0,3140,3153,5,3,0,0,3141,3142,5,2, - 0,0,3142,3147,3,268,134,0,3143,3144,5,4,0,0,3144,3146,3,268,134, - 0,3145,3143,1,0,0,0,3146,3149,1,0,0,0,3147,3145,1,0,0,0,3147,3148, - 1,0,0,0,3148,3150,1,0,0,0,3149,3147,1,0,0,0,3150,3151,5,3,0,0,3151, - 3153,1,0,0,0,3152,3139,1,0,0,0,3152,3141,1,0,0,0,3153,3181,1,0,0, - 0,3154,3156,5,197,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3157, - 1,0,0,0,3157,3158,7,28,0,0,3158,3161,3,280,140,0,3159,3160,5,100, - 0,0,3160,3162,3,388,194,0,3161,3159,1,0,0,0,3161,3162,1,0,0,0,3162, - 3181,1,0,0,0,3163,3165,5,153,0,0,3164,3166,5,197,0,0,3165,3164,1, - 0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3181,5,198,0,0,3168, - 3170,5,153,0,0,3169,3171,5,197,0,0,3170,3169,1,0,0,0,3170,3171,1, - 0,0,0,3171,3172,1,0,0,0,3172,3181,7,30,0,0,3173,3175,5,153,0,0,3174, - 3176,5,197,0,0,3175,3174,1,0,0,0,3175,3176,1,0,0,0,3176,3177,1,0, - 0,0,3177,3178,5,92,0,0,3178,3179,5,123,0,0,3179,3181,3,280,140,0, - 3180,3099,1,0,0,0,3180,3107,1,0,0,0,3180,3122,1,0,0,0,3180,3130, - 1,0,0,0,3180,3135,1,0,0,0,3180,3155,1,0,0,0,3180,3163,1,0,0,0,3180, - 3168,1,0,0,0,3180,3173,1,0,0,0,3181,279,1,0,0,0,3182,3183,6,140, - -1,0,3183,3187,3,284,142,0,3184,3185,7,31,0,0,3185,3187,3,280,140, - 7,3186,3182,1,0,0,0,3186,3184,1,0,0,0,3187,3209,1,0,0,0,3188,3189, - 10,6,0,0,3189,3190,7,32,0,0,3190,3208,3,280,140,7,3191,3192,10,5, - 0,0,3192,3193,7,33,0,0,3193,3208,3,280,140,6,3194,3195,10,4,0,0, - 3195,3196,5,367,0,0,3196,3208,3,280,140,5,3197,3198,10,3,0,0,3198, - 3199,5,370,0,0,3199,3208,3,280,140,4,3200,3201,10,2,0,0,3201,3202, - 5,368,0,0,3202,3208,3,280,140,3,3203,3204,10,1,0,0,3204,3205,3,290, - 145,0,3205,3206,3,280,140,2,3206,3208,1,0,0,0,3207,3188,1,0,0,0, - 3207,3191,1,0,0,0,3207,3194,1,0,0,0,3207,3197,1,0,0,0,3207,3200, - 1,0,0,0,3207,3203,1,0,0,0,3208,3211,1,0,0,0,3209,3207,1,0,0,0,3209, - 3210,1,0,0,0,3210,281,1,0,0,0,3211,3209,1,0,0,0,3212,3213,7,34,0, - 0,3213,283,1,0,0,0,3214,3215,6,142,-1,0,3215,3464,7,35,0,0,3216, - 3217,7,36,0,0,3217,3220,5,2,0,0,3218,3221,3,282,141,0,3219,3221, - 3,388,194,0,3220,3218,1,0,0,0,3220,3219,1,0,0,0,3221,3222,1,0,0, - 0,3222,3223,5,4,0,0,3223,3224,3,280,140,0,3224,3225,5,4,0,0,3225, - 3226,3,280,140,0,3226,3227,5,3,0,0,3227,3464,1,0,0,0,3228,3229,7, - 37,0,0,3229,3232,5,2,0,0,3230,3233,3,282,141,0,3231,3233,3,388,194, - 0,3232,3230,1,0,0,0,3232,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235, - 5,4,0,0,3235,3236,3,280,140,0,3236,3237,5,4,0,0,3237,3238,3,280, - 140,0,3238,3239,5,3,0,0,3239,3464,1,0,0,0,3240,3242,5,35,0,0,3241, - 3243,3,350,175,0,3242,3241,1,0,0,0,3243,3244,1,0,0,0,3244,3242,1, - 0,0,0,3244,3245,1,0,0,0,3245,3248,1,0,0,0,3246,3247,5,97,0,0,3247, - 3249,3,268,134,0,3248,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1, - 0,0,0,3250,3251,5,99,0,0,3251,3464,1,0,0,0,3252,3253,5,35,0,0,3253, - 3255,3,268,134,0,3254,3256,3,350,175,0,3255,3254,1,0,0,0,3256,3257, - 1,0,0,0,3257,3255,1,0,0,0,3257,3258,1,0,0,0,3258,3261,1,0,0,0,3259, - 3260,5,97,0,0,3260,3262,3,268,134,0,3261,3259,1,0,0,0,3261,3262, - 1,0,0,0,3262,3263,1,0,0,0,3263,3264,5,99,0,0,3264,3464,1,0,0,0,3265, - 3266,7,38,0,0,3266,3267,5,2,0,0,3267,3268,3,268,134,0,3268,3269, - 5,20,0,0,3269,3270,3,318,159,0,3270,3271,5,3,0,0,3271,3464,1,0,0, - 0,3272,3273,5,286,0,0,3273,3282,5,2,0,0,3274,3279,3,256,128,0,3275, - 3276,5,4,0,0,3276,3278,3,256,128,0,3277,3275,1,0,0,0,3278,3281,1, - 0,0,0,3279,3277,1,0,0,0,3279,3280,1,0,0,0,3280,3283,1,0,0,0,3281, - 3279,1,0,0,0,3282,3274,1,0,0,0,3282,3283,1,0,0,0,3283,3284,1,0,0, - 0,3284,3464,5,3,0,0,3285,3286,5,116,0,0,3286,3287,5,2,0,0,3287,3290, - 3,268,134,0,3288,3289,5,138,0,0,3289,3291,5,199,0,0,3290,3288,1, - 0,0,0,3290,3291,1,0,0,0,3291,3292,1,0,0,0,3292,3293,5,3,0,0,3293, - 3464,1,0,0,0,3294,3295,5,17,0,0,3295,3296,5,2,0,0,3296,3299,3,268, - 134,0,3297,3298,5,138,0,0,3298,3300,5,199,0,0,3299,3297,1,0,0,0, - 3299,3300,1,0,0,0,3300,3301,1,0,0,0,3301,3302,5,3,0,0,3302,3464, - 1,0,0,0,3303,3304,5,157,0,0,3304,3305,5,2,0,0,3305,3308,3,268,134, - 0,3306,3307,5,138,0,0,3307,3309,5,199,0,0,3308,3306,1,0,0,0,3308, - 3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,3,0,0,3311,3464,1,0,0, - 0,3312,3313,5,225,0,0,3313,3314,5,2,0,0,3314,3315,3,280,140,0,3315, - 3316,5,140,0,0,3316,3317,3,280,140,0,3317,3318,5,3,0,0,3318,3464, - 1,0,0,0,3319,3464,3,288,144,0,3320,3464,5,363,0,0,3321,3322,3,370, - 185,0,3322,3323,5,5,0,0,3323,3324,5,363,0,0,3324,3464,1,0,0,0,3325, - 3326,5,2,0,0,3326,3329,3,256,128,0,3327,3328,5,4,0,0,3328,3330,3, - 256,128,0,3329,3327,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0, - 3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3334,5,3,0,0,3334,3464, - 1,0,0,0,3335,3336,5,2,0,0,3336,3337,3,26,13,0,3337,3338,5,3,0,0, - 3338,3464,1,0,0,0,3339,3340,5,136,0,0,3340,3341,5,2,0,0,3341,3342, - 3,268,134,0,3342,3343,5,3,0,0,3343,3464,1,0,0,0,3344,3345,3,366, - 183,0,3345,3357,5,2,0,0,3346,3348,3,196,98,0,3347,3346,1,0,0,0,3347, - 3348,1,0,0,0,3348,3349,1,0,0,0,3349,3354,3,272,136,0,3350,3351,5, - 4,0,0,3351,3353,3,272,136,0,3352,3350,1,0,0,0,3353,3356,1,0,0,0, - 3354,3352,1,0,0,0,3354,3355,1,0,0,0,3355,3358,1,0,0,0,3356,3354, - 1,0,0,0,3357,3347,1,0,0,0,3357,3358,1,0,0,0,3358,3359,1,0,0,0,3359, - 3366,5,3,0,0,3360,3361,5,114,0,0,3361,3362,5,2,0,0,3362,3363,5,344, - 0,0,3363,3364,3,276,138,0,3364,3365,5,3,0,0,3365,3367,1,0,0,0,3366, - 3360,1,0,0,0,3366,3367,1,0,0,0,3367,3370,1,0,0,0,3368,3369,7,39, - 0,0,3369,3371,5,199,0,0,3370,3368,1,0,0,0,3370,3371,1,0,0,0,3371, - 3374,1,0,0,0,3372,3373,5,213,0,0,3373,3375,3,358,179,0,3374,3372, - 1,0,0,0,3374,3375,1,0,0,0,3375,3464,1,0,0,0,3376,3377,3,376,188, - 0,3377,3378,5,372,0,0,3378,3379,3,268,134,0,3379,3464,1,0,0,0,3380, - 3381,5,2,0,0,3381,3384,3,376,188,0,3382,3383,5,4,0,0,3383,3385,3, - 376,188,0,3384,3382,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, - 3386,3387,1,0,0,0,3387,3388,1,0,0,0,3388,3389,5,3,0,0,3389,3390, - 5,372,0,0,3390,3391,3,268,134,0,3391,3464,1,0,0,0,3392,3464,3,376, - 188,0,3393,3394,5,2,0,0,3394,3395,3,268,134,0,3395,3396,5,3,0,0, - 3396,3464,1,0,0,0,3397,3398,5,110,0,0,3398,3399,5,2,0,0,3399,3400, - 3,376,188,0,3400,3401,5,123,0,0,3401,3402,3,280,140,0,3402,3403, - 5,3,0,0,3403,3464,1,0,0,0,3404,3405,7,40,0,0,3405,3406,5,2,0,0,3406, - 3407,3,280,140,0,3407,3408,7,41,0,0,3408,3411,3,280,140,0,3409,3410, - 7,42,0,0,3410,3412,3,280,140,0,3411,3409,1,0,0,0,3411,3412,1,0,0, - 0,3412,3413,1,0,0,0,3413,3414,5,3,0,0,3414,3464,1,0,0,0,3415,3416, - 5,315,0,0,3416,3418,5,2,0,0,3417,3419,7,43,0,0,3418,3417,1,0,0,0, - 3418,3419,1,0,0,0,3419,3421,1,0,0,0,3420,3422,3,280,140,0,3421,3420, - 1,0,0,0,3421,3422,1,0,0,0,3422,3423,1,0,0,0,3423,3424,5,123,0,0, - 3424,3425,3,280,140,0,3425,3426,5,3,0,0,3426,3464,1,0,0,0,3427,3428, - 5,215,0,0,3428,3429,5,2,0,0,3429,3430,3,280,140,0,3430,3431,5,224, - 0,0,3431,3432,3,280,140,0,3432,3433,5,123,0,0,3433,3436,3,280,140, - 0,3434,3435,5,119,0,0,3435,3437,3,280,140,0,3436,3434,1,0,0,0,3436, - 3437,1,0,0,0,3437,3438,1,0,0,0,3438,3439,5,3,0,0,3439,3464,1,0,0, - 0,3440,3441,7,44,0,0,3441,3442,5,2,0,0,3442,3443,3,280,140,0,3443, - 3444,5,3,0,0,3444,3445,5,347,0,0,3445,3446,5,130,0,0,3446,3447,5, - 2,0,0,3447,3448,5,209,0,0,3448,3449,5,31,0,0,3449,3450,3,108,54, - 0,3450,3457,5,3,0,0,3451,3452,5,114,0,0,3452,3453,5,2,0,0,3453,3454, - 5,344,0,0,3454,3455,3,276,138,0,3455,3456,5,3,0,0,3456,3458,1,0, - 0,0,3457,3451,1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3460, - 5,213,0,0,3460,3462,3,358,179,0,3461,3459,1,0,0,0,3461,3462,1,0, - 0,0,3462,3464,1,0,0,0,3463,3214,1,0,0,0,3463,3216,1,0,0,0,3463,3228, - 1,0,0,0,3463,3240,1,0,0,0,3463,3252,1,0,0,0,3463,3265,1,0,0,0,3463, - 3272,1,0,0,0,3463,3285,1,0,0,0,3463,3294,1,0,0,0,3463,3303,1,0,0, - 0,3463,3312,1,0,0,0,3463,3319,1,0,0,0,3463,3320,1,0,0,0,3463,3321, - 1,0,0,0,3463,3325,1,0,0,0,3463,3335,1,0,0,0,3463,3339,1,0,0,0,3463, - 3344,1,0,0,0,3463,3376,1,0,0,0,3463,3380,1,0,0,0,3463,3392,1,0,0, - 0,3463,3393,1,0,0,0,3463,3397,1,0,0,0,3463,3404,1,0,0,0,3463,3415, - 1,0,0,0,3463,3427,1,0,0,0,3463,3440,1,0,0,0,3464,3475,1,0,0,0,3465, - 3466,10,9,0,0,3466,3467,5,6,0,0,3467,3468,3,280,140,0,3468,3469, - 5,7,0,0,3469,3474,1,0,0,0,3470,3471,10,7,0,0,3471,3472,5,5,0,0,3472, - 3474,3,376,188,0,3473,3465,1,0,0,0,3473,3470,1,0,0,0,3474,3477,1, - 0,0,0,3475,3473,1,0,0,0,3475,3476,1,0,0,0,3476,285,1,0,0,0,3477, - 3475,1,0,0,0,3478,3486,5,71,0,0,3479,3486,5,303,0,0,3480,3486,5, - 304,0,0,3481,3486,5,305,0,0,3482,3486,5,149,0,0,3483,3486,5,133, - 0,0,3484,3486,3,376,188,0,3485,3478,1,0,0,0,3485,3479,1,0,0,0,3485, - 3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485,3483,1,0,0, - 0,3485,3484,1,0,0,0,3486,287,1,0,0,0,3487,3503,5,198,0,0,3488,3503, - 5,376,0,0,3489,3490,5,371,0,0,3490,3503,3,376,188,0,3491,3503,3, - 298,149,0,3492,3493,3,286,143,0,3493,3494,3,388,194,0,3494,3503, - 1,0,0,0,3495,3503,3,384,192,0,3496,3503,3,296,148,0,3497,3499,3, - 388,194,0,3498,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3498,1,0,0,0, - 3500,3501,1,0,0,0,3501,3503,1,0,0,0,3502,3487,1,0,0,0,3502,3488, - 1,0,0,0,3502,3489,1,0,0,0,3502,3491,1,0,0,0,3502,3492,1,0,0,0,3502, - 3495,1,0,0,0,3502,3496,1,0,0,0,3502,3498,1,0,0,0,3503,289,1,0,0, - 0,3504,3505,7,45,0,0,3505,291,1,0,0,0,3506,3507,7,46,0,0,3507,293, - 1,0,0,0,3508,3509,7,47,0,0,3509,295,1,0,0,0,3510,3511,7,48,0,0,3511, - 297,1,0,0,0,3512,3515,5,149,0,0,3513,3516,3,300,150,0,3514,3516, - 3,304,152,0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,299,1,0,0,0, - 3517,3519,3,302,151,0,3518,3520,3,306,153,0,3519,3518,1,0,0,0,3519, - 3520,1,0,0,0,3520,301,1,0,0,0,3521,3522,3,308,154,0,3522,3523,3, - 310,155,0,3523,3525,1,0,0,0,3524,3521,1,0,0,0,3525,3526,1,0,0,0, - 3526,3524,1,0,0,0,3526,3527,1,0,0,0,3527,303,1,0,0,0,3528,3531,3, - 306,153,0,3529,3532,3,302,151,0,3530,3532,3,306,153,0,3531,3529, - 1,0,0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,305,1,0,0,0,3533, - 3534,3,308,154,0,3534,3535,3,312,156,0,3535,3536,5,309,0,0,3536, - 3537,3,312,156,0,3537,307,1,0,0,0,3538,3540,7,49,0,0,3539,3538,1, - 0,0,0,3539,3540,1,0,0,0,3540,3544,1,0,0,0,3541,3545,5,382,0,0,3542, - 3545,5,384,0,0,3543,3545,3,388,194,0,3544,3541,1,0,0,0,3544,3542, - 1,0,0,0,3544,3543,1,0,0,0,3545,309,1,0,0,0,3546,3547,7,50,0,0,3547, - 311,1,0,0,0,3548,3549,7,51,0,0,3549,313,1,0,0,0,3550,3554,5,116, - 0,0,3551,3552,5,9,0,0,3552,3554,3,372,186,0,3553,3550,1,0,0,0,3553, - 3551,1,0,0,0,3554,315,1,0,0,0,3555,3586,5,27,0,0,3556,3586,5,308, - 0,0,3557,3586,5,32,0,0,3558,3586,5,276,0,0,3559,3586,5,272,0,0,3560, - 3586,5,150,0,0,3561,3586,5,151,0,0,3562,3586,5,25,0,0,3563,3586, - 5,174,0,0,3564,3586,5,117,0,0,3565,3586,5,234,0,0,3566,3586,5,95, - 0,0,3567,3586,5,71,0,0,3568,3586,5,303,0,0,3569,3586,5,305,0,0,3570, - 3586,5,304,0,0,3571,3586,5,285,0,0,3572,3586,5,41,0,0,3573,3586, - 5,40,0,0,3574,3586,5,334,0,0,3575,3586,5,26,0,0,3576,3586,5,80,0, - 0,3577,3586,5,79,0,0,3578,3586,5,200,0,0,3579,3586,5,340,0,0,3580, - 3586,5,149,0,0,3581,3586,5,19,0,0,3582,3586,5,286,0,0,3583,3586, - 5,177,0,0,3584,3586,3,376,188,0,3585,3555,1,0,0,0,3585,3556,1,0, - 0,0,3585,3557,1,0,0,0,3585,3558,1,0,0,0,3585,3559,1,0,0,0,3585,3560, - 1,0,0,0,3585,3561,1,0,0,0,3585,3562,1,0,0,0,3585,3563,1,0,0,0,3585, - 3564,1,0,0,0,3585,3565,1,0,0,0,3585,3566,1,0,0,0,3585,3567,1,0,0, - 0,3585,3568,1,0,0,0,3585,3569,1,0,0,0,3585,3570,1,0,0,0,3585,3571, - 1,0,0,0,3585,3572,1,0,0,0,3585,3573,1,0,0,0,3585,3574,1,0,0,0,3585, - 3575,1,0,0,0,3585,3576,1,0,0,0,3585,3577,1,0,0,0,3585,3578,1,0,0, - 0,3585,3579,1,0,0,0,3585,3580,1,0,0,0,3585,3581,1,0,0,0,3585,3582, - 1,0,0,0,3585,3583,1,0,0,0,3585,3584,1,0,0,0,3586,317,1,0,0,0,3587, - 3588,5,19,0,0,3588,3589,5,356,0,0,3589,3590,3,318,159,0,3590,3591, - 5,358,0,0,3591,3634,1,0,0,0,3592,3593,5,177,0,0,3593,3594,5,356, - 0,0,3594,3595,3,318,159,0,3595,3596,5,4,0,0,3596,3597,3,318,159, - 0,3597,3598,5,358,0,0,3598,3634,1,0,0,0,3599,3606,5,286,0,0,3600, - 3602,5,356,0,0,3601,3603,3,346,173,0,3602,3601,1,0,0,0,3602,3603, - 1,0,0,0,3603,3604,1,0,0,0,3604,3607,5,358,0,0,3605,3607,5,354,0, - 0,3606,3600,1,0,0,0,3606,3605,1,0,0,0,3607,3634,1,0,0,0,3608,3609, - 5,149,0,0,3609,3612,7,52,0,0,3610,3611,5,309,0,0,3611,3613,5,186, - 0,0,3612,3610,1,0,0,0,3612,3613,1,0,0,0,3613,3634,1,0,0,0,3614,3615, - 5,149,0,0,3615,3618,7,53,0,0,3616,3617,5,309,0,0,3617,3619,7,54, - 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3634,1,0,0,0,3620,3631, - 3,316,158,0,3621,3622,5,2,0,0,3622,3627,5,382,0,0,3623,3624,5,4, - 0,0,3624,3626,5,382,0,0,3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627, - 3625,1,0,0,0,3627,3628,1,0,0,0,3628,3630,1,0,0,0,3629,3627,1,0,0, - 0,3630,3632,5,3,0,0,3631,3621,1,0,0,0,3631,3632,1,0,0,0,3632,3634, - 1,0,0,0,3633,3587,1,0,0,0,3633,3592,1,0,0,0,3633,3599,1,0,0,0,3633, - 3608,1,0,0,0,3633,3614,1,0,0,0,3633,3620,1,0,0,0,3634,319,1,0,0, - 0,3635,3640,3,322,161,0,3636,3637,5,4,0,0,3637,3639,3,322,161,0, - 3638,3636,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,321,1,0,0,0,3642,3640,1,0,0,0,3643,3644,3,96,48,0,3644, - 3648,3,318,159,0,3645,3647,3,328,164,0,3646,3645,1,0,0,0,3647,3650, - 1,0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,323,1,0,0,0,3650, - 3648,1,0,0,0,3651,3656,3,326,163,0,3652,3653,5,4,0,0,3653,3655,3, - 326,163,0,3654,3652,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0,0, - 3656,3657,1,0,0,0,3657,325,1,0,0,0,3658,3656,1,0,0,0,3659,3660,3, - 92,46,0,3660,3664,3,318,159,0,3661,3663,3,328,164,0,3662,3661,1, - 0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3664,3665,1,0,0,0,3665, - 327,1,0,0,0,3666,3664,1,0,0,0,3667,3668,5,197,0,0,3668,3673,5,198, - 0,0,3669,3673,3,330,165,0,3670,3673,3,24,12,0,3671,3673,3,314,157, - 0,3672,3667,1,0,0,0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671, - 1,0,0,0,3673,329,1,0,0,0,3674,3675,5,82,0,0,3675,3676,3,268,134, - 0,3676,331,1,0,0,0,3677,3678,7,55,0,0,3678,3679,3,268,134,0,3679, - 333,1,0,0,0,3680,3685,3,336,168,0,3681,3682,5,4,0,0,3682,3684,3, - 336,168,0,3683,3681,1,0,0,0,3684,3687,1,0,0,0,3685,3683,1,0,0,0, - 3685,3686,1,0,0,0,3686,335,1,0,0,0,3687,3685,1,0,0,0,3688,3689,3, - 372,186,0,3689,3692,3,318,159,0,3690,3691,5,197,0,0,3691,3693,5, - 198,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694, - 3696,3,24,12,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,337,1,0, - 0,0,3697,3702,3,340,170,0,3698,3699,5,4,0,0,3699,3701,3,340,170, - 0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, - 1,0,0,0,3703,339,1,0,0,0,3704,3702,1,0,0,0,3705,3706,3,96,48,0,3706, - 3710,3,318,159,0,3707,3709,3,342,171,0,3708,3707,1,0,0,0,3709,3712, - 1,0,0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,341,1,0,0,0,3712, - 3710,1,0,0,0,3713,3714,5,197,0,0,3714,3719,5,198,0,0,3715,3719,3, - 330,165,0,3716,3719,3,344,172,0,3717,3719,3,24,12,0,3718,3713,1, - 0,0,0,3718,3715,1,0,0,0,3718,3716,1,0,0,0,3718,3717,1,0,0,0,3719, - 343,1,0,0,0,3720,3721,5,127,0,0,3721,3722,5,12,0,0,3722,3723,5,20, - 0,0,3723,3724,5,2,0,0,3724,3725,3,268,134,0,3725,3726,5,3,0,0,3726, - 345,1,0,0,0,3727,3732,3,348,174,0,3728,3729,5,4,0,0,3729,3731,3, - 348,174,0,3730,3728,1,0,0,0,3731,3734,1,0,0,0,3732,3730,1,0,0,0, - 3732,3733,1,0,0,0,3733,347,1,0,0,0,3734,3732,1,0,0,0,3735,3737,3, - 376,188,0,3736,3738,5,371,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0, - 0,3738,3739,1,0,0,0,3739,3742,3,318,159,0,3740,3741,5,197,0,0,3741, - 3743,5,198,0,0,3742,3740,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0, - 0,0,3744,3746,3,24,12,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746, - 349,1,0,0,0,3747,3748,5,343,0,0,3748,3749,3,268,134,0,3749,3750, - 5,300,0,0,3750,3751,3,268,134,0,3751,351,1,0,0,0,3752,3753,5,345, - 0,0,3753,3758,3,356,178,0,3754,3755,5,4,0,0,3755,3757,3,356,178, - 0,3756,3754,1,0,0,0,3757,3760,1,0,0,0,3758,3756,1,0,0,0,3758,3759, - 1,0,0,0,3759,353,1,0,0,0,3760,3758,1,0,0,0,3761,3762,5,351,0,0,3762, - 3763,5,31,0,0,3763,3764,3,94,47,0,3764,355,1,0,0,0,3765,3766,3,372, - 186,0,3766,3767,5,20,0,0,3767,3768,3,358,179,0,3768,357,1,0,0,0, - 3769,3816,3,372,186,0,3770,3771,5,2,0,0,3771,3772,3,372,186,0,3772, - 3773,5,3,0,0,3773,3816,1,0,0,0,3774,3809,5,2,0,0,3775,3776,5,44, - 0,0,3776,3777,5,31,0,0,3777,3782,3,268,134,0,3778,3779,5,4,0,0,3779, - 3781,3,268,134,0,3780,3778,1,0,0,0,3781,3784,1,0,0,0,3782,3780,1, - 0,0,0,3782,3783,1,0,0,0,3783,3810,1,0,0,0,3784,3782,1,0,0,0,3785, - 3786,7,24,0,0,3786,3787,5,31,0,0,3787,3792,3,268,134,0,3788,3789, - 5,4,0,0,3789,3791,3,268,134,0,3790,3788,1,0,0,0,3791,3794,1,0,0, - 0,3792,3790,1,0,0,0,3792,3793,1,0,0,0,3793,3796,1,0,0,0,3794,3792, - 1,0,0,0,3795,3785,1,0,0,0,3795,3796,1,0,0,0,3796,3807,1,0,0,0,3797, - 3798,7,25,0,0,3798,3799,5,31,0,0,3799,3804,3,108,54,0,3800,3801, - 5,4,0,0,3801,3803,3,108,54,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0, - 3804,3802,1,0,0,0,3804,3805,1,0,0,0,3805,3808,1,0,0,0,3806,3804, - 1,0,0,0,3807,3797,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809, - 3775,1,0,0,0,3809,3795,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,360, - 180,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0,0,3814, - 3816,5,3,0,0,3815,3769,1,0,0,0,3815,3770,1,0,0,0,3815,3774,1,0,0, - 0,3816,359,1,0,0,0,3817,3818,5,233,0,0,3818,3834,3,362,181,0,3819, - 3820,5,258,0,0,3820,3834,3,362,181,0,3821,3822,5,233,0,0,3822,3823, - 5,24,0,0,3823,3824,3,362,181,0,3824,3825,5,14,0,0,3825,3826,3,362, - 181,0,3826,3834,1,0,0,0,3827,3828,5,258,0,0,3828,3829,5,24,0,0,3829, - 3830,3,362,181,0,3830,3831,5,14,0,0,3831,3832,3,362,181,0,3832,3834, - 1,0,0,0,3833,3817,1,0,0,0,3833,3819,1,0,0,0,3833,3821,1,0,0,0,3833, - 3827,1,0,0,0,3834,361,1,0,0,0,3835,3836,5,321,0,0,3836,3843,7,56, - 0,0,3837,3838,5,62,0,0,3838,3843,5,257,0,0,3839,3840,3,268,134,0, - 3840,3841,7,56,0,0,3841,3843,1,0,0,0,3842,3835,1,0,0,0,3842,3837, - 1,0,0,0,3842,3839,1,0,0,0,3843,363,1,0,0,0,3844,3849,3,370,185,0, - 3845,3846,5,4,0,0,3846,3848,3,370,185,0,3847,3845,1,0,0,0,3848,3851, - 1,0,0,0,3849,3847,1,0,0,0,3849,3850,1,0,0,0,3850,365,1,0,0,0,3851, - 3849,1,0,0,0,3852,3853,5,136,0,0,3853,3854,5,2,0,0,3854,3855,3,268, - 134,0,3855,3856,5,3,0,0,3856,3862,1,0,0,0,3857,3862,3,370,185,0, - 3858,3862,5,114,0,0,3859,3862,5,161,0,0,3860,3862,5,250,0,0,3861, - 3852,1,0,0,0,3861,3857,1,0,0,0,3861,3858,1,0,0,0,3861,3859,1,0,0, - 0,3861,3860,1,0,0,0,3862,367,1,0,0,0,3863,3864,3,370,185,0,3864, - 369,1,0,0,0,3865,3870,3,376,188,0,3866,3867,5,5,0,0,3867,3869,3, - 376,188,0,3868,3866,1,0,0,0,3869,3872,1,0,0,0,3870,3868,1,0,0,0, - 3870,3871,1,0,0,0,3871,371,1,0,0,0,3872,3870,1,0,0,0,3873,3874,3, - 376,188,0,3874,3875,3,374,187,0,3875,373,1,0,0,0,3876,3877,5,362, - 0,0,3877,3879,3,376,188,0,3878,3876,1,0,0,0,3879,3880,1,0,0,0,3880, - 3878,1,0,0,0,3880,3881,1,0,0,0,3881,3884,1,0,0,0,3882,3884,1,0,0, - 0,3883,3878,1,0,0,0,3883,3882,1,0,0,0,3884,375,1,0,0,0,3885,3888, - 3,378,189,0,3886,3888,3,396,198,0,3887,3885,1,0,0,0,3887,3886,1, - 0,0,0,3888,377,1,0,0,0,3889,3894,5,388,0,0,3890,3894,3,380,190,0, - 3891,3894,3,394,197,0,3892,3894,3,398,199,0,3893,3889,1,0,0,0,3893, - 3890,1,0,0,0,3893,3891,1,0,0,0,3893,3892,1,0,0,0,3894,379,1,0,0, - 0,3895,3896,7,57,0,0,3896,381,1,0,0,0,3897,3898,5,389,0,0,3898,383, - 1,0,0,0,3899,3901,5,362,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,3902,1,0,0,0,3902,3940,5,383,0,0,3903,3905,5,362,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3940,5,384,0,0, - 3907,3909,5,362,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910, - 1,0,0,0,3910,3940,7,58,0,0,3911,3913,5,362,0,0,3912,3911,1,0,0,0, - 3912,3913,1,0,0,0,3913,3914,1,0,0,0,3914,3940,5,382,0,0,3915,3917, - 5,362,0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0, - 3918,3940,5,379,0,0,3919,3921,5,362,0,0,3920,3919,1,0,0,0,3920,3921, - 1,0,0,0,3921,3922,1,0,0,0,3922,3940,5,380,0,0,3923,3925,5,362,0, - 0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3940, - 5,381,0,0,3927,3929,5,362,0,0,3928,3927,1,0,0,0,3928,3929,1,0,0, - 0,3929,3930,1,0,0,0,3930,3940,5,386,0,0,3931,3933,5,362,0,0,3932, - 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3940,5,385, - 0,0,3935,3937,5,362,0,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0,3937, - 3938,1,0,0,0,3938,3940,5,387,0,0,3939,3900,1,0,0,0,3939,3904,1,0, - 0,0,3939,3908,1,0,0,0,3939,3912,1,0,0,0,3939,3916,1,0,0,0,3939,3920, - 1,0,0,0,3939,3924,1,0,0,0,3939,3928,1,0,0,0,3939,3932,1,0,0,0,3939, - 3936,1,0,0,0,3940,385,1,0,0,0,3941,3942,5,319,0,0,3942,3953,3,318, - 159,0,3943,3953,3,24,12,0,3944,3953,3,314,157,0,3945,3946,7,59,0, - 0,3946,3947,5,197,0,0,3947,3953,5,198,0,0,3948,3949,5,269,0,0,3949, - 3953,3,330,165,0,3950,3951,5,96,0,0,3951,3953,5,82,0,0,3952,3941, - 1,0,0,0,3952,3943,1,0,0,0,3952,3944,1,0,0,0,3952,3945,1,0,0,0,3952, - 3948,1,0,0,0,3952,3950,1,0,0,0,3953,387,1,0,0,0,3954,3955,7,60,0, - 0,3955,389,1,0,0,0,3956,3959,3,388,194,0,3957,3959,5,198,0,0,3958, - 3956,1,0,0,0,3958,3957,1,0,0,0,3959,391,1,0,0,0,3960,3963,5,382, - 0,0,3961,3963,3,388,194,0,3962,3960,1,0,0,0,3962,3961,1,0,0,0,3963, - 393,1,0,0,0,3964,3965,7,61,0,0,3965,395,1,0,0,0,3966,3967,7,62,0, - 0,3967,397,1,0,0,0,3968,3969,7,63,0,0,3969,399,1,0,0,0,517,403,410, - 414,419,426,431,439,441,460,464,470,473,476,483,486,490,493,498, - 510,512,520,523,527,530,536,547,553,558,591,601,612,623,634,639, - 648,652,658,662,667,673,685,693,699,710,714,719,734,738,745,749, - 755,784,788,793,800,806,809,812,816,820,828,830,839,842,851,856, - 862,869,872,876,887,890,896,900,915,917,925,929,935,938,942,945, - 951,956,960,967,970,973,980,985,994,1002,1008,1011,1014,1020,1024, - 1029,1032,1036,1038,1046,1054,1057,1064,1067,1070,1079,1084,1090, - 1095,1098,1102,1105,1109,1137,1140,1148,1154,1157,1160,1165,1173, - 1178,1184,1190,1193,1200,1207,1215,1232,1259,1262,1268,1277,1286, - 1292,1297,1302,1309,1314,1319,1326,1334,1337,1341,1353,1357,1364, - 1480,1488,1496,1505,1515,1519,1522,1526,1532,1544,1556,1561,1570, - 1578,1583,1585,1593,1598,1602,1605,1613,1618,1627,1632,1635,1640, - 1644,1649,1651,1655,1664,1672,1678,1689,1696,1705,1710,1713,1736, - 1738,1750,1757,1760,1767,1771,1777,1785,1792,1795,1803,1814,1825, - 1833,1839,1851,1858,1865,1877,1885,1891,1897,1900,1916,1923,1934, - 1943,1946,1955,1958,1967,1970,1979,1982,1985,1990,1992,1996,2007, - 2013,2019,2022,2024,2036,2040,2043,2047,2053,2057,2065,2069,2072, - 2075,2078,2082,2086,2091,2095,2098,2101,2104,2108,2113,2117,2120, - 2123,2126,2128,2134,2141,2146,2149,2152,2156,2166,2170,2172,2175, - 2179,2185,2189,2200,2210,2214,2226,2238,2253,2258,2264,2271,2287, - 2292,2305,2310,2318,2324,2328,2331,2336,2343,2349,2358,2368,2383, - 2388,2390,2395,2404,2417,2422,2426,2433,2438,2442,2445,2448,2462, - 2475,2480,2484,2487,2491,2497,2500,2507,2519,2530,2543,2554,2559, - 2567,2572,2586,2595,2598,2603,2610,2613,2619,2625,2628,2633,2638, - 2642,2648,2652,2655,2660,2663,2668,2672,2675,2678,2684,2689,2696, - 2699,2717,2719,2722,2733,2742,2749,2757,2764,2769,2772,2775,2783, - 2791,2797,2805,2813,2820,2827,2829,2842,2848,2850,2860,2866,2868, - 2876,2880,2889,2892,2898,2902,2904,2913,2925,2927,2934,2941,2947, - 2953,2955,2962,2970,2978,2984,2989,2996,3002,3005,3009,3011,3018, - 3027,3034,3044,3049,3053,3063,3070,3083,3085,3093,3095,3099,3107, - 3116,3122,3130,3135,3147,3152,3155,3161,3165,3170,3175,3180,3186, - 3207,3209,3220,3232,3244,3248,3257,3261,3279,3282,3290,3299,3308, - 3331,3347,3354,3357,3366,3370,3374,3386,3411,3418,3421,3436,3457, - 3461,3463,3473,3475,3485,3500,3502,3515,3519,3526,3531,3539,3544, - 3553,3585,3602,3606,3612,3618,3627,3631,3633,3640,3648,3656,3664, - 3672,3685,3692,3695,3702,3710,3718,3732,3737,3742,3745,3758,3782, - 3792,3795,3804,3807,3809,3812,3815,3833,3842,3849,3861,3870,3880, - 3883,3887,3893,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936, - 3939,3952,3958,3962 + 390,392,394,396,398,400,402,404,406,0,64,2,0,78,78,229,229,2,0,34, + 34,247,247,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5, + 0,46,46,58,58,108,108,122,122,173,173,1,0,86,87,2,0,108,108,122, + 122,3,0,8,8,96,96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72, + 190,190,261,261,3,0,73,73,191,191,262,262,4,0,102,102,148,148,270, + 270,323,323,3,0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116, + 116,157,157,3,0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291, + 291,303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92, + 2,0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197, + 197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0, + 111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2, + 0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182,182,184,184, + 186,186,231,231,259,259,341,341,348,348,4,0,63,63,65,66,268,268, + 331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318, + 318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119, + 119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94, + 361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111,316,316,1, + 0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341,342,348, + 349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2,0,186,186, + 348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134,184,184,259, + 259,2,0,82,82,352,352,2,0,118,118,226,226,2,0,378,378,389,389,1, + 0,383,384,2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13,15,15,17, + 19,21,22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62,67,91,93, + 96,98,98,101,101,103,110,113,113,115,118,121,122,125,128,131,131, + 133,139,141,143,145,147,149,151,154,154,156,157,159,159,163,193, + 195,195,199,201,205,207,210,210,212,213,215,219,222,226,228,238, + 240,249,251,262,264,267,269,276,278,292,294,299,302,308,310,310, + 312,322,326,330,333,342,345,345,348,351,16,0,15,15,60,60,102,102, + 124,124,144,144,148,148,155,155,158,158,161,161,194,194,203,203, + 250,250,264,264,270,270,323,323,332,332,19,0,8,14,16,59,61,101,103, + 122,125,143,145,147,149,154,156,157,159,160,162,193,195,195,197, + 202,204,249,251,262,265,269,271,292,294,322,324,331,333,351,4563, + 0,411,1,0,0,0,2,416,1,0,0,0,4,1345,1,0,0,0,6,1349,1,0,0,0,8,1351, + 1,0,0,0,10,1353,1,0,0,0,12,1523,1,0,0,0,14,1525,1,0,0,0,16,1540, + 1,0,0,0,18,1546,1,0,0,0,20,1558,1,0,0,0,22,1571,1,0,0,0,24,1574, + 1,0,0,0,26,1578,1,0,0,0,28,1659,1,0,0,0,30,1661,1,0,0,0,32,1665, + 1,0,0,0,34,1686,1,0,0,0,36,1688,1,0,0,0,38,1690,1,0,0,0,40,1697, + 1,0,0,0,42,1699,1,0,0,0,44,1707,1,0,0,0,46,1716,1,0,0,0,48,1727, + 1,0,0,0,50,1746,1,0,0,0,52,1749,1,0,0,0,54,1752,1,0,0,0,56,1763, + 1,0,0,0,58,1779,1,0,0,0,60,1785,1,0,0,0,62,1787,1,0,0,0,64,1798, + 1,0,0,0,66,1805,1,0,0,0,68,1816,1,0,0,0,70,1833,1,0,0,0,72,1841, + 1,0,0,0,74,1843,1,0,0,0,76,1849,1,0,0,0,78,1908,1,0,0,0,80,1910, + 1,0,0,0,82,1912,1,0,0,0,84,1914,1,0,0,0,86,1916,1,0,0,0,88,1918, + 1,0,0,0,90,1920,1,0,0,0,92,1924,1,0,0,0,94,1926,1,0,0,0,96,1928, + 1,0,0,0,98,1936,1,0,0,0,100,1944,1,0,0,0,102,1949,1,0,0,0,104,1976, + 1,0,0,0,106,1981,1,0,0,0,108,1989,1,0,0,0,110,1997,1,0,0,0,112,2000, + 1,0,0,0,114,2035,1,0,0,0,116,2039,1,0,0,0,118,2048,1,0,0,0,120,2081, + 1,0,0,0,122,2127,1,0,0,0,124,2148,1,0,0,0,126,2180,1,0,0,0,128,2192, + 1,0,0,0,130,2195,1,0,0,0,132,2204,1,0,0,0,134,2218,1,0,0,0,136,2237, + 1,0,0,0,138,2257,1,0,0,0,140,2263,1,0,0,0,142,2265,1,0,0,0,144,2273, + 1,0,0,0,146,2277,1,0,0,0,148,2280,1,0,0,0,150,2283,1,0,0,0,152,2309, + 1,0,0,0,154,2311,1,0,0,0,156,2332,1,0,0,0,158,2348,1,0,0,0,160,2389, + 1,0,0,0,162,2394,1,0,0,0,164,2421,1,0,0,0,166,2425,1,0,0,0,168,2447, + 1,0,0,0,170,2449,1,0,0,0,172,2479,1,0,0,0,174,2481,1,0,0,0,176,2488, + 1,0,0,0,178,2501,1,0,0,0,180,2506,1,0,0,0,182,2508,1,0,0,0,184,2523, + 1,0,0,0,186,2547,1,0,0,0,188,2560,1,0,0,0,190,2562,1,0,0,0,192,2564, + 1,0,0,0,194,2568,1,0,0,0,196,2571,1,0,0,0,198,2575,1,0,0,0,200,2579, + 1,0,0,0,202,2582,1,0,0,0,204,2614,1,0,0,0,206,2627,1,0,0,0,208,2632, + 1,0,0,0,210,2651,1,0,0,0,212,2677,1,0,0,0,214,2683,1,0,0,0,216,2685, + 1,0,0,0,218,2721,1,0,0,0,220,2723,1,0,0,0,222,2727,1,0,0,0,224,2735, + 1,0,0,0,226,2746,1,0,0,0,228,2750,1,0,0,0,230,2761,1,0,0,0,232,2796, + 1,0,0,0,234,2798,1,0,0,0,236,2828,1,0,0,0,238,2849,1,0,0,0,240,2862, + 1,0,0,0,242,2868,1,0,0,0,244,2872,1,0,0,0,246,2874,1,0,0,0,248,2896, + 1,0,0,0,250,2947,1,0,0,0,252,2949,1,0,0,0,254,2957,1,0,0,0,256,2965, + 1,0,0,0,258,2973,1,0,0,0,260,2981,1,0,0,0,262,2988,1,0,0,0,264,2994, + 1,0,0,0,266,3005,1,0,0,0,268,3013,1,0,0,0,270,3026,1,0,0,0,272,3041, + 1,0,0,0,274,3045,1,0,0,0,276,3047,1,0,0,0,278,3049,1,0,0,0,280,3055, + 1,0,0,0,282,3057,1,0,0,0,284,3077,1,0,0,0,286,3172,1,0,0,0,288,3178, + 1,0,0,0,290,3204,1,0,0,0,292,3455,1,0,0,0,294,3477,1,0,0,0,296,3494, + 1,0,0,0,298,3496,1,0,0,0,300,3498,1,0,0,0,302,3500,1,0,0,0,304,3502, + 1,0,0,0,306,3504,1,0,0,0,308,3509,1,0,0,0,310,3516,1,0,0,0,312,3520, + 1,0,0,0,314,3525,1,0,0,0,316,3531,1,0,0,0,318,3538,1,0,0,0,320,3540, + 1,0,0,0,322,3545,1,0,0,0,324,3577,1,0,0,0,326,3625,1,0,0,0,328,3627, + 1,0,0,0,330,3635,1,0,0,0,332,3643,1,0,0,0,334,3651,1,0,0,0,336,3664, + 1,0,0,0,338,3666,1,0,0,0,340,3669,1,0,0,0,342,3672,1,0,0,0,344,3680, + 1,0,0,0,346,3689,1,0,0,0,348,3697,1,0,0,0,350,3710,1,0,0,0,352,3712, + 1,0,0,0,354,3719,1,0,0,0,356,3727,1,0,0,0,358,3739,1,0,0,0,360,3744, + 1,0,0,0,362,3753,1,0,0,0,364,3757,1,0,0,0,366,3800,1,0,0,0,368,3818, + 1,0,0,0,370,3827,1,0,0,0,372,3829,1,0,0,0,374,3846,1,0,0,0,376,3848, + 1,0,0,0,378,3850,1,0,0,0,380,3858,1,0,0,0,382,3868,1,0,0,0,384,3872, + 1,0,0,0,386,3878,1,0,0,0,388,3880,1,0,0,0,390,3882,1,0,0,0,392,3924, + 1,0,0,0,394,3937,1,0,0,0,396,3939,1,0,0,0,398,3943,1,0,0,0,400,3947, + 1,0,0,0,402,3949,1,0,0,0,404,3951,1,0,0,0,406,3953,1,0,0,0,408,410, + 3,2,1,0,409,408,1,0,0,0,410,413,1,0,0,0,411,409,1,0,0,0,411,412, + 1,0,0,0,412,414,1,0,0,0,413,411,1,0,0,0,414,415,5,0,0,1,415,1,1, + 0,0,0,416,418,3,4,2,0,417,419,5,1,0,0,418,417,1,0,0,0,418,419,1, + 0,0,0,419,3,1,0,0,0,420,1346,3,26,13,0,421,423,3,44,22,0,422,421, + 1,0,0,0,422,423,1,0,0,0,423,424,1,0,0,0,424,1346,3,78,39,0,425,427, + 5,330,0,0,426,428,3,36,18,0,427,426,1,0,0,0,427,428,1,0,0,0,428, + 429,1,0,0,0,429,1346,3,80,40,0,430,431,5,269,0,0,431,434,5,37,0, + 0,432,435,3,384,192,0,433,435,3,396,198,0,434,432,1,0,0,0,434,433, + 1,0,0,0,435,1346,1,0,0,0,436,437,5,59,0,0,437,439,3,36,18,0,438, + 440,3,198,99,0,439,438,1,0,0,0,439,440,1,0,0,0,440,441,1,0,0,0,441, + 449,3,82,41,0,442,448,3,24,12,0,443,448,3,22,11,0,444,445,5,346, + 0,0,445,446,7,0,0,0,446,448,3,54,27,0,447,442,1,0,0,0,447,443,1, + 0,0,0,447,444,1,0,0,0,448,451,1,0,0,0,449,447,1,0,0,0,449,450,1, + 0,0,0,450,1346,1,0,0,0,451,449,1,0,0,0,452,453,5,11,0,0,453,454, + 3,36,18,0,454,455,3,80,40,0,455,456,5,269,0,0,456,457,7,0,0,0,457, + 458,3,54,27,0,458,1346,1,0,0,0,459,460,5,11,0,0,460,461,3,36,18, + 0,461,462,3,80,40,0,462,463,5,269,0,0,463,464,3,22,11,0,464,1346, + 1,0,0,0,465,466,5,96,0,0,466,468,3,36,18,0,467,469,3,200,100,0,468, + 467,1,0,0,0,468,469,1,0,0,0,469,470,1,0,0,0,470,472,3,80,40,0,471, + 473,7,1,0,0,472,471,1,0,0,0,472,473,1,0,0,0,473,1346,1,0,0,0,474, + 475,5,273,0,0,475,478,3,38,19,0,476,477,7,2,0,0,477,479,3,254,127, + 0,478,476,1,0,0,0,478,479,1,0,0,0,479,484,1,0,0,0,480,482,5,163, + 0,0,481,480,1,0,0,0,481,482,1,0,0,0,482,483,1,0,0,0,483,485,3,396, + 198,0,484,481,1,0,0,0,484,485,1,0,0,0,485,1346,1,0,0,0,486,491,3, + 14,7,0,487,488,5,2,0,0,488,489,3,346,173,0,489,490,5,3,0,0,490,492, + 1,0,0,0,491,487,1,0,0,0,491,492,1,0,0,0,492,494,1,0,0,0,493,495, + 3,48,24,0,494,493,1,0,0,0,494,495,1,0,0,0,495,496,1,0,0,0,496,501, + 3,50,25,0,497,499,5,20,0,0,498,497,1,0,0,0,498,499,1,0,0,0,499,500, + 1,0,0,0,500,502,3,26,13,0,501,498,1,0,0,0,501,502,1,0,0,0,502,1346, + 1,0,0,0,503,504,5,59,0,0,504,506,5,293,0,0,505,507,3,198,99,0,506, + 505,1,0,0,0,506,507,1,0,0,0,507,508,1,0,0,0,508,509,3,84,42,0,509, + 510,5,163,0,0,510,520,3,86,43,0,511,519,3,48,24,0,512,519,3,250, + 125,0,513,519,3,70,35,0,514,519,3,22,11,0,515,516,5,297,0,0,516, + 519,3,54,27,0,517,519,3,52,26,0,518,511,1,0,0,0,518,512,1,0,0,0, + 518,513,1,0,0,0,518,514,1,0,0,0,518,515,1,0,0,0,518,517,1,0,0,0, + 519,522,1,0,0,0,520,518,1,0,0,0,520,521,1,0,0,0,521,1346,1,0,0,0, + 522,520,1,0,0,0,523,528,3,16,8,0,524,525,5,2,0,0,525,526,3,346,173, + 0,526,527,5,3,0,0,527,529,1,0,0,0,528,524,1,0,0,0,528,529,1,0,0, + 0,529,531,1,0,0,0,530,532,3,48,24,0,531,530,1,0,0,0,531,532,1,0, + 0,0,532,533,1,0,0,0,533,538,3,50,25,0,534,536,5,20,0,0,535,534,1, + 0,0,0,535,536,1,0,0,0,536,537,1,0,0,0,537,539,3,26,13,0,538,535, + 1,0,0,0,538,539,1,0,0,0,539,1346,1,0,0,0,540,541,5,13,0,0,541,542, + 5,293,0,0,542,544,3,86,43,0,543,545,3,32,16,0,544,543,1,0,0,0,544, + 545,1,0,0,0,545,546,1,0,0,0,546,547,5,55,0,0,547,555,5,282,0,0,548, + 556,5,196,0,0,549,550,5,119,0,0,550,551,5,50,0,0,551,556,3,96,48, + 0,552,553,5,119,0,0,553,554,5,10,0,0,554,556,5,50,0,0,555,548,1, + 0,0,0,555,549,1,0,0,0,555,552,1,0,0,0,555,556,1,0,0,0,556,1346,1, + 0,0,0,557,558,5,13,0,0,558,561,5,294,0,0,559,560,7,2,0,0,560,562, + 3,80,40,0,561,559,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0,0,563,564, + 5,55,0,0,564,566,5,282,0,0,565,567,5,196,0,0,566,565,1,0,0,0,566, + 567,1,0,0,0,567,1346,1,0,0,0,568,569,5,11,0,0,569,570,5,293,0,0, + 570,571,3,86,43,0,571,572,5,8,0,0,572,573,5,49,0,0,573,574,3,330, + 165,0,574,1346,1,0,0,0,575,576,5,11,0,0,576,577,5,293,0,0,577,578, + 3,86,43,0,578,579,5,8,0,0,579,580,5,50,0,0,580,581,5,2,0,0,581,582, + 3,328,164,0,582,583,5,3,0,0,583,1346,1,0,0,0,584,585,5,11,0,0,585, + 586,5,293,0,0,586,587,3,86,43,0,587,588,5,241,0,0,588,589,5,49,0, + 0,589,590,3,92,46,0,590,591,5,309,0,0,591,592,3,98,49,0,592,1346, + 1,0,0,0,593,594,5,11,0,0,594,595,5,293,0,0,595,596,3,86,43,0,596, + 597,5,96,0,0,597,599,5,49,0,0,598,600,3,200,100,0,599,598,1,0,0, + 0,599,600,1,0,0,0,600,601,1,0,0,0,601,602,3,92,46,0,602,1346,1,0, + 0,0,603,604,5,11,0,0,604,605,5,293,0,0,605,606,3,86,43,0,606,607, + 5,96,0,0,607,609,5,50,0,0,608,610,3,200,100,0,609,608,1,0,0,0,609, + 610,1,0,0,0,610,611,1,0,0,0,611,612,5,2,0,0,612,613,3,96,48,0,613, + 614,5,3,0,0,614,1346,1,0,0,0,615,620,5,11,0,0,616,617,5,293,0,0, + 617,621,3,86,43,0,618,619,5,338,0,0,619,621,3,90,45,0,620,616,1, + 0,0,0,620,618,1,0,0,0,621,622,1,0,0,0,622,623,5,241,0,0,623,624, + 5,309,0,0,624,625,3,254,127,0,625,1346,1,0,0,0,626,631,5,11,0,0, + 627,628,5,293,0,0,628,632,3,86,43,0,629,630,5,338,0,0,630,632,3, + 90,45,0,631,627,1,0,0,0,631,629,1,0,0,0,632,633,1,0,0,0,633,634, + 5,269,0,0,634,635,5,297,0,0,635,636,3,54,27,0,636,1346,1,0,0,0,637, + 642,5,11,0,0,638,639,5,293,0,0,639,643,3,86,43,0,640,641,5,338,0, + 0,641,643,3,90,45,0,642,638,1,0,0,0,642,640,1,0,0,0,643,644,1,0, + 0,0,644,645,5,328,0,0,645,647,5,297,0,0,646,648,3,200,100,0,647, + 646,1,0,0,0,647,648,1,0,0,0,648,649,1,0,0,0,649,650,3,54,27,0,650, + 1346,1,0,0,0,651,652,5,11,0,0,652,653,5,293,0,0,653,654,3,86,43, + 0,654,656,7,3,0,0,655,657,5,49,0,0,656,655,1,0,0,0,656,657,1,0,0, + 0,657,658,1,0,0,0,658,660,3,92,46,0,659,661,3,394,197,0,660,659, + 1,0,0,0,660,661,1,0,0,0,661,1346,1,0,0,0,662,663,5,11,0,0,663,664, + 5,293,0,0,664,666,3,86,43,0,665,667,3,32,16,0,666,665,1,0,0,0,666, + 667,1,0,0,0,667,668,1,0,0,0,668,670,5,39,0,0,669,671,5,49,0,0,670, + 669,1,0,0,0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,3,92,46,0,673, + 675,3,344,172,0,674,676,3,322,161,0,675,674,1,0,0,0,675,676,1,0, + 0,0,676,1346,1,0,0,0,677,678,5,11,0,0,678,679,5,293,0,0,679,681, + 3,86,43,0,680,682,3,32,16,0,681,680,1,0,0,0,681,682,1,0,0,0,682, + 683,1,0,0,0,683,684,5,244,0,0,684,685,5,50,0,0,685,686,5,2,0,0,686, + 687,3,332,166,0,687,688,5,3,0,0,688,1346,1,0,0,0,689,690,5,11,0, + 0,690,691,5,293,0,0,691,693,3,86,43,0,692,694,3,32,16,0,693,692, + 1,0,0,0,693,694,1,0,0,0,694,695,1,0,0,0,695,696,5,269,0,0,696,697, + 5,266,0,0,697,701,3,396,198,0,698,699,5,346,0,0,699,700,5,267,0, + 0,700,702,3,54,27,0,701,698,1,0,0,0,701,702,1,0,0,0,702,1346,1,0, + 0,0,703,704,5,11,0,0,704,705,5,293,0,0,705,707,3,86,43,0,706,708, + 3,32,16,0,707,706,1,0,0,0,707,708,1,0,0,0,708,709,1,0,0,0,709,710, + 5,269,0,0,710,711,5,267,0,0,711,712,3,54,27,0,712,1346,1,0,0,0,713, + 718,5,11,0,0,714,715,5,293,0,0,715,719,3,86,43,0,716,717,5,338,0, + 0,717,719,3,90,45,0,718,714,1,0,0,0,718,716,1,0,0,0,719,720,1,0, + 0,0,720,722,5,8,0,0,721,723,3,198,99,0,722,721,1,0,0,0,722,723,1, + 0,0,0,723,725,1,0,0,0,724,726,3,30,15,0,725,724,1,0,0,0,726,727, + 1,0,0,0,727,725,1,0,0,0,727,728,1,0,0,0,728,1346,1,0,0,0,729,730, + 5,11,0,0,730,731,5,293,0,0,731,732,3,86,43,0,732,733,3,32,16,0,733, + 734,5,241,0,0,734,735,5,309,0,0,735,736,3,32,16,0,736,1346,1,0,0, + 0,737,742,5,11,0,0,738,739,5,293,0,0,739,743,3,86,43,0,740,741,5, + 338,0,0,741,743,3,90,45,0,742,738,1,0,0,0,742,740,1,0,0,0,743,744, + 1,0,0,0,744,746,5,96,0,0,745,747,3,200,100,0,746,745,1,0,0,0,746, + 747,1,0,0,0,747,748,1,0,0,0,748,753,3,32,16,0,749,750,5,4,0,0,750, + 752,3,32,16,0,751,749,1,0,0,0,752,755,1,0,0,0,753,751,1,0,0,0,753, + 754,1,0,0,0,754,757,1,0,0,0,755,753,1,0,0,0,756,758,5,230,0,0,757, + 756,1,0,0,0,757,758,1,0,0,0,758,1346,1,0,0,0,759,760,5,11,0,0,760, + 761,5,293,0,0,761,763,3,86,43,0,762,764,3,32,16,0,763,762,1,0,0, + 0,763,764,1,0,0,0,764,765,1,0,0,0,765,766,5,269,0,0,766,767,3,22, + 11,0,767,1346,1,0,0,0,768,769,5,11,0,0,769,770,5,293,0,0,770,771, + 3,86,43,0,771,772,5,237,0,0,772,773,5,219,0,0,773,1346,1,0,0,0,774, + 775,5,11,0,0,775,776,5,176,0,0,776,777,5,338,0,0,777,778,3,90,45, + 0,778,779,7,4,0,0,779,780,5,248,0,0,780,1346,1,0,0,0,781,782,5,11, + 0,0,782,783,5,176,0,0,783,784,5,338,0,0,784,785,3,90,45,0,785,786, + 5,269,0,0,786,787,5,297,0,0,787,788,3,54,27,0,788,1346,1,0,0,0,789, + 790,5,96,0,0,790,792,5,293,0,0,791,793,3,200,100,0,792,791,1,0,0, + 0,792,793,1,0,0,0,793,794,1,0,0,0,794,796,3,86,43,0,795,797,5,230, + 0,0,796,795,1,0,0,0,796,797,1,0,0,0,797,1346,1,0,0,0,798,799,5,96, + 0,0,799,801,5,338,0,0,800,802,3,200,100,0,801,800,1,0,0,0,801,802, + 1,0,0,0,802,803,1,0,0,0,803,1346,3,90,45,0,804,805,5,96,0,0,805, + 806,5,176,0,0,806,808,5,338,0,0,807,809,3,200,100,0,808,807,1,0, + 0,0,808,809,1,0,0,0,809,810,1,0,0,0,810,1346,3,90,45,0,811,814,5, + 59,0,0,812,813,5,208,0,0,813,815,5,244,0,0,814,812,1,0,0,0,814,815, + 1,0,0,0,815,820,1,0,0,0,816,818,5,128,0,0,817,816,1,0,0,0,817,818, + 1,0,0,0,818,819,1,0,0,0,819,821,5,298,0,0,820,817,1,0,0,0,820,821, + 1,0,0,0,821,822,1,0,0,0,822,824,5,338,0,0,823,825,3,198,99,0,824, + 823,1,0,0,0,824,825,1,0,0,0,825,826,1,0,0,0,826,828,3,88,44,0,827, + 829,3,228,114,0,828,827,1,0,0,0,828,829,1,0,0,0,829,838,1,0,0,0, + 830,837,3,24,12,0,831,832,5,218,0,0,832,833,5,203,0,0,833,837,3, + 220,110,0,834,835,5,297,0,0,835,837,3,54,27,0,836,830,1,0,0,0,836, + 831,1,0,0,0,836,834,1,0,0,0,837,840,1,0,0,0,838,836,1,0,0,0,838, + 839,1,0,0,0,839,841,1,0,0,0,840,838,1,0,0,0,841,842,5,20,0,0,842, + 843,3,26,13,0,843,1346,1,0,0,0,844,847,5,59,0,0,845,846,5,208,0, + 0,846,848,5,244,0,0,847,845,1,0,0,0,847,848,1,0,0,0,848,850,1,0, + 0,0,849,851,5,128,0,0,850,849,1,0,0,0,850,851,1,0,0,0,851,852,1, + 0,0,0,852,853,5,298,0,0,853,854,5,338,0,0,854,859,3,88,44,0,855, + 856,5,2,0,0,856,857,3,342,171,0,857,858,5,3,0,0,858,860,1,0,0,0, + 859,855,1,0,0,0,859,860,1,0,0,0,860,861,1,0,0,0,861,864,3,48,24, + 0,862,863,5,207,0,0,863,865,3,54,27,0,864,862,1,0,0,0,864,865,1, + 0,0,0,865,1346,1,0,0,0,866,867,5,11,0,0,867,868,5,338,0,0,868,870, + 3,90,45,0,869,871,5,20,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,872, + 1,0,0,0,872,873,3,26,13,0,873,1346,1,0,0,0,874,877,5,59,0,0,875, + 876,5,208,0,0,876,878,5,244,0,0,877,875,1,0,0,0,877,878,1,0,0,0, + 878,880,1,0,0,0,879,881,5,298,0,0,880,879,1,0,0,0,880,881,1,0,0, + 0,881,882,1,0,0,0,882,884,5,125,0,0,883,885,3,198,99,0,884,883,1, + 0,0,0,884,885,1,0,0,0,885,886,1,0,0,0,886,887,3,376,188,0,887,888, + 5,20,0,0,888,898,3,396,198,0,889,890,5,332,0,0,890,895,3,76,38,0, + 891,892,5,4,0,0,892,894,3,76,38,0,893,891,1,0,0,0,894,897,1,0,0, + 0,895,893,1,0,0,0,895,896,1,0,0,0,896,899,1,0,0,0,897,895,1,0,0, + 0,898,889,1,0,0,0,898,899,1,0,0,0,899,1346,1,0,0,0,900,901,5,59, + 0,0,901,902,5,176,0,0,902,904,5,338,0,0,903,905,3,198,99,0,904,903, + 1,0,0,0,904,905,1,0,0,0,905,906,1,0,0,0,906,908,3,88,44,0,907,909, + 3,48,24,0,908,907,1,0,0,0,908,909,1,0,0,0,909,925,1,0,0,0,910,911, + 5,207,0,0,911,924,3,54,27,0,912,913,5,218,0,0,913,914,5,31,0,0,914, + 924,3,268,134,0,915,924,3,20,10,0,916,924,3,18,9,0,917,924,3,250, + 125,0,918,924,3,70,35,0,919,924,3,22,11,0,920,924,3,24,12,0,921, + 922,5,297,0,0,922,924,3,54,27,0,923,910,1,0,0,0,923,912,1,0,0,0, + 923,915,1,0,0,0,923,916,1,0,0,0,923,917,1,0,0,0,923,918,1,0,0,0, + 923,919,1,0,0,0,923,920,1,0,0,0,923,921,1,0,0,0,924,927,1,0,0,0, + 925,923,1,0,0,0,925,926,1,0,0,0,926,928,1,0,0,0,927,925,1,0,0,0, + 928,929,5,20,0,0,929,930,3,26,13,0,930,1346,1,0,0,0,931,933,5,96, + 0,0,932,934,5,298,0,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1, + 0,0,0,935,937,5,125,0,0,936,938,3,200,100,0,937,936,1,0,0,0,937, + 938,1,0,0,0,938,939,1,0,0,0,939,1346,3,374,187,0,940,943,5,81,0, + 0,941,942,5,208,0,0,942,944,5,244,0,0,943,941,1,0,0,0,943,944,1, + 0,0,0,944,946,1,0,0,0,945,947,5,336,0,0,946,945,1,0,0,0,946,947, + 1,0,0,0,947,948,1,0,0,0,948,950,3,374,187,0,949,951,3,326,163,0, + 950,949,1,0,0,0,950,951,1,0,0,0,951,953,1,0,0,0,952,954,3,340,170, + 0,953,952,1,0,0,0,953,954,1,0,0,0,954,1346,1,0,0,0,955,956,5,96, + 0,0,956,957,5,298,0,0,957,959,5,336,0,0,958,960,3,200,100,0,959, + 958,1,0,0,0,959,960,1,0,0,0,960,964,1,0,0,0,961,965,3,86,43,0,962, + 965,3,90,45,0,963,965,3,374,187,0,964,961,1,0,0,0,964,962,1,0,0, + 0,964,963,1,0,0,0,965,1346,1,0,0,0,966,968,5,106,0,0,967,969,7,5, + 0,0,968,967,1,0,0,0,968,969,1,0,0,0,969,970,1,0,0,0,970,1346,3,4, + 2,0,971,972,5,273,0,0,972,975,5,294,0,0,973,974,7,2,0,0,974,976, + 3,80,40,0,975,973,1,0,0,0,975,976,1,0,0,0,976,981,1,0,0,0,977,979, + 5,163,0,0,978,977,1,0,0,0,978,979,1,0,0,0,979,980,1,0,0,0,980,982, + 3,396,198,0,981,978,1,0,0,0,981,982,1,0,0,0,982,1346,1,0,0,0,983, + 984,5,273,0,0,984,985,5,293,0,0,985,988,5,108,0,0,986,987,7,2,0, + 0,987,989,3,80,40,0,988,986,1,0,0,0,988,989,1,0,0,0,989,990,1,0, + 0,0,990,991,5,163,0,0,991,993,3,396,198,0,992,994,3,32,16,0,993, + 992,1,0,0,0,993,994,1,0,0,0,994,1346,1,0,0,0,995,996,5,273,0,0,996, + 997,5,297,0,0,997,1002,3,86,43,0,998,999,5,2,0,0,999,1000,3,58,29, + 0,1000,1001,5,3,0,0,1001,1003,1,0,0,0,1002,998,1,0,0,0,1002,1003, + 1,0,0,0,1003,1346,1,0,0,0,1004,1005,5,273,0,0,1005,1006,5,50,0,0, + 1006,1007,7,2,0,0,1007,1010,3,86,43,0,1008,1009,7,2,0,0,1009,1011, + 3,80,40,0,1010,1008,1,0,0,0,1010,1011,1,0,0,0,1011,1346,1,0,0,0, + 1012,1013,5,273,0,0,1013,1016,5,339,0,0,1014,1015,7,2,0,0,1015,1017, + 3,80,40,0,1016,1014,1,0,0,0,1016,1017,1,0,0,0,1017,1022,1,0,0,0, + 1018,1020,5,163,0,0,1019,1018,1,0,0,0,1019,1020,1,0,0,0,1020,1021, + 1,0,0,0,1021,1023,3,396,198,0,1022,1019,1,0,0,0,1022,1023,1,0,0, + 0,1023,1346,1,0,0,0,1024,1025,5,273,0,0,1025,1026,5,219,0,0,1026, + 1028,3,86,43,0,1027,1029,3,32,16,0,1028,1027,1,0,0,0,1028,1029,1, + 0,0,0,1029,1346,1,0,0,0,1030,1032,5,273,0,0,1031,1033,3,156,78,0, + 1032,1031,1,0,0,0,1032,1033,1,0,0,0,1033,1034,1,0,0,0,1034,1037, + 5,126,0,0,1035,1036,7,2,0,0,1036,1038,3,80,40,0,1037,1035,1,0,0, + 0,1037,1038,1,0,0,0,1038,1046,1,0,0,0,1039,1041,5,163,0,0,1040,1039, + 1,0,0,0,1040,1041,1,0,0,0,1041,1044,1,0,0,0,1042,1045,3,254,127, + 0,1043,1045,3,396,198,0,1044,1042,1,0,0,0,1044,1043,1,0,0,0,1045, + 1047,1,0,0,0,1046,1040,1,0,0,0,1046,1047,1,0,0,0,1047,1346,1,0,0, + 0,1048,1049,5,273,0,0,1049,1050,5,59,0,0,1050,1051,5,293,0,0,1051, + 1054,3,86,43,0,1052,1053,5,20,0,0,1053,1055,5,266,0,0,1054,1052, + 1,0,0,0,1054,1055,1,0,0,0,1055,1346,1,0,0,0,1056,1057,5,273,0,0, + 1057,1058,5,62,0,0,1058,1346,3,36,18,0,1059,1060,5,273,0,0,1060, + 1065,5,38,0,0,1061,1063,5,163,0,0,1062,1061,1,0,0,0,1062,1063,1, + 0,0,0,1063,1064,1,0,0,0,1064,1066,3,396,198,0,1065,1062,1,0,0,0, + 1065,1066,1,0,0,0,1066,1346,1,0,0,0,1067,1068,5,273,0,0,1068,1069, + 5,176,0,0,1069,1072,5,339,0,0,1070,1071,7,2,0,0,1071,1073,3,80,40, + 0,1072,1070,1,0,0,0,1072,1073,1,0,0,0,1073,1078,1,0,0,0,1074,1076, + 5,163,0,0,1075,1074,1,0,0,0,1075,1076,1,0,0,0,1076,1077,1,0,0,0, + 1077,1079,3,396,198,0,1078,1075,1,0,0,0,1078,1079,1,0,0,0,1079,1346, + 1,0,0,0,1080,1081,5,273,0,0,1081,1082,5,59,0,0,1082,1083,5,176,0, + 0,1083,1084,5,338,0,0,1084,1087,3,90,45,0,1085,1086,5,20,0,0,1086, + 1088,5,266,0,0,1087,1085,1,0,0,0,1087,1088,1,0,0,0,1088,1346,1,0, + 0,0,1089,1090,7,6,0,0,1090,1092,5,125,0,0,1091,1093,5,108,0,0,1092, + 1091,1,0,0,0,1092,1093,1,0,0,0,1093,1094,1,0,0,0,1094,1346,3,40, + 20,0,1095,1096,7,6,0,0,1096,1098,5,72,0,0,1097,1099,5,108,0,0,1098, + 1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100,1,0,0,0,1100,1346,3,80, + 40,0,1101,1103,7,6,0,0,1102,1104,5,293,0,0,1103,1102,1,0,0,0,1103, + 1104,1,0,0,0,1104,1106,1,0,0,0,1105,1107,7,7,0,0,1106,1105,1,0,0, + 0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1110,3,86,43,0,1109,1111, + 3,32,16,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111,1113,1,0,0,0, + 1112,1114,3,42,21,0,1113,1112,1,0,0,0,1113,1114,1,0,0,0,1114,1346, + 1,0,0,0,1115,1117,7,6,0,0,1116,1118,5,232,0,0,1117,1116,1,0,0,0, + 1117,1118,1,0,0,0,1118,1119,1,0,0,0,1119,1346,3,26,13,0,1120,1121, + 5,51,0,0,1121,1122,5,203,0,0,1122,1123,3,36,18,0,1123,1124,3,80, + 40,0,1124,1125,5,153,0,0,1125,1126,3,398,199,0,1126,1346,1,0,0,0, + 1127,1128,5,51,0,0,1128,1129,5,203,0,0,1129,1130,5,293,0,0,1130, + 1131,3,86,43,0,1131,1132,5,153,0,0,1132,1133,3,398,199,0,1133,1346, + 1,0,0,0,1134,1135,5,240,0,0,1135,1136,5,293,0,0,1136,1346,3,86,43, + 0,1137,1138,5,240,0,0,1138,1139,5,125,0,0,1139,1346,3,374,187,0, + 1140,1148,5,240,0,0,1141,1149,3,396,198,0,1142,1144,9,0,0,0,1143, + 1142,1,0,0,0,1144,1147,1,0,0,0,1145,1146,1,0,0,0,1145,1143,1,0,0, + 0,1146,1149,1,0,0,0,1147,1145,1,0,0,0,1148,1141,1,0,0,0,1148,1145, + 1,0,0,0,1149,1346,1,0,0,0,1150,1151,5,240,0,0,1151,1152,5,176,0, + 0,1152,1153,5,338,0,0,1153,1346,3,90,45,0,1154,1156,5,33,0,0,1155, + 1157,5,159,0,0,1156,1155,1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0, + 0,0,1158,1159,5,293,0,0,1159,1162,3,86,43,0,1160,1161,5,207,0,0, + 1161,1163,3,54,27,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163,1168, + 1,0,0,0,1164,1166,5,20,0,0,1165,1164,1,0,0,0,1165,1166,1,0,0,0,1166, + 1167,1,0,0,0,1167,1169,3,26,13,0,1168,1165,1,0,0,0,1168,1169,1,0, + 0,0,1169,1346,1,0,0,0,1170,1171,5,322,0,0,1171,1173,5,293,0,0,1172, + 1174,3,200,100,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174,1175,1, + 0,0,0,1175,1346,3,86,43,0,1176,1177,5,43,0,0,1177,1346,5,33,0,0, + 1178,1179,5,168,0,0,1179,1181,5,70,0,0,1180,1182,5,169,0,0,1181, + 1180,1,0,0,0,1181,1182,1,0,0,0,1182,1183,1,0,0,0,1183,1184,5,145, + 0,0,1184,1186,3,396,198,0,1185,1187,5,216,0,0,1186,1185,1,0,0,0, + 1186,1187,1,0,0,0,1187,1188,1,0,0,0,1188,1189,5,152,0,0,1189,1190, + 5,293,0,0,1190,1192,3,86,43,0,1191,1193,3,32,16,0,1192,1191,1,0, + 0,0,1192,1193,1,0,0,0,1193,1346,1,0,0,0,1194,1195,5,317,0,0,1195, + 1196,5,293,0,0,1196,1198,3,86,43,0,1197,1199,3,32,16,0,1198,1197, + 1,0,0,0,1198,1199,1,0,0,0,1199,1346,1,0,0,0,1200,1202,5,188,0,0, + 1201,1200,1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203,1204, + 5,242,0,0,1204,1205,5,293,0,0,1205,1208,3,86,43,0,1206,1207,7,8, + 0,0,1207,1209,5,219,0,0,1208,1206,1,0,0,0,1208,1209,1,0,0,0,1209, + 1346,1,0,0,0,1210,1211,7,9,0,0,1211,1215,3,384,192,0,1212,1214,9, + 0,0,0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215, + 1213,1,0,0,0,1216,1346,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269, + 0,0,1219,1223,5,253,0,0,1220,1222,9,0,0,0,1221,1220,1,0,0,0,1222, + 1225,1,0,0,0,1223,1224,1,0,0,0,1223,1221,1,0,0,0,1224,1346,1,0,0, + 0,1225,1223,1,0,0,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228, + 1229,5,350,0,0,1229,1346,3,306,153,0,1230,1231,5,269,0,0,1231,1232, + 5,301,0,0,1232,1233,5,350,0,0,1233,1346,3,6,3,0,1234,1235,5,269, + 0,0,1235,1236,5,301,0,0,1236,1240,5,350,0,0,1237,1239,9,0,0,0,1238, + 1237,1,0,0,0,1239,1242,1,0,0,0,1240,1241,1,0,0,0,1240,1238,1,0,0, + 0,1241,1346,1,0,0,0,1242,1240,1,0,0,0,1243,1244,5,269,0,0,1244,1245, + 7,10,0,0,1245,1346,3,142,71,0,1246,1247,5,269,0,0,1247,1248,7,10, + 0,0,1248,1249,5,2,0,0,1249,1250,3,252,126,0,1250,1251,5,3,0,0,1251, + 1252,5,352,0,0,1252,1253,5,2,0,0,1253,1254,3,26,13,0,1254,1255,5, + 3,0,0,1255,1346,1,0,0,0,1256,1257,5,269,0,0,1257,1258,3,8,4,0,1258, + 1259,5,352,0,0,1259,1260,3,10,5,0,1260,1346,1,0,0,0,1261,1262,5, + 269,0,0,1262,1270,3,8,4,0,1263,1267,5,352,0,0,1264,1266,9,0,0,0, + 1265,1264,1,0,0,0,1266,1269,1,0,0,0,1267,1268,1,0,0,0,1267,1265, + 1,0,0,0,1268,1271,1,0,0,0,1269,1267,1,0,0,0,1270,1263,1,0,0,0,1270, + 1271,1,0,0,0,1271,1346,1,0,0,0,1272,1276,5,269,0,0,1273,1275,9,0, + 0,0,1274,1273,1,0,0,0,1275,1278,1,0,0,0,1276,1277,1,0,0,0,1276,1274, + 1,0,0,0,1277,1279,1,0,0,0,1278,1276,1,0,0,0,1279,1280,5,352,0,0, + 1280,1346,3,10,5,0,1281,1285,5,269,0,0,1282,1284,9,0,0,0,1283,1282, + 1,0,0,0,1284,1287,1,0,0,0,1285,1286,1,0,0,0,1285,1283,1,0,0,0,1286, + 1346,1,0,0,0,1287,1285,1,0,0,0,1288,1289,5,245,0,0,1289,1346,3,8, + 4,0,1290,1294,5,245,0,0,1291,1293,9,0,0,0,1292,1291,1,0,0,0,1293, + 1296,1,0,0,0,1294,1295,1,0,0,0,1294,1292,1,0,0,0,1295,1346,1,0,0, + 0,1296,1294,1,0,0,0,1297,1298,5,59,0,0,1298,1300,5,142,0,0,1299, + 1301,3,198,99,0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1, + 0,0,0,1302,1303,3,384,192,0,1303,1305,5,203,0,0,1304,1306,5,293, + 0,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1307,1,0,0,0,1307,1310, + 3,86,43,0,1308,1309,5,332,0,0,1309,1311,3,384,192,0,1310,1308,1, + 0,0,0,1310,1311,1,0,0,0,1311,1312,1,0,0,0,1312,1313,5,2,0,0,1313, + 1314,3,256,128,0,1314,1317,5,3,0,0,1315,1316,5,207,0,0,1316,1318, + 3,54,27,0,1317,1315,1,0,0,0,1317,1318,1,0,0,0,1318,1346,1,0,0,0, + 1319,1320,5,96,0,0,1320,1322,5,142,0,0,1321,1323,3,200,100,0,1322, + 1321,1,0,0,0,1322,1323,1,0,0,0,1323,1324,1,0,0,0,1324,1325,3,384, + 192,0,1325,1327,5,203,0,0,1326,1328,5,293,0,0,1327,1326,1,0,0,0, + 1327,1328,1,0,0,0,1328,1329,1,0,0,0,1329,1330,3,86,43,0,1330,1346, + 1,0,0,0,1331,1332,5,205,0,0,1332,1334,3,86,43,0,1333,1335,3,146, + 73,0,1334,1333,1,0,0,0,1334,1335,1,0,0,0,1335,1336,1,0,0,0,1336, + 1337,3,362,181,0,1337,1346,1,0,0,0,1338,1342,3,12,6,0,1339,1341, + 9,0,0,0,1340,1339,1,0,0,0,1341,1344,1,0,0,0,1342,1343,1,0,0,0,1342, + 1340,1,0,0,0,1343,1346,1,0,0,0,1344,1342,1,0,0,0,1345,420,1,0,0, + 0,1345,422,1,0,0,0,1345,425,1,0,0,0,1345,430,1,0,0,0,1345,436,1, + 0,0,0,1345,452,1,0,0,0,1345,459,1,0,0,0,1345,465,1,0,0,0,1345,474, + 1,0,0,0,1345,486,1,0,0,0,1345,503,1,0,0,0,1345,523,1,0,0,0,1345, + 540,1,0,0,0,1345,557,1,0,0,0,1345,568,1,0,0,0,1345,575,1,0,0,0,1345, + 584,1,0,0,0,1345,593,1,0,0,0,1345,603,1,0,0,0,1345,615,1,0,0,0,1345, + 626,1,0,0,0,1345,637,1,0,0,0,1345,651,1,0,0,0,1345,662,1,0,0,0,1345, + 677,1,0,0,0,1345,689,1,0,0,0,1345,703,1,0,0,0,1345,713,1,0,0,0,1345, + 729,1,0,0,0,1345,737,1,0,0,0,1345,759,1,0,0,0,1345,768,1,0,0,0,1345, + 774,1,0,0,0,1345,781,1,0,0,0,1345,789,1,0,0,0,1345,798,1,0,0,0,1345, + 804,1,0,0,0,1345,811,1,0,0,0,1345,844,1,0,0,0,1345,866,1,0,0,0,1345, + 874,1,0,0,0,1345,900,1,0,0,0,1345,931,1,0,0,0,1345,940,1,0,0,0,1345, + 955,1,0,0,0,1345,966,1,0,0,0,1345,971,1,0,0,0,1345,983,1,0,0,0,1345, + 995,1,0,0,0,1345,1004,1,0,0,0,1345,1012,1,0,0,0,1345,1024,1,0,0, + 0,1345,1030,1,0,0,0,1345,1048,1,0,0,0,1345,1056,1,0,0,0,1345,1059, + 1,0,0,0,1345,1067,1,0,0,0,1345,1080,1,0,0,0,1345,1089,1,0,0,0,1345, + 1095,1,0,0,0,1345,1101,1,0,0,0,1345,1115,1,0,0,0,1345,1120,1,0,0, + 0,1345,1127,1,0,0,0,1345,1134,1,0,0,0,1345,1137,1,0,0,0,1345,1140, + 1,0,0,0,1345,1150,1,0,0,0,1345,1154,1,0,0,0,1345,1170,1,0,0,0,1345, + 1176,1,0,0,0,1345,1178,1,0,0,0,1345,1194,1,0,0,0,1345,1201,1,0,0, + 0,1345,1210,1,0,0,0,1345,1218,1,0,0,0,1345,1226,1,0,0,0,1345,1230, + 1,0,0,0,1345,1234,1,0,0,0,1345,1243,1,0,0,0,1345,1246,1,0,0,0,1345, + 1256,1,0,0,0,1345,1261,1,0,0,0,1345,1272,1,0,0,0,1345,1281,1,0,0, + 0,1345,1288,1,0,0,0,1345,1290,1,0,0,0,1345,1297,1,0,0,0,1345,1319, + 1,0,0,0,1345,1331,1,0,0,0,1345,1338,1,0,0,0,1346,5,1,0,0,0,1347, + 1350,3,396,198,0,1348,1350,5,169,0,0,1349,1347,1,0,0,0,1349,1348, + 1,0,0,0,1350,7,1,0,0,0,1351,1352,3,388,194,0,1352,9,1,0,0,0,1353, + 1354,3,390,195,0,1354,11,1,0,0,0,1355,1356,5,59,0,0,1356,1524,5, + 253,0,0,1357,1358,5,96,0,0,1358,1524,5,253,0,0,1359,1361,5,129,0, + 0,1360,1362,5,253,0,0,1361,1360,1,0,0,0,1361,1362,1,0,0,0,1362,1524, + 1,0,0,0,1363,1365,5,249,0,0,1364,1366,5,253,0,0,1365,1364,1,0,0, + 0,1365,1366,1,0,0,0,1366,1524,1,0,0,0,1367,1368,5,273,0,0,1368,1524, + 5,129,0,0,1369,1370,5,273,0,0,1370,1372,5,253,0,0,1371,1373,5,129, + 0,0,1372,1371,1,0,0,0,1372,1373,1,0,0,0,1373,1524,1,0,0,0,1374,1375, + 5,273,0,0,1375,1524,5,228,0,0,1376,1377,5,273,0,0,1377,1524,5,254, + 0,0,1378,1379,5,273,0,0,1379,1380,5,62,0,0,1380,1524,5,254,0,0,1381, + 1382,5,107,0,0,1382,1524,5,293,0,0,1383,1384,5,139,0,0,1384,1524, + 5,293,0,0,1385,1386,5,273,0,0,1386,1524,5,54,0,0,1387,1388,5,273, + 0,0,1388,1389,5,59,0,0,1389,1524,5,293,0,0,1390,1391,5,273,0,0,1391, + 1524,5,313,0,0,1392,1393,5,273,0,0,1393,1524,5,143,0,0,1394,1395, + 5,273,0,0,1395,1524,5,172,0,0,1396,1397,5,59,0,0,1397,1524,5,142, + 0,0,1398,1399,5,96,0,0,1399,1524,5,142,0,0,1400,1401,5,11,0,0,1401, + 1524,5,142,0,0,1402,1403,5,171,0,0,1403,1524,5,293,0,0,1404,1405, + 5,171,0,0,1405,1524,5,72,0,0,1406,1407,5,326,0,0,1407,1524,5,293, + 0,0,1408,1409,5,326,0,0,1409,1524,5,72,0,0,1410,1411,5,59,0,0,1411, + 1412,5,298,0,0,1412,1524,5,175,0,0,1413,1414,5,96,0,0,1414,1415, + 5,298,0,0,1415,1524,5,175,0,0,1416,1417,5,11,0,0,1417,1418,5,293, + 0,0,1418,1419,3,86,43,0,1419,1420,5,197,0,0,1420,1421,5,45,0,0,1421, + 1524,1,0,0,0,1422,1423,5,11,0,0,1423,1424,5,293,0,0,1424,1425,3, + 86,43,0,1425,1426,5,45,0,0,1426,1427,5,31,0,0,1427,1524,1,0,0,0, + 1428,1429,5,11,0,0,1429,1430,5,293,0,0,1430,1431,3,86,43,0,1431, + 1432,5,197,0,0,1432,1433,5,279,0,0,1433,1524,1,0,0,0,1434,1435,5, + 11,0,0,1435,1436,5,293,0,0,1436,1437,3,86,43,0,1437,1438,5,275,0, + 0,1438,1439,5,31,0,0,1439,1524,1,0,0,0,1440,1441,5,11,0,0,1441,1442, + 5,293,0,0,1442,1443,3,86,43,0,1443,1444,5,197,0,0,1444,1445,5,275, + 0,0,1445,1524,1,0,0,0,1446,1447,5,11,0,0,1447,1448,5,293,0,0,1448, + 1449,3,86,43,0,1449,1450,5,197,0,0,1450,1451,5,283,0,0,1451,1452, + 5,20,0,0,1452,1453,5,89,0,0,1453,1524,1,0,0,0,1454,1455,5,11,0,0, + 1455,1456,5,293,0,0,1456,1457,3,86,43,0,1457,1458,5,269,0,0,1458, + 1459,5,275,0,0,1459,1460,5,170,0,0,1460,1524,1,0,0,0,1461,1462,5, + 11,0,0,1462,1463,5,293,0,0,1463,1464,3,86,43,0,1464,1465,5,103,0, + 0,1465,1466,5,217,0,0,1466,1524,1,0,0,0,1467,1468,5,11,0,0,1468, + 1469,5,293,0,0,1469,1470,3,86,43,0,1470,1471,5,18,0,0,1471,1472, + 5,217,0,0,1472,1524,1,0,0,0,1473,1474,5,11,0,0,1474,1475,5,293,0, + 0,1475,1476,3,86,43,0,1476,1477,5,320,0,0,1477,1478,5,217,0,0,1478, + 1524,1,0,0,0,1479,1480,5,11,0,0,1480,1481,5,293,0,0,1481,1482,3, + 86,43,0,1482,1483,5,310,0,0,1483,1524,1,0,0,0,1484,1485,5,11,0,0, + 1485,1486,5,293,0,0,1486,1488,3,86,43,0,1487,1489,3,32,16,0,1488, + 1487,1,0,0,0,1488,1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,5,53, + 0,0,1491,1524,1,0,0,0,1492,1493,5,11,0,0,1493,1494,5,293,0,0,1494, + 1496,3,86,43,0,1495,1497,3,32,16,0,1496,1495,1,0,0,0,1496,1497,1, + 0,0,0,1497,1498,1,0,0,0,1498,1499,5,56,0,0,1499,1524,1,0,0,0,1500, + 1501,5,11,0,0,1501,1502,5,293,0,0,1502,1504,3,86,43,0,1503,1505, + 3,32,16,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1506,1,0,0,0, + 1506,1507,5,269,0,0,1507,1508,5,115,0,0,1508,1524,1,0,0,0,1509,1510, + 5,11,0,0,1510,1511,5,293,0,0,1511,1513,3,86,43,0,1512,1514,3,32, + 16,0,1513,1512,1,0,0,0,1513,1514,1,0,0,0,1514,1515,1,0,0,0,1515, + 1516,5,244,0,0,1516,1517,5,50,0,0,1517,1524,1,0,0,0,1518,1519,5, + 281,0,0,1519,1524,5,312,0,0,1520,1524,5,52,0,0,1521,1524,5,255,0, + 0,1522,1524,5,88,0,0,1523,1355,1,0,0,0,1523,1357,1,0,0,0,1523,1359, + 1,0,0,0,1523,1363,1,0,0,0,1523,1367,1,0,0,0,1523,1369,1,0,0,0,1523, + 1374,1,0,0,0,1523,1376,1,0,0,0,1523,1378,1,0,0,0,1523,1381,1,0,0, + 0,1523,1383,1,0,0,0,1523,1385,1,0,0,0,1523,1387,1,0,0,0,1523,1390, + 1,0,0,0,1523,1392,1,0,0,0,1523,1394,1,0,0,0,1523,1396,1,0,0,0,1523, + 1398,1,0,0,0,1523,1400,1,0,0,0,1523,1402,1,0,0,0,1523,1404,1,0,0, + 0,1523,1406,1,0,0,0,1523,1408,1,0,0,0,1523,1410,1,0,0,0,1523,1413, + 1,0,0,0,1523,1416,1,0,0,0,1523,1422,1,0,0,0,1523,1428,1,0,0,0,1523, + 1434,1,0,0,0,1523,1440,1,0,0,0,1523,1446,1,0,0,0,1523,1454,1,0,0, + 0,1523,1461,1,0,0,0,1523,1467,1,0,0,0,1523,1473,1,0,0,0,1523,1479, + 1,0,0,0,1523,1484,1,0,0,0,1523,1492,1,0,0,0,1523,1500,1,0,0,0,1523, + 1509,1,0,0,0,1523,1518,1,0,0,0,1523,1520,1,0,0,0,1523,1521,1,0,0, + 0,1523,1522,1,0,0,0,1524,13,1,0,0,0,1525,1527,5,59,0,0,1526,1528, + 5,298,0,0,1527,1526,1,0,0,0,1527,1528,1,0,0,0,1528,1530,1,0,0,0, + 1529,1531,5,109,0,0,1530,1529,1,0,0,0,1530,1531,1,0,0,0,1531,1532, + 1,0,0,0,1532,1534,5,293,0,0,1533,1535,3,198,99,0,1534,1533,1,0,0, + 0,1534,1535,1,0,0,0,1535,1536,1,0,0,0,1536,1537,3,84,42,0,1537,15, + 1,0,0,0,1538,1539,5,59,0,0,1539,1541,5,208,0,0,1540,1538,1,0,0,0, + 1540,1541,1,0,0,0,1541,1542,1,0,0,0,1542,1543,5,244,0,0,1543,1544, + 5,293,0,0,1544,1545,3,84,42,0,1545,17,1,0,0,0,1546,1547,5,45,0,0, + 1547,1548,5,31,0,0,1548,1552,3,220,110,0,1549,1550,5,279,0,0,1550, + 1551,5,31,0,0,1551,1553,3,224,112,0,1552,1549,1,0,0,0,1552,1553, + 1,0,0,0,1553,1554,1,0,0,0,1554,1555,5,152,0,0,1555,1556,5,382,0, + 0,1556,1557,5,30,0,0,1557,19,1,0,0,0,1558,1559,5,275,0,0,1559,1560, + 5,31,0,0,1560,1561,3,220,110,0,1561,1564,5,203,0,0,1562,1565,3,66, + 33,0,1563,1565,3,68,34,0,1564,1562,1,0,0,0,1564,1563,1,0,0,0,1565, + 1569,1,0,0,0,1566,1567,5,283,0,0,1567,1568,5,20,0,0,1568,1570,5, + 89,0,0,1569,1566,1,0,0,0,1569,1570,1,0,0,0,1570,21,1,0,0,0,1571, + 1572,5,170,0,0,1572,1573,3,396,198,0,1573,23,1,0,0,0,1574,1575,5, + 51,0,0,1575,1576,3,396,198,0,1576,25,1,0,0,0,1577,1579,3,44,22,0, + 1578,1577,1,0,0,0,1578,1579,1,0,0,0,1579,1580,1,0,0,0,1580,1581, + 3,112,56,0,1581,1582,3,102,51,0,1582,27,1,0,0,0,1583,1584,5,147, + 0,0,1584,1586,5,216,0,0,1585,1587,5,293,0,0,1586,1585,1,0,0,0,1586, + 1587,1,0,0,0,1587,1588,1,0,0,0,1588,1593,3,86,43,0,1589,1591,3,32, + 16,0,1590,1592,3,198,99,0,1591,1590,1,0,0,0,1591,1592,1,0,0,0,1592, + 1594,1,0,0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1601,1,0,0, + 0,1595,1596,5,31,0,0,1596,1602,5,189,0,0,1597,1598,5,2,0,0,1598, + 1599,3,96,48,0,1599,1600,5,3,0,0,1600,1602,1,0,0,0,1601,1595,1,0, + 0,0,1601,1597,1,0,0,0,1601,1602,1,0,0,0,1602,1660,1,0,0,0,1603,1604, + 5,147,0,0,1604,1606,5,152,0,0,1605,1607,5,293,0,0,1606,1605,1,0, + 0,0,1606,1607,1,0,0,0,1607,1608,1,0,0,0,1608,1610,3,86,43,0,1609, + 1611,3,32,16,0,1610,1609,1,0,0,0,1610,1611,1,0,0,0,1611,1613,1,0, + 0,0,1612,1614,3,198,99,0,1613,1612,1,0,0,0,1613,1614,1,0,0,0,1614, + 1621,1,0,0,0,1615,1616,5,31,0,0,1616,1622,5,189,0,0,1617,1618,5, + 2,0,0,1618,1619,3,96,48,0,1619,1620,5,3,0,0,1620,1622,1,0,0,0,1621, + 1615,1,0,0,0,1621,1617,1,0,0,0,1621,1622,1,0,0,0,1622,1660,1,0,0, + 0,1623,1624,5,147,0,0,1624,1626,5,152,0,0,1625,1627,5,293,0,0,1626, + 1625,1,0,0,0,1626,1627,1,0,0,0,1627,1628,1,0,0,0,1628,1629,3,86, + 43,0,1629,1630,5,244,0,0,1630,1631,3,146,73,0,1631,1660,1,0,0,0, + 1632,1633,5,147,0,0,1633,1635,5,216,0,0,1634,1636,5,169,0,0,1635, + 1634,1,0,0,0,1635,1636,1,0,0,0,1636,1637,1,0,0,0,1637,1638,5,90, + 0,0,1638,1640,3,396,198,0,1639,1641,3,250,125,0,1640,1639,1,0,0, + 0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642,1644,3,70,35,0,1643,1642, + 1,0,0,0,1643,1644,1,0,0,0,1644,1660,1,0,0,0,1645,1646,5,147,0,0, + 1646,1648,5,216,0,0,1647,1649,5,169,0,0,1648,1647,1,0,0,0,1648,1649, + 1,0,0,0,1649,1650,1,0,0,0,1650,1652,5,90,0,0,1651,1653,3,396,198, + 0,1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,1654,1,0,0,0,1654,1657, + 3,48,24,0,1655,1656,5,207,0,0,1656,1658,3,54,27,0,1657,1655,1,0, + 0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659,1583,1,0,0,0,1659,1603, + 1,0,0,0,1659,1623,1,0,0,0,1659,1632,1,0,0,0,1659,1645,1,0,0,0,1660, + 29,1,0,0,0,1661,1663,3,32,16,0,1662,1664,3,22,11,0,1663,1662,1,0, + 0,0,1663,1664,1,0,0,0,1664,31,1,0,0,0,1665,1666,5,217,0,0,1666,1667, + 5,2,0,0,1667,1672,3,34,17,0,1668,1669,5,4,0,0,1669,1671,3,34,17, + 0,1670,1668,1,0,0,0,1671,1674,1,0,0,0,1672,1670,1,0,0,0,1672,1673, + 1,0,0,0,1673,1675,1,0,0,0,1674,1672,1,0,0,0,1675,1676,5,3,0,0,1676, + 33,1,0,0,0,1677,1680,3,384,192,0,1678,1679,5,352,0,0,1679,1681,3, + 296,148,0,1680,1678,1,0,0,0,1680,1681,1,0,0,0,1681,1687,1,0,0,0, + 1682,1683,3,384,192,0,1683,1684,5,352,0,0,1684,1685,5,82,0,0,1685, + 1687,1,0,0,0,1686,1677,1,0,0,0,1686,1682,1,0,0,0,1687,35,1,0,0,0, + 1688,1689,7,11,0,0,1689,37,1,0,0,0,1690,1691,7,12,0,0,1691,39,1, + 0,0,0,1692,1698,3,100,50,0,1693,1698,3,396,198,0,1694,1698,3,298, + 149,0,1695,1698,3,300,150,0,1696,1698,3,302,151,0,1697,1692,1,0, + 0,0,1697,1693,1,0,0,0,1697,1694,1,0,0,0,1697,1695,1,0,0,0,1697,1696, + 1,0,0,0,1698,41,1,0,0,0,1699,1704,3,384,192,0,1700,1701,5,5,0,0, + 1701,1703,3,384,192,0,1702,1700,1,0,0,0,1703,1706,1,0,0,0,1704,1702, + 1,0,0,0,1704,1705,1,0,0,0,1705,43,1,0,0,0,1706,1704,1,0,0,0,1707, + 1708,5,346,0,0,1708,1713,3,46,23,0,1709,1710,5,4,0,0,1710,1712,3, + 46,23,0,1711,1709,1,0,0,0,1712,1715,1,0,0,0,1713,1711,1,0,0,0,1713, + 1714,1,0,0,0,1714,45,1,0,0,0,1715,1713,1,0,0,0,1716,1718,3,380,190, + 0,1717,1719,3,220,110,0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719, + 1721,1,0,0,0,1720,1722,5,20,0,0,1721,1720,1,0,0,0,1721,1722,1,0, + 0,0,1722,1723,1,0,0,0,1723,1724,5,2,0,0,1724,1725,3,26,13,0,1725, + 1726,5,3,0,0,1726,47,1,0,0,0,1727,1728,5,332,0,0,1728,1729,3,254, + 127,0,1729,49,1,0,0,0,1730,1731,5,207,0,0,1731,1745,3,62,31,0,1732, + 1733,5,218,0,0,1733,1734,5,31,0,0,1734,1745,3,268,134,0,1735,1745, + 3,20,10,0,1736,1745,3,18,9,0,1737,1745,3,250,125,0,1738,1745,3,70, + 35,0,1739,1745,3,22,11,0,1740,1745,3,24,12,0,1741,1742,5,297,0,0, + 1742,1745,3,54,27,0,1743,1745,3,52,26,0,1744,1730,1,0,0,0,1744,1732, + 1,0,0,0,1744,1735,1,0,0,0,1744,1736,1,0,0,0,1744,1737,1,0,0,0,1744, + 1738,1,0,0,0,1744,1739,1,0,0,0,1744,1740,1,0,0,0,1744,1741,1,0,0, + 0,1744,1743,1,0,0,0,1745,1748,1,0,0,0,1746,1744,1,0,0,0,1746,1747, + 1,0,0,0,1747,51,1,0,0,0,1748,1746,1,0,0,0,1749,1750,5,162,0,0,1750, + 1751,5,382,0,0,1751,53,1,0,0,0,1752,1753,5,2,0,0,1753,1758,3,56, + 28,0,1754,1755,5,4,0,0,1755,1757,3,56,28,0,1756,1754,1,0,0,0,1757, + 1760,1,0,0,0,1758,1756,1,0,0,0,1758,1759,1,0,0,0,1759,1761,1,0,0, + 0,1760,1758,1,0,0,0,1761,1762,5,3,0,0,1762,55,1,0,0,0,1763,1768, + 3,58,29,0,1764,1766,5,352,0,0,1765,1764,1,0,0,0,1765,1766,1,0,0, + 0,1766,1767,1,0,0,0,1767,1769,3,60,30,0,1768,1765,1,0,0,0,1768,1769, + 1,0,0,0,1769,57,1,0,0,0,1770,1775,3,384,192,0,1771,1772,5,5,0,0, + 1772,1774,3,384,192,0,1773,1771,1,0,0,0,1774,1777,1,0,0,0,1775,1773, + 1,0,0,0,1775,1776,1,0,0,0,1776,1780,1,0,0,0,1777,1775,1,0,0,0,1778, + 1780,3,396,198,0,1779,1770,1,0,0,0,1779,1778,1,0,0,0,1780,59,1,0, + 0,0,1781,1786,5,382,0,0,1782,1786,5,384,0,0,1783,1786,3,304,152, + 0,1784,1786,3,396,198,0,1785,1781,1,0,0,0,1785,1782,1,0,0,0,1785, + 1783,1,0,0,0,1785,1784,1,0,0,0,1786,61,1,0,0,0,1787,1788,5,2,0,0, + 1788,1793,3,64,32,0,1789,1790,5,4,0,0,1790,1792,3,64,32,0,1791,1789, + 1,0,0,0,1792,1795,1,0,0,0,1793,1791,1,0,0,0,1793,1794,1,0,0,0,1794, + 1796,1,0,0,0,1795,1793,1,0,0,0,1796,1797,5,3,0,0,1797,63,1,0,0,0, + 1798,1803,3,58,29,0,1799,1801,5,352,0,0,1800,1799,1,0,0,0,1800,1801, + 1,0,0,0,1801,1802,1,0,0,0,1802,1804,3,276,138,0,1803,1800,1,0,0, + 0,1803,1804,1,0,0,0,1804,65,1,0,0,0,1805,1806,5,2,0,0,1806,1811, + 3,296,148,0,1807,1808,5,4,0,0,1808,1810,3,296,148,0,1809,1807,1, + 0,0,0,1810,1813,1,0,0,0,1811,1809,1,0,0,0,1811,1812,1,0,0,0,1812, + 1814,1,0,0,0,1813,1811,1,0,0,0,1814,1815,5,3,0,0,1815,67,1,0,0,0, + 1816,1817,5,2,0,0,1817,1822,3,66,33,0,1818,1819,5,4,0,0,1819,1821, + 3,66,33,0,1820,1818,1,0,0,0,1821,1824,1,0,0,0,1822,1820,1,0,0,0, + 1822,1823,1,0,0,0,1823,1825,1,0,0,0,1824,1822,1,0,0,0,1825,1826, + 5,3,0,0,1826,69,1,0,0,0,1827,1828,5,283,0,0,1828,1829,5,20,0,0,1829, + 1834,3,72,36,0,1830,1831,5,283,0,0,1831,1832,5,31,0,0,1832,1834, + 3,74,37,0,1833,1827,1,0,0,0,1833,1830,1,0,0,0,1834,71,1,0,0,0,1835, + 1836,5,146,0,0,1836,1837,3,396,198,0,1837,1838,5,212,0,0,1838,1839, + 3,396,198,0,1839,1842,1,0,0,0,1840,1842,3,384,192,0,1841,1835,1, + 0,0,0,1841,1840,1,0,0,0,1842,73,1,0,0,0,1843,1847,3,396,198,0,1844, + 1845,5,346,0,0,1845,1846,5,267,0,0,1846,1848,3,54,27,0,1847,1844, + 1,0,0,0,1847,1848,1,0,0,0,1848,75,1,0,0,0,1849,1850,3,384,192,0, + 1850,1851,3,396,198,0,1851,77,1,0,0,0,1852,1853,3,28,14,0,1853,1854, + 3,26,13,0,1854,1909,1,0,0,0,1855,1857,3,154,77,0,1856,1858,3,110, + 55,0,1857,1856,1,0,0,0,1858,1859,1,0,0,0,1859,1857,1,0,0,0,1859, + 1860,1,0,0,0,1860,1909,1,0,0,0,1861,1862,5,84,0,0,1862,1863,5,123, + 0,0,1863,1864,3,86,43,0,1864,1866,3,248,124,0,1865,1867,3,146,73, + 0,1866,1865,1,0,0,0,1866,1867,1,0,0,0,1867,1909,1,0,0,0,1868,1869, + 5,329,0,0,1869,1870,3,86,43,0,1870,1871,3,248,124,0,1871,1873,3, + 128,64,0,1872,1874,3,146,73,0,1873,1872,1,0,0,0,1873,1874,1,0,0, + 0,1874,1909,1,0,0,0,1875,1876,5,179,0,0,1876,1877,5,152,0,0,1877, + 1878,3,86,43,0,1878,1879,3,248,124,0,1879,1885,5,332,0,0,1880,1886, + 3,100,50,0,1881,1882,5,2,0,0,1882,1883,3,26,13,0,1883,1884,5,3,0, + 0,1884,1886,1,0,0,0,1885,1880,1,0,0,0,1885,1881,1,0,0,0,1886,1887, + 1,0,0,0,1887,1888,3,248,124,0,1888,1889,5,203,0,0,1889,1893,3,284, + 142,0,1890,1892,3,130,65,0,1891,1890,1,0,0,0,1892,1895,1,0,0,0,1893, + 1891,1,0,0,0,1893,1894,1,0,0,0,1894,1899,1,0,0,0,1895,1893,1,0,0, + 0,1896,1898,3,132,66,0,1897,1896,1,0,0,0,1898,1901,1,0,0,0,1899, + 1897,1,0,0,0,1899,1900,1,0,0,0,1900,1905,1,0,0,0,1901,1899,1,0,0, + 0,1902,1904,3,134,67,0,1903,1902,1,0,0,0,1904,1907,1,0,0,0,1905, + 1903,1,0,0,0,1905,1906,1,0,0,0,1906,1909,1,0,0,0,1907,1905,1,0,0, + 0,1908,1852,1,0,0,0,1908,1855,1,0,0,0,1908,1861,1,0,0,0,1908,1868, + 1,0,0,0,1908,1875,1,0,0,0,1909,79,1,0,0,0,1910,1911,3,100,50,0,1911, + 81,1,0,0,0,1912,1913,3,100,50,0,1913,83,1,0,0,0,1914,1915,3,260, + 130,0,1915,85,1,0,0,0,1916,1917,3,260,130,0,1917,87,1,0,0,0,1918, + 1919,3,262,131,0,1919,89,1,0,0,0,1920,1921,3,262,131,0,1921,91,1, + 0,0,0,1922,1925,3,254,127,0,1923,1925,4,46,0,0,1924,1922,1,0,0,0, + 1924,1923,1,0,0,0,1925,93,1,0,0,0,1926,1927,3,254,127,0,1927,95, + 1,0,0,0,1928,1933,3,92,46,0,1929,1930,5,4,0,0,1930,1932,3,92,46, + 0,1931,1929,1,0,0,0,1932,1935,1,0,0,0,1933,1931,1,0,0,0,1933,1934, + 1,0,0,0,1934,97,1,0,0,0,1935,1933,1,0,0,0,1936,1937,3,380,190,0, + 1937,99,1,0,0,0,1938,1939,5,136,0,0,1939,1940,5,2,0,0,1940,1941, + 3,276,138,0,1941,1942,5,3,0,0,1942,1945,1,0,0,0,1943,1945,3,254, + 127,0,1944,1938,1,0,0,0,1944,1943,1,0,0,0,1945,101,1,0,0,0,1946, + 1947,5,209,0,0,1947,1948,5,31,0,0,1948,1950,3,106,53,0,1949,1946, + 1,0,0,0,1949,1950,1,0,0,0,1950,1954,1,0,0,0,1951,1952,5,44,0,0,1952, + 1953,5,31,0,0,1953,1955,3,108,54,0,1954,1951,1,0,0,0,1954,1955,1, + 0,0,0,1955,1959,1,0,0,0,1956,1957,5,93,0,0,1957,1958,5,31,0,0,1958, + 1960,3,108,54,0,1959,1956,1,0,0,0,1959,1960,1,0,0,0,1960,1964,1, + 0,0,0,1961,1962,5,278,0,0,1962,1963,5,31,0,0,1963,1965,3,106,53, + 0,1964,1961,1,0,0,0,1964,1965,1,0,0,0,1965,1967,1,0,0,0,1966,1968, + 3,360,180,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,1970,1,0,0, + 0,1969,1971,3,104,52,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971, + 1974,1,0,0,0,1972,1973,5,202,0,0,1973,1975,3,276,138,0,1974,1972, + 1,0,0,0,1974,1975,1,0,0,0,1975,103,1,0,0,0,1976,1979,5,165,0,0,1977, + 1980,5,10,0,0,1978,1980,3,276,138,0,1979,1977,1,0,0,0,1979,1978, + 1,0,0,0,1980,105,1,0,0,0,1981,1986,3,116,58,0,1982,1983,5,4,0,0, + 1983,1985,3,116,58,0,1984,1982,1,0,0,0,1985,1988,1,0,0,0,1986,1984, + 1,0,0,0,1986,1987,1,0,0,0,1987,107,1,0,0,0,1988,1986,1,0,0,0,1989, + 1994,3,276,138,0,1990,1991,5,4,0,0,1991,1993,3,276,138,0,1992,1990, + 1,0,0,0,1993,1996,1,0,0,0,1994,1992,1,0,0,0,1994,1995,1,0,0,0,1995, + 109,1,0,0,0,1996,1994,1,0,0,0,1997,1998,3,28,14,0,1998,1999,3,120, + 60,0,1999,111,1,0,0,0,2000,2001,6,56,-1,0,2001,2002,3,114,57,0,2002, + 2023,1,0,0,0,2003,2004,10,3,0,0,2004,2006,7,13,0,0,2005,2007,3,204, + 102,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008, + 2022,3,112,56,4,2009,2010,10,2,0,0,2010,2012,5,148,0,0,2011,2013, + 3,204,102,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0, + 0,2014,2022,3,112,56,3,2015,2016,10,1,0,0,2016,2018,7,14,0,0,2017, + 2019,3,204,102,0,2018,2017,1,0,0,0,2018,2019,1,0,0,0,2019,2020,1, + 0,0,0,2020,2022,3,112,56,2,2021,2003,1,0,0,0,2021,2009,1,0,0,0,2021, + 2015,1,0,0,0,2022,2025,1,0,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0, + 0,2024,113,1,0,0,0,2025,2023,1,0,0,0,2026,2036,3,122,61,0,2027,2036, + 3,118,59,0,2028,2029,5,293,0,0,2029,2036,3,86,43,0,2030,2036,3,234, + 117,0,2031,2032,5,2,0,0,2032,2033,3,26,13,0,2033,2034,5,3,0,0,2034, + 2036,1,0,0,0,2035,2026,1,0,0,0,2035,2027,1,0,0,0,2035,2028,1,0,0, + 0,2035,2030,1,0,0,0,2035,2031,1,0,0,0,2036,115,1,0,0,0,2037,2040, + 3,92,46,0,2038,2040,3,276,138,0,2039,2037,1,0,0,0,2039,2038,1,0, + 0,0,2040,2042,1,0,0,0,2041,2043,7,15,0,0,2042,2041,1,0,0,0,2042, + 2043,1,0,0,0,2043,2046,1,0,0,0,2044,2045,5,199,0,0,2045,2047,7,16, + 0,0,2046,2044,1,0,0,0,2046,2047,1,0,0,0,2047,117,1,0,0,0,2048,2050, + 3,154,77,0,2049,2051,3,120,60,0,2050,2049,1,0,0,0,2051,2052,1,0, + 0,0,2052,2050,1,0,0,0,2052,2053,1,0,0,0,2053,119,1,0,0,0,2054,2056, + 3,124,62,0,2055,2057,3,146,73,0,2056,2055,1,0,0,0,2056,2057,1,0, + 0,0,2057,2058,1,0,0,0,2058,2059,3,102,51,0,2059,2082,1,0,0,0,2060, + 2064,3,126,63,0,2061,2063,3,202,101,0,2062,2061,1,0,0,0,2063,2066, + 1,0,0,0,2064,2062,1,0,0,0,2064,2065,1,0,0,0,2065,2068,1,0,0,0,2066, + 2064,1,0,0,0,2067,2069,3,146,73,0,2068,2067,1,0,0,0,2068,2069,1, + 0,0,0,2069,2071,1,0,0,0,2070,2072,3,160,80,0,2071,2070,1,0,0,0,2071, + 2072,1,0,0,0,2072,2074,1,0,0,0,2073,2075,3,148,74,0,2074,2073,1, + 0,0,0,2074,2075,1,0,0,0,2075,2077,1,0,0,0,2076,2078,3,360,180,0, + 2077,2076,1,0,0,0,2077,2078,1,0,0,0,2078,2079,1,0,0,0,2079,2080, + 3,102,51,0,2080,2082,1,0,0,0,2081,2054,1,0,0,0,2081,2060,1,0,0,0, + 2082,121,1,0,0,0,2083,2085,3,124,62,0,2084,2086,3,154,77,0,2085, + 2084,1,0,0,0,2085,2086,1,0,0,0,2086,2090,1,0,0,0,2087,2089,3,202, + 101,0,2088,2087,1,0,0,0,2089,2092,1,0,0,0,2090,2088,1,0,0,0,2090, + 2091,1,0,0,0,2091,2094,1,0,0,0,2092,2090,1,0,0,0,2093,2095,3,146, + 73,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096, + 2098,3,160,80,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2100,1, + 0,0,0,2099,2101,3,148,74,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101, + 2103,1,0,0,0,2102,2104,3,360,180,0,2103,2102,1,0,0,0,2103,2104,1, + 0,0,0,2104,2128,1,0,0,0,2105,2107,3,126,63,0,2106,2108,3,154,77, + 0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2112,1,0,0,0,2109,2111, + 3,202,101,0,2110,2109,1,0,0,0,2111,2114,1,0,0,0,2112,2110,1,0,0, + 0,2112,2113,1,0,0,0,2113,2116,1,0,0,0,2114,2112,1,0,0,0,2115,2117, + 3,146,73,0,2116,2115,1,0,0,0,2116,2117,1,0,0,0,2117,2119,1,0,0,0, + 2118,2120,3,160,80,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120,2122, + 1,0,0,0,2121,2123,3,148,74,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0, + 2123,2125,1,0,0,0,2124,2126,3,360,180,0,2125,2124,1,0,0,0,2125,2126, + 1,0,0,0,2126,2128,1,0,0,0,2127,2083,1,0,0,0,2127,2105,1,0,0,0,2128, + 123,1,0,0,0,2129,2130,5,263,0,0,2130,2131,5,314,0,0,2131,2133,5, + 2,0,0,2132,2134,3,204,102,0,2133,2132,1,0,0,0,2133,2134,1,0,0,0, + 2134,2135,1,0,0,0,2135,2136,3,282,141,0,2136,2137,5,3,0,0,2137,2149, + 1,0,0,0,2138,2140,5,177,0,0,2139,2141,3,204,102,0,2140,2139,1,0, + 0,0,2140,2141,1,0,0,0,2141,2142,1,0,0,0,2142,2149,3,282,141,0,2143, + 2145,5,238,0,0,2144,2146,3,204,102,0,2145,2144,1,0,0,0,2145,2146, + 1,0,0,0,2146,2147,1,0,0,0,2147,2149,3,282,141,0,2148,2129,1,0,0, + 0,2148,2138,1,0,0,0,2148,2143,1,0,0,0,2149,2151,1,0,0,0,2150,2152, + 3,250,125,0,2151,2150,1,0,0,0,2151,2152,1,0,0,0,2152,2155,1,0,0, + 0,2153,2154,5,236,0,0,2154,2156,3,396,198,0,2155,2153,1,0,0,0,2155, + 2156,1,0,0,0,2156,2157,1,0,0,0,2157,2158,5,332,0,0,2158,2171,3,396, + 198,0,2159,2169,5,20,0,0,2160,2170,3,222,111,0,2161,2170,3,342,171, + 0,2162,2165,5,2,0,0,2163,2166,3,222,111,0,2164,2166,3,342,171,0, + 2165,2163,1,0,0,0,2165,2164,1,0,0,0,2166,2167,1,0,0,0,2167,2168, + 5,3,0,0,2168,2170,1,0,0,0,2169,2160,1,0,0,0,2169,2161,1,0,0,0,2169, + 2162,1,0,0,0,2170,2172,1,0,0,0,2171,2159,1,0,0,0,2171,2172,1,0,0, + 0,2172,2174,1,0,0,0,2173,2175,3,250,125,0,2174,2173,1,0,0,0,2174, + 2175,1,0,0,0,2175,2178,1,0,0,0,2176,2177,5,235,0,0,2177,2179,3,396, + 198,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,125,1,0,0,0,2180, + 2184,5,263,0,0,2181,2183,3,150,75,0,2182,2181,1,0,0,0,2183,2186, + 1,0,0,0,2184,2182,1,0,0,0,2184,2185,1,0,0,0,2185,2188,1,0,0,0,2186, + 2184,1,0,0,0,2187,2189,3,204,102,0,2188,2187,1,0,0,0,2188,2189,1, + 0,0,0,2189,2190,1,0,0,0,2190,2191,3,266,133,0,2191,127,1,0,0,0,2192, + 2193,5,269,0,0,2193,2194,3,142,71,0,2194,129,1,0,0,0,2195,2196,5, + 343,0,0,2196,2199,5,178,0,0,2197,2198,5,14,0,0,2198,2200,3,284,142, + 0,2199,2197,1,0,0,0,2199,2200,1,0,0,0,2200,2201,1,0,0,0,2201,2202, + 5,300,0,0,2202,2203,3,136,68,0,2203,131,1,0,0,0,2204,2205,5,343, + 0,0,2205,2206,5,197,0,0,2206,2209,5,178,0,0,2207,2208,5,31,0,0,2208, + 2210,5,296,0,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210,2213,1,0, + 0,0,2211,2212,5,14,0,0,2212,2214,3,284,142,0,2213,2211,1,0,0,0,2213, + 2214,1,0,0,0,2214,2215,1,0,0,0,2215,2216,5,300,0,0,2216,2217,3,138, + 69,0,2217,133,1,0,0,0,2218,2219,5,343,0,0,2219,2220,5,197,0,0,2220, + 2221,5,178,0,0,2221,2222,5,31,0,0,2222,2225,5,280,0,0,2223,2224, + 5,14,0,0,2224,2226,3,284,142,0,2225,2223,1,0,0,0,2225,2226,1,0,0, + 0,2226,2227,1,0,0,0,2227,2228,5,300,0,0,2228,2229,3,140,70,0,2229, + 135,1,0,0,0,2230,2238,5,84,0,0,2231,2232,5,329,0,0,2232,2233,5,269, + 0,0,2233,2238,5,363,0,0,2234,2235,5,329,0,0,2235,2236,5,269,0,0, + 2236,2238,3,142,71,0,2237,2230,1,0,0,0,2237,2231,1,0,0,0,2237,2234, + 1,0,0,0,2238,137,1,0,0,0,2239,2240,5,147,0,0,2240,2258,5,363,0,0, + 2241,2242,5,147,0,0,2242,2243,5,2,0,0,2243,2244,3,252,126,0,2244, + 2245,5,3,0,0,2245,2246,5,333,0,0,2246,2247,5,2,0,0,2247,2252,3,276, + 138,0,2248,2249,5,4,0,0,2249,2251,3,276,138,0,2250,2248,1,0,0,0, + 2251,2254,1,0,0,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253,2255, + 1,0,0,0,2254,2252,1,0,0,0,2255,2256,5,3,0,0,2256,2258,1,0,0,0,2257, + 2239,1,0,0,0,2257,2241,1,0,0,0,2258,139,1,0,0,0,2259,2264,5,84,0, + 0,2260,2261,5,329,0,0,2261,2262,5,269,0,0,2262,2264,3,142,71,0,2263, + 2259,1,0,0,0,2263,2260,1,0,0,0,2264,141,1,0,0,0,2265,2270,3,144, + 72,0,2266,2267,5,4,0,0,2267,2269,3,144,72,0,2268,2266,1,0,0,0,2269, + 2272,1,0,0,0,2270,2268,1,0,0,0,2270,2271,1,0,0,0,2271,143,1,0,0, + 0,2272,2270,1,0,0,0,2273,2274,3,254,127,0,2274,2275,5,352,0,0,2275, + 2276,3,276,138,0,2276,145,1,0,0,0,2277,2278,5,344,0,0,2278,2279, + 3,284,142,0,2279,147,1,0,0,0,2280,2281,5,132,0,0,2281,2282,3,284, + 142,0,2282,149,1,0,0,0,2283,2284,5,374,0,0,2284,2291,3,152,76,0, + 2285,2287,5,4,0,0,2286,2285,1,0,0,0,2286,2287,1,0,0,0,2287,2288, + 1,0,0,0,2288,2290,3,152,76,0,2289,2286,1,0,0,0,2290,2293,1,0,0,0, + 2291,2289,1,0,0,0,2291,2292,1,0,0,0,2292,2294,1,0,0,0,2293,2291, + 1,0,0,0,2294,2295,5,375,0,0,2295,151,1,0,0,0,2296,2310,3,384,192, + 0,2297,2298,3,384,192,0,2298,2299,5,2,0,0,2299,2304,3,292,146,0, + 2300,2301,5,4,0,0,2301,2303,3,292,146,0,2302,2300,1,0,0,0,2303,2306, + 1,0,0,0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2307,1,0,0,0,2306, + 2304,1,0,0,0,2307,2308,5,3,0,0,2308,2310,1,0,0,0,2309,2296,1,0,0, + 0,2309,2297,1,0,0,0,2310,153,1,0,0,0,2311,2312,5,123,0,0,2312,2317, + 3,206,103,0,2313,2314,5,4,0,0,2314,2316,3,206,103,0,2315,2313,1, + 0,0,0,2316,2319,1,0,0,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318, + 2323,1,0,0,0,2319,2317,1,0,0,0,2320,2322,3,202,101,0,2321,2320,1, + 0,0,0,2322,2325,1,0,0,0,2323,2321,1,0,0,0,2323,2324,1,0,0,0,2324, + 2327,1,0,0,0,2325,2323,1,0,0,0,2326,2328,3,170,85,0,2327,2326,1, + 0,0,0,2327,2328,1,0,0,0,2328,2330,1,0,0,0,2329,2331,3,176,88,0,2330, + 2329,1,0,0,0,2330,2331,1,0,0,0,2331,155,1,0,0,0,2332,2333,7,17,0, + 0,2333,157,1,0,0,0,2334,2336,5,119,0,0,2335,2334,1,0,0,0,2335,2336, + 1,0,0,0,2336,2337,1,0,0,0,2337,2338,7,18,0,0,2338,2339,5,20,0,0, + 2339,2340,5,201,0,0,2340,2349,3,400,200,0,2341,2343,5,119,0,0,2342, + 2341,1,0,0,0,2342,2343,1,0,0,0,2343,2344,1,0,0,0,2344,2345,7,19, + 0,0,2345,2346,5,20,0,0,2346,2347,5,201,0,0,2347,2349,3,288,144,0, + 2348,2335,1,0,0,0,2348,2342,1,0,0,0,2349,159,1,0,0,0,2350,2351,5, + 130,0,0,2351,2352,5,31,0,0,2352,2357,3,162,81,0,2353,2354,5,4,0, + 0,2354,2356,3,162,81,0,2355,2353,1,0,0,0,2356,2359,1,0,0,0,2357, + 2355,1,0,0,0,2357,2358,1,0,0,0,2358,2390,1,0,0,0,2359,2357,1,0,0, + 0,2360,2361,5,130,0,0,2361,2362,5,31,0,0,2362,2367,3,276,138,0,2363, + 2364,5,4,0,0,2364,2366,3,276,138,0,2365,2363,1,0,0,0,2366,2369,1, + 0,0,0,2367,2365,1,0,0,0,2367,2368,1,0,0,0,2368,2387,1,0,0,0,2369, + 2367,1,0,0,0,2370,2371,5,346,0,0,2371,2388,5,256,0,0,2372,2373,5, + 346,0,0,2373,2388,5,61,0,0,2374,2375,5,131,0,0,2375,2376,5,271,0, + 0,2376,2377,5,2,0,0,2377,2382,3,168,84,0,2378,2379,5,4,0,0,2379, + 2381,3,168,84,0,2380,2378,1,0,0,0,2381,2384,1,0,0,0,2382,2380,1, + 0,0,0,2382,2383,1,0,0,0,2383,2385,1,0,0,0,2384,2382,1,0,0,0,2385, + 2386,5,3,0,0,2386,2388,1,0,0,0,2387,2370,1,0,0,0,2387,2372,1,0,0, + 0,2387,2374,1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389,2350, + 1,0,0,0,2389,2360,1,0,0,0,2390,161,1,0,0,0,2391,2395,3,92,46,0,2392, + 2395,3,164,82,0,2393,2395,3,276,138,0,2394,2391,1,0,0,0,2394,2392, + 1,0,0,0,2394,2393,1,0,0,0,2395,163,1,0,0,0,2396,2397,7,20,0,0,2397, + 2398,5,2,0,0,2398,2403,3,168,84,0,2399,2400,5,4,0,0,2400,2402,3, + 168,84,0,2401,2399,1,0,0,0,2402,2405,1,0,0,0,2403,2401,1,0,0,0,2403, + 2404,1,0,0,0,2404,2406,1,0,0,0,2405,2403,1,0,0,0,2406,2407,5,3,0, + 0,2407,2422,1,0,0,0,2408,2409,5,131,0,0,2409,2410,5,271,0,0,2410, + 2411,5,2,0,0,2411,2416,3,166,83,0,2412,2413,5,4,0,0,2413,2415,3, + 166,83,0,2414,2412,1,0,0,0,2415,2418,1,0,0,0,2416,2414,1,0,0,0,2416, + 2417,1,0,0,0,2417,2419,1,0,0,0,2418,2416,1,0,0,0,2419,2420,5,3,0, + 0,2420,2422,1,0,0,0,2421,2396,1,0,0,0,2421,2408,1,0,0,0,2422,165, + 1,0,0,0,2423,2426,3,164,82,0,2424,2426,3,168,84,0,2425,2423,1,0, + 0,0,2425,2424,1,0,0,0,2426,167,1,0,0,0,2427,2448,3,92,46,0,2428, + 2448,3,276,138,0,2429,2444,5,2,0,0,2430,2433,3,92,46,0,2431,2433, + 3,276,138,0,2432,2430,1,0,0,0,2432,2431,1,0,0,0,2433,2441,1,0,0, + 0,2434,2437,5,4,0,0,2435,2438,3,92,46,0,2436,2438,3,276,138,0,2437, + 2435,1,0,0,0,2437,2436,1,0,0,0,2438,2440,1,0,0,0,2439,2434,1,0,0, + 0,2440,2443,1,0,0,0,2441,2439,1,0,0,0,2441,2442,1,0,0,0,2442,2445, + 1,0,0,0,2443,2441,1,0,0,0,2444,2432,1,0,0,0,2444,2445,1,0,0,0,2445, + 2446,1,0,0,0,2446,2448,5,3,0,0,2447,2427,1,0,0,0,2447,2428,1,0,0, + 0,2447,2429,1,0,0,0,2448,169,1,0,0,0,2449,2450,5,223,0,0,2450,2451, + 5,2,0,0,2451,2452,3,266,133,0,2452,2453,5,119,0,0,2453,2454,3,172, + 86,0,2454,2455,5,140,0,0,2455,2456,5,2,0,0,2456,2461,3,174,87,0, + 2457,2458,5,4,0,0,2458,2460,3,174,87,0,2459,2457,1,0,0,0,2460,2463, + 1,0,0,0,2461,2459,1,0,0,0,2461,2462,1,0,0,0,2462,2464,1,0,0,0,2463, + 2461,1,0,0,0,2464,2465,5,3,0,0,2465,2466,5,3,0,0,2466,171,1,0,0, + 0,2467,2480,3,384,192,0,2468,2469,5,2,0,0,2469,2474,3,384,192,0, + 2470,2471,5,4,0,0,2471,2473,3,384,192,0,2472,2470,1,0,0,0,2473,2476, + 1,0,0,0,2474,2472,1,0,0,0,2474,2475,1,0,0,0,2475,2477,1,0,0,0,2476, + 2474,1,0,0,0,2477,2478,5,3,0,0,2478,2480,1,0,0,0,2479,2467,1,0,0, + 0,2479,2468,1,0,0,0,2480,173,1,0,0,0,2481,2486,3,276,138,0,2482, + 2484,5,20,0,0,2483,2482,1,0,0,0,2483,2484,1,0,0,0,2484,2485,1,0, + 0,0,2485,2487,3,384,192,0,2486,2483,1,0,0,0,2486,2487,1,0,0,0,2487, + 175,1,0,0,0,2488,2490,5,327,0,0,2489,2491,3,178,89,0,2490,2489,1, + 0,0,0,2490,2491,1,0,0,0,2491,2492,1,0,0,0,2492,2493,5,2,0,0,2493, + 2494,3,180,90,0,2494,2499,5,3,0,0,2495,2497,5,20,0,0,2496,2495,1, + 0,0,0,2496,2497,1,0,0,0,2497,2498,1,0,0,0,2498,2500,3,384,192,0, + 2499,2496,1,0,0,0,2499,2500,1,0,0,0,2500,177,1,0,0,0,2501,2502,7, + 21,0,0,2502,2503,5,199,0,0,2503,179,1,0,0,0,2504,2507,3,182,91,0, + 2505,2507,3,184,92,0,2506,2504,1,0,0,0,2506,2505,1,0,0,0,2507,181, + 1,0,0,0,2508,2509,3,188,94,0,2509,2510,5,119,0,0,2510,2511,3,190, + 95,0,2511,2512,5,140,0,0,2512,2513,5,2,0,0,2513,2518,3,192,96,0, + 2514,2515,5,4,0,0,2515,2517,3,192,96,0,2516,2514,1,0,0,0,2517,2520, + 1,0,0,0,2518,2516,1,0,0,0,2518,2519,1,0,0,0,2519,2521,1,0,0,0,2520, + 2518,1,0,0,0,2521,2522,5,3,0,0,2522,183,1,0,0,0,2523,2524,5,2,0, + 0,2524,2529,3,188,94,0,2525,2526,5,4,0,0,2526,2528,3,188,94,0,2527, + 2525,1,0,0,0,2528,2531,1,0,0,0,2529,2527,1,0,0,0,2529,2530,1,0,0, + 0,2530,2532,1,0,0,0,2531,2529,1,0,0,0,2532,2533,5,3,0,0,2533,2534, + 5,119,0,0,2534,2535,3,190,95,0,2535,2536,5,140,0,0,2536,2537,5,2, + 0,0,2537,2542,3,186,93,0,2538,2539,5,4,0,0,2539,2541,3,186,93,0, + 2540,2538,1,0,0,0,2541,2544,1,0,0,0,2542,2540,1,0,0,0,2542,2543, + 1,0,0,0,2543,2545,1,0,0,0,2544,2542,1,0,0,0,2545,2546,5,3,0,0,2546, + 185,1,0,0,0,2547,2548,5,2,0,0,2548,2553,3,194,97,0,2549,2550,5,4, + 0,0,2550,2552,3,194,97,0,2551,2549,1,0,0,0,2552,2555,1,0,0,0,2553, + 2551,1,0,0,0,2553,2554,1,0,0,0,2554,2556,1,0,0,0,2555,2553,1,0,0, + 0,2556,2558,5,3,0,0,2557,2559,3,196,98,0,2558,2557,1,0,0,0,2558, + 2559,1,0,0,0,2559,187,1,0,0,0,2560,2561,3,384,192,0,2561,189,1,0, + 0,0,2562,2563,3,384,192,0,2563,191,1,0,0,0,2564,2566,3,194,97,0, + 2565,2567,3,196,98,0,2566,2565,1,0,0,0,2566,2567,1,0,0,0,2567,193, + 1,0,0,0,2568,2569,3,254,127,0,2569,195,1,0,0,0,2570,2572,5,20,0, + 0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2573,1,0,0,0,2573,2574, + 3,384,192,0,2574,197,1,0,0,0,2575,2576,5,137,0,0,2576,2577,5,197, + 0,0,2577,2578,5,105,0,0,2578,199,1,0,0,0,2579,2580,5,137,0,0,2580, + 2581,5,105,0,0,2581,201,1,0,0,0,2582,2583,5,158,0,0,2583,2585,5, + 338,0,0,2584,2586,5,211,0,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0, + 2586,2587,1,0,0,0,2587,2588,3,90,45,0,2588,2597,5,2,0,0,2589,2594, + 3,276,138,0,2590,2591,5,4,0,0,2591,2593,3,276,138,0,2592,2590,1, + 0,0,0,2593,2596,1,0,0,0,2594,2592,1,0,0,0,2594,2595,1,0,0,0,2595, + 2598,1,0,0,0,2596,2594,1,0,0,0,2597,2589,1,0,0,0,2597,2598,1,0,0, + 0,2598,2599,1,0,0,0,2599,2600,5,3,0,0,2600,2612,3,248,124,0,2601, + 2603,5,20,0,0,2602,2601,1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0, + 0,0,2604,2609,3,384,192,0,2605,2606,5,4,0,0,2606,2608,3,384,192, + 0,2607,2605,1,0,0,0,2608,2611,1,0,0,0,2609,2607,1,0,0,0,2609,2610, + 1,0,0,0,2610,2613,1,0,0,0,2611,2609,1,0,0,0,2612,2602,1,0,0,0,2612, + 2613,1,0,0,0,2613,203,1,0,0,0,2614,2615,7,22,0,0,2615,205,1,0,0, + 0,2616,2628,3,86,43,0,2617,2619,5,158,0,0,2618,2617,1,0,0,0,2618, + 2619,1,0,0,0,2619,2620,1,0,0,0,2620,2624,3,232,116,0,2621,2623,3, + 208,104,0,2622,2621,1,0,0,0,2623,2626,1,0,0,0,2624,2622,1,0,0,0, + 2624,2625,1,0,0,0,2625,2628,1,0,0,0,2626,2624,1,0,0,0,2627,2616, + 1,0,0,0,2627,2618,1,0,0,0,2628,207,1,0,0,0,2629,2633,3,210,105,0, + 2630,2633,3,170,85,0,2631,2633,3,176,88,0,2632,2629,1,0,0,0,2632, + 2630,1,0,0,0,2632,2631,1,0,0,0,2633,209,1,0,0,0,2634,2635,3,212, + 106,0,2635,2637,5,155,0,0,2636,2638,5,158,0,0,2637,2636,1,0,0,0, + 2637,2638,1,0,0,0,2638,2639,1,0,0,0,2639,2641,3,232,116,0,2640,2642, + 3,214,107,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,2652,1,0,0, + 0,2643,2644,5,194,0,0,2644,2645,3,212,106,0,2645,2647,5,155,0,0, + 2646,2648,5,158,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2649, + 1,0,0,0,2649,2650,3,232,116,0,2650,2652,1,0,0,0,2651,2634,1,0,0, + 0,2651,2643,1,0,0,0,2652,211,1,0,0,0,2653,2655,5,144,0,0,2654,2653, + 1,0,0,0,2654,2655,1,0,0,0,2655,2678,1,0,0,0,2656,2678,5,60,0,0,2657, + 2659,5,161,0,0,2658,2660,5,211,0,0,2659,2658,1,0,0,0,2659,2660,1, + 0,0,0,2660,2678,1,0,0,0,2661,2663,5,161,0,0,2662,2661,1,0,0,0,2662, + 2663,1,0,0,0,2663,2664,1,0,0,0,2664,2678,5,264,0,0,2665,2667,5,250, + 0,0,2666,2668,5,211,0,0,2667,2666,1,0,0,0,2667,2668,1,0,0,0,2668, + 2678,1,0,0,0,2669,2671,5,124,0,0,2670,2672,5,211,0,0,2671,2670,1, + 0,0,0,2671,2672,1,0,0,0,2672,2678,1,0,0,0,2673,2675,5,161,0,0,2674, + 2673,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676,2678,5,15, + 0,0,2677,2654,1,0,0,0,2677,2656,1,0,0,0,2677,2657,1,0,0,0,2677,2662, + 1,0,0,0,2677,2665,1,0,0,0,2677,2669,1,0,0,0,2677,2674,1,0,0,0,2678, + 213,1,0,0,0,2679,2680,5,203,0,0,2680,2684,3,284,142,0,2681,2682, + 5,332,0,0,2682,2684,3,220,110,0,2683,2679,1,0,0,0,2683,2681,1,0, + 0,0,2684,215,1,0,0,0,2685,2686,5,295,0,0,2686,2688,5,2,0,0,2687, + 2689,3,218,109,0,2688,2687,1,0,0,0,2688,2689,1,0,0,0,2689,2690,1, + 0,0,0,2690,2695,5,3,0,0,2691,2692,5,243,0,0,2692,2693,5,2,0,0,2693, + 2694,5,382,0,0,2694,2696,5,3,0,0,2695,2691,1,0,0,0,2695,2696,1,0, + 0,0,2696,217,1,0,0,0,2697,2699,5,362,0,0,2698,2697,1,0,0,0,2698, + 2699,1,0,0,0,2699,2700,1,0,0,0,2700,2701,7,23,0,0,2701,2722,5,222, + 0,0,2702,2703,3,276,138,0,2703,2704,5,258,0,0,2704,2722,1,0,0,0, + 2705,2706,5,29,0,0,2706,2707,5,382,0,0,2707,2708,5,210,0,0,2708, + 2709,5,201,0,0,2709,2718,5,382,0,0,2710,2716,5,203,0,0,2711,2717, + 3,384,192,0,2712,2713,3,378,189,0,2713,2714,5,2,0,0,2714,2715,5, + 3,0,0,2715,2717,1,0,0,0,2716,2711,1,0,0,0,2716,2712,1,0,0,0,2717, + 2719,1,0,0,0,2718,2710,1,0,0,0,2718,2719,1,0,0,0,2719,2722,1,0,0, + 0,2720,2722,3,276,138,0,2721,2698,1,0,0,0,2721,2702,1,0,0,0,2721, + 2705,1,0,0,0,2721,2720,1,0,0,0,2722,219,1,0,0,0,2723,2724,5,2,0, + 0,2724,2725,3,222,111,0,2725,2726,5,3,0,0,2726,221,1,0,0,0,2727, + 2732,3,380,190,0,2728,2729,5,4,0,0,2729,2731,3,380,190,0,2730,2728, + 1,0,0,0,2731,2734,1,0,0,0,2732,2730,1,0,0,0,2732,2733,1,0,0,0,2733, + 223,1,0,0,0,2734,2732,1,0,0,0,2735,2736,5,2,0,0,2736,2741,3,226, + 113,0,2737,2738,5,4,0,0,2738,2740,3,226,113,0,2739,2737,1,0,0,0, + 2740,2743,1,0,0,0,2741,2739,1,0,0,0,2741,2742,1,0,0,0,2742,2744, + 1,0,0,0,2743,2741,1,0,0,0,2744,2745,5,3,0,0,2745,225,1,0,0,0,2746, + 2748,3,380,190,0,2747,2749,7,15,0,0,2748,2747,1,0,0,0,2748,2749, + 1,0,0,0,2749,227,1,0,0,0,2750,2751,5,2,0,0,2751,2756,3,230,115,0, + 2752,2753,5,4,0,0,2753,2755,3,230,115,0,2754,2752,1,0,0,0,2755,2758, + 1,0,0,0,2756,2754,1,0,0,0,2756,2757,1,0,0,0,2757,2759,1,0,0,0,2758, + 2756,1,0,0,0,2759,2760,5,3,0,0,2760,229,1,0,0,0,2761,2763,3,98,49, + 0,2762,2764,3,24,12,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764,231, + 1,0,0,0,2765,2769,3,86,43,0,2766,2769,3,90,45,0,2767,2769,3,100, + 50,0,2768,2765,1,0,0,0,2768,2766,1,0,0,0,2768,2767,1,0,0,0,2769, + 2771,1,0,0,0,2770,2772,3,158,79,0,2771,2770,1,0,0,0,2771,2772,1, + 0,0,0,2772,2774,1,0,0,0,2773,2775,3,216,108,0,2774,2773,1,0,0,0, + 2774,2775,1,0,0,0,2775,2776,1,0,0,0,2776,2777,3,248,124,0,2777,2797, + 1,0,0,0,2778,2779,5,2,0,0,2779,2780,3,26,13,0,2780,2782,5,3,0,0, + 2781,2783,3,216,108,0,2782,2781,1,0,0,0,2782,2783,1,0,0,0,2783,2784, + 1,0,0,0,2784,2785,3,248,124,0,2785,2797,1,0,0,0,2786,2787,5,2,0, + 0,2787,2788,3,206,103,0,2788,2790,5,3,0,0,2789,2791,3,216,108,0, + 2790,2789,1,0,0,0,2790,2791,1,0,0,0,2791,2792,1,0,0,0,2792,2793, + 3,248,124,0,2793,2797,1,0,0,0,2794,2797,3,234,117,0,2795,2797,3, + 246,123,0,2796,2768,1,0,0,0,2796,2778,1,0,0,0,2796,2786,1,0,0,0, + 2796,2794,1,0,0,0,2796,2795,1,0,0,0,2797,233,1,0,0,0,2798,2799,5, + 333,0,0,2799,2804,3,276,138,0,2800,2801,5,4,0,0,2801,2803,3,276, + 138,0,2802,2800,1,0,0,0,2803,2806,1,0,0,0,2804,2802,1,0,0,0,2804, + 2805,1,0,0,0,2805,2807,1,0,0,0,2806,2804,1,0,0,0,2807,2808,3,248, + 124,0,2808,235,1,0,0,0,2809,2810,5,293,0,0,2810,2812,3,86,43,0,2811, + 2813,3,238,119,0,2812,2811,1,0,0,0,2812,2813,1,0,0,0,2813,2829,1, + 0,0,0,2814,2815,5,293,0,0,2815,2816,5,2,0,0,2816,2817,3,86,43,0, + 2817,2819,5,3,0,0,2818,2820,3,238,119,0,2819,2818,1,0,0,0,2819,2820, + 1,0,0,0,2820,2829,1,0,0,0,2821,2822,5,293,0,0,2822,2823,5,2,0,0, + 2823,2824,3,26,13,0,2824,2826,5,3,0,0,2825,2827,3,238,119,0,2826, + 2825,1,0,0,0,2826,2827,1,0,0,0,2827,2829,1,0,0,0,2828,2809,1,0,0, + 0,2828,2814,1,0,0,0,2828,2821,1,0,0,0,2829,237,1,0,0,0,2830,2831, + 5,346,0,0,2831,2832,5,274,0,0,2832,2850,5,217,0,0,2833,2834,7,24, + 0,0,2834,2847,5,31,0,0,2835,2836,5,2,0,0,2836,2841,3,276,138,0,2837, + 2838,5,4,0,0,2838,2840,3,276,138,0,2839,2837,1,0,0,0,2840,2843,1, + 0,0,0,2841,2839,1,0,0,0,2841,2842,1,0,0,0,2842,2844,1,0,0,0,2843, + 2841,1,0,0,0,2844,2845,5,3,0,0,2845,2848,1,0,0,0,2846,2848,3,276, + 138,0,2847,2835,1,0,0,0,2847,2846,1,0,0,0,2848,2850,1,0,0,0,2849, + 2830,1,0,0,0,2849,2833,1,0,0,0,2850,2860,1,0,0,0,2851,2852,7,25, + 0,0,2852,2858,5,31,0,0,2853,2854,5,2,0,0,2854,2855,3,106,53,0,2855, + 2856,5,3,0,0,2856,2859,1,0,0,0,2857,2859,3,116,58,0,2858,2853,1, + 0,0,0,2858,2857,1,0,0,0,2859,2861,1,0,0,0,2860,2851,1,0,0,0,2860, + 2861,1,0,0,0,2861,239,1,0,0,0,2862,2863,3,384,192,0,2863,2864,5, + 373,0,0,2864,2865,3,236,118,0,2865,241,1,0,0,0,2866,2869,3,236,118, + 0,2867,2869,3,240,120,0,2868,2866,1,0,0,0,2868,2867,1,0,0,0,2869, + 243,1,0,0,0,2870,2873,3,242,121,0,2871,2873,3,280,140,0,2872,2870, + 1,0,0,0,2872,2871,1,0,0,0,2873,245,1,0,0,0,2874,2875,3,374,187,0, + 2875,2884,5,2,0,0,2876,2881,3,244,122,0,2877,2878,5,4,0,0,2878,2880, + 3,244,122,0,2879,2877,1,0,0,0,2880,2883,1,0,0,0,2881,2879,1,0,0, + 0,2881,2882,1,0,0,0,2882,2885,1,0,0,0,2883,2881,1,0,0,0,2884,2876, + 1,0,0,0,2884,2885,1,0,0,0,2885,2886,1,0,0,0,2886,2887,5,3,0,0,2887, + 2888,3,248,124,0,2888,247,1,0,0,0,2889,2891,5,20,0,0,2890,2889,1, + 0,0,0,2890,2891,1,0,0,0,2891,2892,1,0,0,0,2892,2894,3,386,193,0, + 2893,2895,3,220,110,0,2894,2893,1,0,0,0,2894,2895,1,0,0,0,2895,2897, + 1,0,0,0,2896,2890,1,0,0,0,2896,2897,1,0,0,0,2897,249,1,0,0,0,2898, + 2899,5,257,0,0,2899,2900,5,121,0,0,2900,2901,5,266,0,0,2901,2905, + 3,396,198,0,2902,2903,5,346,0,0,2903,2904,5,267,0,0,2904,2906,3, + 54,27,0,2905,2902,1,0,0,0,2905,2906,1,0,0,0,2906,2948,1,0,0,0,2907, + 2908,5,257,0,0,2908,2909,5,121,0,0,2909,2919,5,85,0,0,2910,2911, + 5,113,0,0,2911,2912,5,299,0,0,2912,2913,5,31,0,0,2913,2917,3,396, + 198,0,2914,2915,5,101,0,0,2915,2916,5,31,0,0,2916,2918,3,396,198, + 0,2917,2914,1,0,0,0,2917,2918,1,0,0,0,2918,2920,1,0,0,0,2919,2910, + 1,0,0,0,2919,2920,1,0,0,0,2920,2926,1,0,0,0,2921,2922,5,48,0,0,2922, + 2923,5,154,0,0,2923,2924,5,299,0,0,2924,2925,5,31,0,0,2925,2927, + 3,396,198,0,2926,2921,1,0,0,0,2926,2927,1,0,0,0,2927,2933,1,0,0, + 0,2928,2929,5,177,0,0,2929,2930,5,156,0,0,2930,2931,5,299,0,0,2931, + 2932,5,31,0,0,2932,2934,3,396,198,0,2933,2928,1,0,0,0,2933,2934, + 1,0,0,0,2934,2939,1,0,0,0,2935,2936,5,166,0,0,2936,2937,5,299,0, + 0,2937,2938,5,31,0,0,2938,2940,3,396,198,0,2939,2935,1,0,0,0,2939, + 2940,1,0,0,0,2940,2945,1,0,0,0,2941,2942,5,198,0,0,2942,2943,5,83, + 0,0,2943,2944,5,20,0,0,2944,2946,3,396,198,0,2945,2941,1,0,0,0,2945, + 2946,1,0,0,0,2946,2948,1,0,0,0,2947,2898,1,0,0,0,2947,2907,1,0,0, + 0,2948,251,1,0,0,0,2949,2954,3,254,127,0,2950,2951,5,4,0,0,2951, + 2953,3,254,127,0,2952,2950,1,0,0,0,2953,2956,1,0,0,0,2954,2952,1, + 0,0,0,2954,2955,1,0,0,0,2955,253,1,0,0,0,2956,2954,1,0,0,0,2957, + 2962,3,380,190,0,2958,2959,5,5,0,0,2959,2961,3,380,190,0,2960,2958, + 1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963,1,0,0,0,2963, + 255,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,258,129,0,2966,2967,5, + 4,0,0,2967,2969,3,258,129,0,2968,2966,1,0,0,0,2969,2972,1,0,0,0, + 2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,257,1,0,0,0,2972,2970,1, + 0,0,0,2973,2976,3,254,127,0,2974,2975,5,207,0,0,2975,2977,3,54,27, + 0,2976,2974,1,0,0,0,2976,2977,1,0,0,0,2977,259,1,0,0,0,2978,2979, + 3,380,190,0,2979,2980,5,5,0,0,2980,2982,1,0,0,0,2981,2978,1,0,0, + 0,2981,2982,1,0,0,0,2982,2983,1,0,0,0,2983,2984,3,380,190,0,2984, + 261,1,0,0,0,2985,2986,3,380,190,0,2986,2987,5,5,0,0,2987,2989,1, + 0,0,0,2988,2985,1,0,0,0,2988,2989,1,0,0,0,2989,2990,1,0,0,0,2990, + 2991,3,380,190,0,2991,263,1,0,0,0,2992,2995,3,92,46,0,2993,2995, + 3,276,138,0,2994,2992,1,0,0,0,2994,2993,1,0,0,0,2995,3003,1,0,0, + 0,2996,2998,5,20,0,0,2997,2996,1,0,0,0,2997,2998,1,0,0,0,2998,3001, + 1,0,0,0,2999,3002,3,380,190,0,3000,3002,3,220,110,0,3001,2999,1, + 0,0,0,3001,3000,1,0,0,0,3002,3004,1,0,0,0,3003,2997,1,0,0,0,3003, + 3004,1,0,0,0,3004,265,1,0,0,0,3005,3010,3,264,132,0,3006,3007,5, + 4,0,0,3007,3009,3,264,132,0,3008,3006,1,0,0,0,3009,3012,1,0,0,0, + 3010,3008,1,0,0,0,3010,3011,1,0,0,0,3011,267,1,0,0,0,3012,3010,1, + 0,0,0,3013,3014,5,2,0,0,3014,3019,3,270,135,0,3015,3016,5,4,0,0, + 3016,3018,3,270,135,0,3017,3015,1,0,0,0,3018,3021,1,0,0,0,3019,3017, + 1,0,0,0,3019,3020,1,0,0,0,3020,3022,1,0,0,0,3021,3019,1,0,0,0,3022, + 3023,5,3,0,0,3023,269,1,0,0,0,3024,3027,3,272,136,0,3025,3027,3, + 344,172,0,3026,3024,1,0,0,0,3026,3025,1,0,0,0,3027,271,1,0,0,0,3028, + 3042,3,378,189,0,3029,3030,3,384,192,0,3030,3031,5,2,0,0,3031,3036, + 3,274,137,0,3032,3033,5,4,0,0,3033,3035,3,274,137,0,3034,3032,1, + 0,0,0,3035,3038,1,0,0,0,3036,3034,1,0,0,0,3036,3037,1,0,0,0,3037, + 3039,1,0,0,0,3038,3036,1,0,0,0,3039,3040,5,3,0,0,3040,3042,1,0,0, + 0,3041,3028,1,0,0,0,3041,3029,1,0,0,0,3042,273,1,0,0,0,3043,3046, + 3,378,189,0,3044,3046,3,296,148,0,3045,3043,1,0,0,0,3045,3044,1, + 0,0,0,3046,275,1,0,0,0,3047,3048,3,284,142,0,3048,277,1,0,0,0,3049, + 3050,3,384,192,0,3050,3051,5,373,0,0,3051,3052,3,276,138,0,3052, + 279,1,0,0,0,3053,3056,3,276,138,0,3054,3056,3,278,139,0,3055,3053, + 1,0,0,0,3055,3054,1,0,0,0,3056,281,1,0,0,0,3057,3062,3,276,138,0, + 3058,3059,5,4,0,0,3059,3061,3,276,138,0,3060,3058,1,0,0,0,3061,3064, + 1,0,0,0,3062,3060,1,0,0,0,3062,3063,1,0,0,0,3063,283,1,0,0,0,3064, + 3062,1,0,0,0,3065,3066,6,142,-1,0,3066,3067,7,26,0,0,3067,3078,3, + 284,142,5,3068,3069,5,105,0,0,3069,3070,5,2,0,0,3070,3071,3,26,13, + 0,3071,3072,5,3,0,0,3072,3078,1,0,0,0,3073,3075,3,288,144,0,3074, + 3076,3,286,143,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3078,1, + 0,0,0,3077,3065,1,0,0,0,3077,3068,1,0,0,0,3077,3073,1,0,0,0,3078, + 3087,1,0,0,0,3079,3080,10,2,0,0,3080,3081,5,14,0,0,3081,3086,3,284, + 142,3,3082,3083,10,1,0,0,3083,3084,5,208,0,0,3084,3086,3,284,142, + 2,3085,3079,1,0,0,0,3085,3082,1,0,0,0,3086,3089,1,0,0,0,3087,3085, + 1,0,0,0,3087,3088,1,0,0,0,3088,285,1,0,0,0,3089,3087,1,0,0,0,3090, + 3092,5,197,0,0,3091,3090,1,0,0,0,3091,3092,1,0,0,0,3092,3093,1,0, + 0,0,3093,3094,5,24,0,0,3094,3095,3,288,144,0,3095,3096,5,14,0,0, + 3096,3097,3,288,144,0,3097,3173,1,0,0,0,3098,3100,5,197,0,0,3099, + 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,140, + 0,0,3102,3103,5,2,0,0,3103,3108,3,276,138,0,3104,3105,5,4,0,0,3105, + 3107,3,276,138,0,3106,3104,1,0,0,0,3107,3110,1,0,0,0,3108,3106,1, + 0,0,0,3108,3109,1,0,0,0,3109,3111,1,0,0,0,3110,3108,1,0,0,0,3111, + 3112,5,3,0,0,3112,3173,1,0,0,0,3113,3115,5,197,0,0,3114,3113,1,0, + 0,0,3114,3115,1,0,0,0,3115,3116,1,0,0,0,3116,3117,5,140,0,0,3117, + 3118,5,2,0,0,3118,3119,3,26,13,0,3119,3120,5,3,0,0,3120,3173,1,0, + 0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0,3123, + 3124,1,0,0,0,3124,3125,7,27,0,0,3125,3173,3,288,144,0,3126,3128, + 5,197,0,0,3127,3126,1,0,0,0,3127,3128,1,0,0,0,3128,3129,1,0,0,0, + 3129,3130,7,28,0,0,3130,3144,7,29,0,0,3131,3132,5,2,0,0,3132,3145, + 5,3,0,0,3133,3134,5,2,0,0,3134,3139,3,276,138,0,3135,3136,5,4,0, + 0,3136,3138,3,276,138,0,3137,3135,1,0,0,0,3138,3141,1,0,0,0,3139, + 3137,1,0,0,0,3139,3140,1,0,0,0,3140,3142,1,0,0,0,3141,3139,1,0,0, + 0,3142,3143,5,3,0,0,3143,3145,1,0,0,0,3144,3131,1,0,0,0,3144,3133, + 1,0,0,0,3145,3173,1,0,0,0,3146,3148,5,197,0,0,3147,3146,1,0,0,0, + 3147,3148,1,0,0,0,3148,3149,1,0,0,0,3149,3150,7,28,0,0,3150,3153, + 3,288,144,0,3151,3152,5,100,0,0,3152,3154,3,396,198,0,3153,3151, + 1,0,0,0,3153,3154,1,0,0,0,3154,3173,1,0,0,0,3155,3157,5,153,0,0, + 3156,3158,5,197,0,0,3157,3156,1,0,0,0,3157,3158,1,0,0,0,3158,3159, + 1,0,0,0,3159,3173,5,198,0,0,3160,3162,5,153,0,0,3161,3163,5,197, + 0,0,3162,3161,1,0,0,0,3162,3163,1,0,0,0,3163,3164,1,0,0,0,3164,3173, + 7,30,0,0,3165,3167,5,153,0,0,3166,3168,5,197,0,0,3167,3166,1,0,0, + 0,3167,3168,1,0,0,0,3168,3169,1,0,0,0,3169,3170,5,92,0,0,3170,3171, + 5,123,0,0,3171,3173,3,288,144,0,3172,3091,1,0,0,0,3172,3099,1,0, + 0,0,3172,3114,1,0,0,0,3172,3122,1,0,0,0,3172,3127,1,0,0,0,3172,3147, + 1,0,0,0,3172,3155,1,0,0,0,3172,3160,1,0,0,0,3172,3165,1,0,0,0,3173, + 287,1,0,0,0,3174,3175,6,144,-1,0,3175,3179,3,292,146,0,3176,3177, + 7,31,0,0,3177,3179,3,288,144,7,3178,3174,1,0,0,0,3178,3176,1,0,0, + 0,3179,3201,1,0,0,0,3180,3181,10,6,0,0,3181,3182,7,32,0,0,3182,3200, + 3,288,144,7,3183,3184,10,5,0,0,3184,3185,7,33,0,0,3185,3200,3,288, + 144,6,3186,3187,10,4,0,0,3187,3188,5,367,0,0,3188,3200,3,288,144, + 5,3189,3190,10,3,0,0,3190,3191,5,370,0,0,3191,3200,3,288,144,4,3192, + 3193,10,2,0,0,3193,3194,5,368,0,0,3194,3200,3,288,144,3,3195,3196, + 10,1,0,0,3196,3197,3,298,149,0,3197,3198,3,288,144,2,3198,3200,1, + 0,0,0,3199,3180,1,0,0,0,3199,3183,1,0,0,0,3199,3186,1,0,0,0,3199, + 3189,1,0,0,0,3199,3192,1,0,0,0,3199,3195,1,0,0,0,3200,3203,1,0,0, + 0,3201,3199,1,0,0,0,3201,3202,1,0,0,0,3202,289,1,0,0,0,3203,3201, + 1,0,0,0,3204,3205,7,34,0,0,3205,291,1,0,0,0,3206,3207,6,146,-1,0, + 3207,3456,7,35,0,0,3208,3209,7,36,0,0,3209,3212,5,2,0,0,3210,3213, + 3,290,145,0,3211,3213,3,396,198,0,3212,3210,1,0,0,0,3212,3211,1, + 0,0,0,3213,3214,1,0,0,0,3214,3215,5,4,0,0,3215,3216,3,288,144,0, + 3216,3217,5,4,0,0,3217,3218,3,288,144,0,3218,3219,5,3,0,0,3219,3456, + 1,0,0,0,3220,3221,7,37,0,0,3221,3224,5,2,0,0,3222,3225,3,290,145, + 0,3223,3225,3,396,198,0,3224,3222,1,0,0,0,3224,3223,1,0,0,0,3225, + 3226,1,0,0,0,3226,3227,5,4,0,0,3227,3228,3,288,144,0,3228,3229,5, + 4,0,0,3229,3230,3,288,144,0,3230,3231,5,3,0,0,3231,3456,1,0,0,0, + 3232,3234,5,35,0,0,3233,3235,3,358,179,0,3234,3233,1,0,0,0,3235, + 3236,1,0,0,0,3236,3234,1,0,0,0,3236,3237,1,0,0,0,3237,3240,1,0,0, + 0,3238,3239,5,97,0,0,3239,3241,3,276,138,0,3240,3238,1,0,0,0,3240, + 3241,1,0,0,0,3241,3242,1,0,0,0,3242,3243,5,99,0,0,3243,3456,1,0, + 0,0,3244,3245,5,35,0,0,3245,3247,3,276,138,0,3246,3248,3,358,179, + 0,3247,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3247,1,0,0,0,3249,3250, + 1,0,0,0,3250,3253,1,0,0,0,3251,3252,5,97,0,0,3252,3254,3,276,138, + 0,3253,3251,1,0,0,0,3253,3254,1,0,0,0,3254,3255,1,0,0,0,3255,3256, + 5,99,0,0,3256,3456,1,0,0,0,3257,3258,7,38,0,0,3258,3259,5,2,0,0, + 3259,3260,3,276,138,0,3260,3261,5,20,0,0,3261,3262,3,326,163,0,3262, + 3263,5,3,0,0,3263,3456,1,0,0,0,3264,3265,5,286,0,0,3265,3274,5,2, + 0,0,3266,3271,3,264,132,0,3267,3268,5,4,0,0,3268,3270,3,264,132, + 0,3269,3267,1,0,0,0,3270,3273,1,0,0,0,3271,3269,1,0,0,0,3271,3272, + 1,0,0,0,3272,3275,1,0,0,0,3273,3271,1,0,0,0,3274,3266,1,0,0,0,3274, + 3275,1,0,0,0,3275,3276,1,0,0,0,3276,3456,5,3,0,0,3277,3278,5,116, + 0,0,3278,3279,5,2,0,0,3279,3282,3,276,138,0,3280,3281,5,138,0,0, + 3281,3283,5,199,0,0,3282,3280,1,0,0,0,3282,3283,1,0,0,0,3283,3284, + 1,0,0,0,3284,3285,5,3,0,0,3285,3456,1,0,0,0,3286,3287,5,17,0,0,3287, + 3288,5,2,0,0,3288,3291,3,276,138,0,3289,3290,5,138,0,0,3290,3292, + 5,199,0,0,3291,3289,1,0,0,0,3291,3292,1,0,0,0,3292,3293,1,0,0,0, + 3293,3294,5,3,0,0,3294,3456,1,0,0,0,3295,3296,5,157,0,0,3296,3297, + 5,2,0,0,3297,3300,3,276,138,0,3298,3299,5,138,0,0,3299,3301,5,199, + 0,0,3300,3298,1,0,0,0,3300,3301,1,0,0,0,3301,3302,1,0,0,0,3302,3303, + 5,3,0,0,3303,3456,1,0,0,0,3304,3305,5,225,0,0,3305,3306,5,2,0,0, + 3306,3307,3,288,144,0,3307,3308,5,140,0,0,3308,3309,3,288,144,0, + 3309,3310,5,3,0,0,3310,3456,1,0,0,0,3311,3456,3,296,148,0,3312,3456, + 5,363,0,0,3313,3314,3,378,189,0,3314,3315,5,5,0,0,3315,3316,5,363, + 0,0,3316,3456,1,0,0,0,3317,3318,5,2,0,0,3318,3321,3,264,132,0,3319, + 3320,5,4,0,0,3320,3322,3,264,132,0,3321,3319,1,0,0,0,3322,3323,1, + 0,0,0,3323,3321,1,0,0,0,3323,3324,1,0,0,0,3324,3325,1,0,0,0,3325, + 3326,5,3,0,0,3326,3456,1,0,0,0,3327,3328,5,2,0,0,3328,3329,3,26, + 13,0,3329,3330,5,3,0,0,3330,3456,1,0,0,0,3331,3332,5,136,0,0,3332, + 3333,5,2,0,0,3333,3334,3,276,138,0,3334,3335,5,3,0,0,3335,3456,1, + 0,0,0,3336,3337,3,374,187,0,3337,3349,5,2,0,0,3338,3340,3,204,102, + 0,3339,3338,1,0,0,0,3339,3340,1,0,0,0,3340,3341,1,0,0,0,3341,3346, + 3,280,140,0,3342,3343,5,4,0,0,3343,3345,3,280,140,0,3344,3342,1, + 0,0,0,3345,3348,1,0,0,0,3346,3344,1,0,0,0,3346,3347,1,0,0,0,3347, + 3350,1,0,0,0,3348,3346,1,0,0,0,3349,3339,1,0,0,0,3349,3350,1,0,0, + 0,3350,3351,1,0,0,0,3351,3358,5,3,0,0,3352,3353,5,114,0,0,3353,3354, + 5,2,0,0,3354,3355,5,344,0,0,3355,3356,3,284,142,0,3356,3357,5,3, + 0,0,3357,3359,1,0,0,0,3358,3352,1,0,0,0,3358,3359,1,0,0,0,3359,3362, + 1,0,0,0,3360,3361,7,39,0,0,3361,3363,5,199,0,0,3362,3360,1,0,0,0, + 3362,3363,1,0,0,0,3363,3366,1,0,0,0,3364,3365,5,213,0,0,3365,3367, + 3,366,183,0,3366,3364,1,0,0,0,3366,3367,1,0,0,0,3367,3456,1,0,0, + 0,3368,3369,3,384,192,0,3369,3370,5,372,0,0,3370,3371,3,276,138, + 0,3371,3456,1,0,0,0,3372,3373,5,2,0,0,3373,3376,3,384,192,0,3374, + 3375,5,4,0,0,3375,3377,3,384,192,0,3376,3374,1,0,0,0,3377,3378,1, + 0,0,0,3378,3376,1,0,0,0,3378,3379,1,0,0,0,3379,3380,1,0,0,0,3380, + 3381,5,3,0,0,3381,3382,5,372,0,0,3382,3383,3,276,138,0,3383,3456, + 1,0,0,0,3384,3456,3,94,47,0,3385,3386,5,2,0,0,3386,3387,3,276,138, + 0,3387,3388,5,3,0,0,3388,3456,1,0,0,0,3389,3390,5,110,0,0,3390,3391, + 5,2,0,0,3391,3392,3,384,192,0,3392,3393,5,123,0,0,3393,3394,3,288, + 144,0,3394,3395,5,3,0,0,3395,3456,1,0,0,0,3396,3397,7,40,0,0,3397, + 3398,5,2,0,0,3398,3399,3,288,144,0,3399,3400,7,41,0,0,3400,3403, + 3,288,144,0,3401,3402,7,42,0,0,3402,3404,3,288,144,0,3403,3401,1, + 0,0,0,3403,3404,1,0,0,0,3404,3405,1,0,0,0,3405,3406,5,3,0,0,3406, + 3456,1,0,0,0,3407,3408,5,315,0,0,3408,3410,5,2,0,0,3409,3411,7,43, + 0,0,3410,3409,1,0,0,0,3410,3411,1,0,0,0,3411,3413,1,0,0,0,3412,3414, + 3,288,144,0,3413,3412,1,0,0,0,3413,3414,1,0,0,0,3414,3415,1,0,0, + 0,3415,3416,5,123,0,0,3416,3417,3,288,144,0,3417,3418,5,3,0,0,3418, + 3456,1,0,0,0,3419,3420,5,215,0,0,3420,3421,5,2,0,0,3421,3422,3,288, + 144,0,3422,3423,5,224,0,0,3423,3424,3,288,144,0,3424,3425,5,123, + 0,0,3425,3428,3,288,144,0,3426,3427,5,119,0,0,3427,3429,3,288,144, + 0,3428,3426,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0,0,3430,3431, + 5,3,0,0,3431,3456,1,0,0,0,3432,3433,7,44,0,0,3433,3434,5,2,0,0,3434, + 3435,3,288,144,0,3435,3436,5,3,0,0,3436,3437,5,347,0,0,3437,3438, + 5,130,0,0,3438,3439,5,2,0,0,3439,3440,5,209,0,0,3440,3441,5,31,0, + 0,3441,3442,3,116,58,0,3442,3449,5,3,0,0,3443,3444,5,114,0,0,3444, + 3445,5,2,0,0,3445,3446,5,344,0,0,3446,3447,3,284,142,0,3447,3448, + 5,3,0,0,3448,3450,1,0,0,0,3449,3443,1,0,0,0,3449,3450,1,0,0,0,3450, + 3453,1,0,0,0,3451,3452,5,213,0,0,3452,3454,3,366,183,0,3453,3451, + 1,0,0,0,3453,3454,1,0,0,0,3454,3456,1,0,0,0,3455,3206,1,0,0,0,3455, + 3208,1,0,0,0,3455,3220,1,0,0,0,3455,3232,1,0,0,0,3455,3244,1,0,0, + 0,3455,3257,1,0,0,0,3455,3264,1,0,0,0,3455,3277,1,0,0,0,3455,3286, + 1,0,0,0,3455,3295,1,0,0,0,3455,3304,1,0,0,0,3455,3311,1,0,0,0,3455, + 3312,1,0,0,0,3455,3313,1,0,0,0,3455,3317,1,0,0,0,3455,3327,1,0,0, + 0,3455,3331,1,0,0,0,3455,3336,1,0,0,0,3455,3368,1,0,0,0,3455,3372, + 1,0,0,0,3455,3384,1,0,0,0,3455,3385,1,0,0,0,3455,3389,1,0,0,0,3455, + 3396,1,0,0,0,3455,3407,1,0,0,0,3455,3419,1,0,0,0,3455,3432,1,0,0, + 0,3456,3467,1,0,0,0,3457,3458,10,9,0,0,3458,3459,5,6,0,0,3459,3460, + 3,288,144,0,3460,3461,5,7,0,0,3461,3466,1,0,0,0,3462,3463,10,7,0, + 0,3463,3464,5,5,0,0,3464,3466,3,384,192,0,3465,3457,1,0,0,0,3465, + 3462,1,0,0,0,3466,3469,1,0,0,0,3467,3465,1,0,0,0,3467,3468,1,0,0, + 0,3468,293,1,0,0,0,3469,3467,1,0,0,0,3470,3478,5,71,0,0,3471,3478, + 5,303,0,0,3472,3478,5,304,0,0,3473,3478,5,305,0,0,3474,3478,5,149, + 0,0,3475,3478,5,133,0,0,3476,3478,3,384,192,0,3477,3470,1,0,0,0, + 3477,3471,1,0,0,0,3477,3472,1,0,0,0,3477,3473,1,0,0,0,3477,3474, + 1,0,0,0,3477,3475,1,0,0,0,3477,3476,1,0,0,0,3478,295,1,0,0,0,3479, + 3495,5,198,0,0,3480,3495,5,376,0,0,3481,3482,5,371,0,0,3482,3495, + 3,384,192,0,3483,3495,3,306,153,0,3484,3485,3,294,147,0,3485,3486, + 3,396,198,0,3486,3495,1,0,0,0,3487,3495,3,392,196,0,3488,3495,3, + 304,152,0,3489,3491,3,396,198,0,3490,3489,1,0,0,0,3491,3492,1,0, + 0,0,3492,3490,1,0,0,0,3492,3493,1,0,0,0,3493,3495,1,0,0,0,3494,3479, + 1,0,0,0,3494,3480,1,0,0,0,3494,3481,1,0,0,0,3494,3483,1,0,0,0,3494, + 3484,1,0,0,0,3494,3487,1,0,0,0,3494,3488,1,0,0,0,3494,3490,1,0,0, + 0,3495,297,1,0,0,0,3496,3497,7,45,0,0,3497,299,1,0,0,0,3498,3499, + 7,46,0,0,3499,301,1,0,0,0,3500,3501,7,47,0,0,3501,303,1,0,0,0,3502, + 3503,7,48,0,0,3503,305,1,0,0,0,3504,3507,5,149,0,0,3505,3508,3,308, + 154,0,3506,3508,3,312,156,0,3507,3505,1,0,0,0,3507,3506,1,0,0,0, + 3508,307,1,0,0,0,3509,3511,3,310,155,0,3510,3512,3,314,157,0,3511, + 3510,1,0,0,0,3511,3512,1,0,0,0,3512,309,1,0,0,0,3513,3514,3,316, + 158,0,3514,3515,3,318,159,0,3515,3517,1,0,0,0,3516,3513,1,0,0,0, + 3517,3518,1,0,0,0,3518,3516,1,0,0,0,3518,3519,1,0,0,0,3519,311,1, + 0,0,0,3520,3523,3,314,157,0,3521,3524,3,310,155,0,3522,3524,3,314, + 157,0,3523,3521,1,0,0,0,3523,3522,1,0,0,0,3523,3524,1,0,0,0,3524, + 313,1,0,0,0,3525,3526,3,316,158,0,3526,3527,3,320,160,0,3527,3528, + 5,309,0,0,3528,3529,3,320,160,0,3529,315,1,0,0,0,3530,3532,7,49, + 0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,3536,1,0,0,0,3533,3537, + 5,382,0,0,3534,3537,5,384,0,0,3535,3537,3,396,198,0,3536,3533,1, + 0,0,0,3536,3534,1,0,0,0,3536,3535,1,0,0,0,3537,317,1,0,0,0,3538, + 3539,7,50,0,0,3539,319,1,0,0,0,3540,3541,7,51,0,0,3541,321,1,0,0, + 0,3542,3546,5,116,0,0,3543,3544,5,9,0,0,3544,3546,3,380,190,0,3545, + 3542,1,0,0,0,3545,3543,1,0,0,0,3546,323,1,0,0,0,3547,3578,5,27,0, + 0,3548,3578,5,308,0,0,3549,3578,5,32,0,0,3550,3578,5,276,0,0,3551, + 3578,5,272,0,0,3552,3578,5,150,0,0,3553,3578,5,151,0,0,3554,3578, + 5,25,0,0,3555,3578,5,174,0,0,3556,3578,5,117,0,0,3557,3578,5,234, + 0,0,3558,3578,5,95,0,0,3559,3578,5,71,0,0,3560,3578,5,303,0,0,3561, + 3578,5,305,0,0,3562,3578,5,304,0,0,3563,3578,5,285,0,0,3564,3578, + 5,41,0,0,3565,3578,5,40,0,0,3566,3578,5,334,0,0,3567,3578,5,26,0, + 0,3568,3578,5,80,0,0,3569,3578,5,79,0,0,3570,3578,5,200,0,0,3571, + 3578,5,340,0,0,3572,3578,5,149,0,0,3573,3578,5,19,0,0,3574,3578, + 5,286,0,0,3575,3578,5,177,0,0,3576,3578,3,384,192,0,3577,3547,1, + 0,0,0,3577,3548,1,0,0,0,3577,3549,1,0,0,0,3577,3550,1,0,0,0,3577, + 3551,1,0,0,0,3577,3552,1,0,0,0,3577,3553,1,0,0,0,3577,3554,1,0,0, + 0,3577,3555,1,0,0,0,3577,3556,1,0,0,0,3577,3557,1,0,0,0,3577,3558, + 1,0,0,0,3577,3559,1,0,0,0,3577,3560,1,0,0,0,3577,3561,1,0,0,0,3577, + 3562,1,0,0,0,3577,3563,1,0,0,0,3577,3564,1,0,0,0,3577,3565,1,0,0, + 0,3577,3566,1,0,0,0,3577,3567,1,0,0,0,3577,3568,1,0,0,0,3577,3569, + 1,0,0,0,3577,3570,1,0,0,0,3577,3571,1,0,0,0,3577,3572,1,0,0,0,3577, + 3573,1,0,0,0,3577,3574,1,0,0,0,3577,3575,1,0,0,0,3577,3576,1,0,0, + 0,3578,325,1,0,0,0,3579,3580,5,19,0,0,3580,3581,5,356,0,0,3581,3582, + 3,326,163,0,3582,3583,5,358,0,0,3583,3626,1,0,0,0,3584,3585,5,177, + 0,0,3585,3586,5,356,0,0,3586,3587,3,326,163,0,3587,3588,5,4,0,0, + 3588,3589,3,326,163,0,3589,3590,5,358,0,0,3590,3626,1,0,0,0,3591, + 3598,5,286,0,0,3592,3594,5,356,0,0,3593,3595,3,354,177,0,3594,3593, + 1,0,0,0,3594,3595,1,0,0,0,3595,3596,1,0,0,0,3596,3599,5,358,0,0, + 3597,3599,5,354,0,0,3598,3592,1,0,0,0,3598,3597,1,0,0,0,3599,3626, + 1,0,0,0,3600,3601,5,149,0,0,3601,3604,7,52,0,0,3602,3603,5,309,0, + 0,3603,3605,5,186,0,0,3604,3602,1,0,0,0,3604,3605,1,0,0,0,3605,3626, + 1,0,0,0,3606,3607,5,149,0,0,3607,3610,7,53,0,0,3608,3609,5,309,0, + 0,3609,3611,7,54,0,0,3610,3608,1,0,0,0,3610,3611,1,0,0,0,3611,3626, + 1,0,0,0,3612,3623,3,324,162,0,3613,3614,5,2,0,0,3614,3619,5,382, + 0,0,3615,3616,5,4,0,0,3616,3618,5,382,0,0,3617,3615,1,0,0,0,3618, + 3621,1,0,0,0,3619,3617,1,0,0,0,3619,3620,1,0,0,0,3620,3622,1,0,0, + 0,3621,3619,1,0,0,0,3622,3624,5,3,0,0,3623,3613,1,0,0,0,3623,3624, + 1,0,0,0,3624,3626,1,0,0,0,3625,3579,1,0,0,0,3625,3584,1,0,0,0,3625, + 3591,1,0,0,0,3625,3600,1,0,0,0,3625,3606,1,0,0,0,3625,3612,1,0,0, + 0,3626,327,1,0,0,0,3627,3632,3,330,165,0,3628,3629,5,4,0,0,3629, + 3631,3,330,165,0,3630,3628,1,0,0,0,3631,3634,1,0,0,0,3632,3630,1, + 0,0,0,3632,3633,1,0,0,0,3633,329,1,0,0,0,3634,3632,1,0,0,0,3635, + 3636,3,98,49,0,3636,3640,3,326,163,0,3637,3639,3,336,168,0,3638, + 3637,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641,1,0,0, + 0,3641,331,1,0,0,0,3642,3640,1,0,0,0,3643,3648,3,334,167,0,3644, + 3645,5,4,0,0,3645,3647,3,334,167,0,3646,3644,1,0,0,0,3647,3650,1, + 0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,333,1,0,0,0,3650, + 3648,1,0,0,0,3651,3652,3,92,46,0,3652,3656,3,326,163,0,3653,3655, + 3,336,168,0,3654,3653,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0, + 0,3656,3657,1,0,0,0,3657,335,1,0,0,0,3658,3656,1,0,0,0,3659,3660, + 5,197,0,0,3660,3665,5,198,0,0,3661,3665,3,338,169,0,3662,3665,3, + 24,12,0,3663,3665,3,322,161,0,3664,3659,1,0,0,0,3664,3661,1,0,0, + 0,3664,3662,1,0,0,0,3664,3663,1,0,0,0,3665,337,1,0,0,0,3666,3667, + 5,82,0,0,3667,3668,3,276,138,0,3668,339,1,0,0,0,3669,3670,7,55,0, + 0,3670,3671,3,276,138,0,3671,341,1,0,0,0,3672,3677,3,344,172,0,3673, + 3674,5,4,0,0,3674,3676,3,344,172,0,3675,3673,1,0,0,0,3676,3679,1, + 0,0,0,3677,3675,1,0,0,0,3677,3678,1,0,0,0,3678,343,1,0,0,0,3679, + 3677,1,0,0,0,3680,3681,3,380,190,0,3681,3684,3,326,163,0,3682,3683, + 5,197,0,0,3683,3685,5,198,0,0,3684,3682,1,0,0,0,3684,3685,1,0,0, + 0,3685,3687,1,0,0,0,3686,3688,3,24,12,0,3687,3686,1,0,0,0,3687,3688, + 1,0,0,0,3688,345,1,0,0,0,3689,3694,3,348,174,0,3690,3691,5,4,0,0, + 3691,3693,3,348,174,0,3692,3690,1,0,0,0,3693,3696,1,0,0,0,3694,3692, + 1,0,0,0,3694,3695,1,0,0,0,3695,347,1,0,0,0,3696,3694,1,0,0,0,3697, + 3698,3,98,49,0,3698,3702,3,326,163,0,3699,3701,3,350,175,0,3700, + 3699,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703,1,0,0, + 0,3703,349,1,0,0,0,3704,3702,1,0,0,0,3705,3706,5,197,0,0,3706,3711, + 5,198,0,0,3707,3711,3,338,169,0,3708,3711,3,352,176,0,3709,3711, + 3,24,12,0,3710,3705,1,0,0,0,3710,3707,1,0,0,0,3710,3708,1,0,0,0, + 3710,3709,1,0,0,0,3711,351,1,0,0,0,3712,3713,5,127,0,0,3713,3714, + 5,12,0,0,3714,3715,5,20,0,0,3715,3716,5,2,0,0,3716,3717,3,276,138, + 0,3717,3718,5,3,0,0,3718,353,1,0,0,0,3719,3724,3,356,178,0,3720, + 3721,5,4,0,0,3721,3723,3,356,178,0,3722,3720,1,0,0,0,3723,3726,1, + 0,0,0,3724,3722,1,0,0,0,3724,3725,1,0,0,0,3725,355,1,0,0,0,3726, + 3724,1,0,0,0,3727,3729,3,384,192,0,3728,3730,5,371,0,0,3729,3728, + 1,0,0,0,3729,3730,1,0,0,0,3730,3731,1,0,0,0,3731,3734,3,326,163, + 0,3732,3733,5,197,0,0,3733,3735,5,198,0,0,3734,3732,1,0,0,0,3734, + 3735,1,0,0,0,3735,3737,1,0,0,0,3736,3738,3,24,12,0,3737,3736,1,0, + 0,0,3737,3738,1,0,0,0,3738,357,1,0,0,0,3739,3740,5,343,0,0,3740, + 3741,3,276,138,0,3741,3742,5,300,0,0,3742,3743,3,276,138,0,3743, + 359,1,0,0,0,3744,3745,5,345,0,0,3745,3750,3,364,182,0,3746,3747, + 5,4,0,0,3747,3749,3,364,182,0,3748,3746,1,0,0,0,3749,3752,1,0,0, + 0,3750,3748,1,0,0,0,3750,3751,1,0,0,0,3751,361,1,0,0,0,3752,3750, + 1,0,0,0,3753,3754,5,351,0,0,3754,3755,5,31,0,0,3755,3756,3,96,48, + 0,3756,363,1,0,0,0,3757,3758,3,380,190,0,3758,3759,5,20,0,0,3759, + 3760,3,366,183,0,3760,365,1,0,0,0,3761,3801,3,380,190,0,3762,3763, + 5,2,0,0,3763,3764,3,380,190,0,3764,3765,5,3,0,0,3765,3801,1,0,0, + 0,3766,3794,5,2,0,0,3767,3768,5,44,0,0,3768,3769,5,31,0,0,3769,3774, + 3,276,138,0,3770,3771,5,4,0,0,3771,3773,3,276,138,0,3772,3770,1, + 0,0,0,3773,3776,1,0,0,0,3774,3772,1,0,0,0,3774,3775,1,0,0,0,3775, + 3795,1,0,0,0,3776,3774,1,0,0,0,3777,3778,7,24,0,0,3778,3779,5,31, + 0,0,3779,3784,3,276,138,0,3780,3781,5,4,0,0,3781,3783,3,276,138, + 0,3782,3780,1,0,0,0,3783,3786,1,0,0,0,3784,3782,1,0,0,0,3784,3785, + 1,0,0,0,3785,3788,1,0,0,0,3786,3784,1,0,0,0,3787,3777,1,0,0,0,3787, + 3788,1,0,0,0,3788,3792,1,0,0,0,3789,3790,7,25,0,0,3790,3791,5,31, + 0,0,3791,3793,3,106,53,0,3792,3789,1,0,0,0,3792,3793,1,0,0,0,3793, + 3795,1,0,0,0,3794,3767,1,0,0,0,3794,3787,1,0,0,0,3795,3797,1,0,0, + 0,3796,3798,3,368,184,0,3797,3796,1,0,0,0,3797,3798,1,0,0,0,3798, + 3799,1,0,0,0,3799,3801,5,3,0,0,3800,3761,1,0,0,0,3800,3762,1,0,0, + 0,3800,3766,1,0,0,0,3801,367,1,0,0,0,3802,3803,5,233,0,0,3803,3819, + 3,370,185,0,3804,3805,5,258,0,0,3805,3819,3,370,185,0,3806,3807, + 5,233,0,0,3807,3808,5,24,0,0,3808,3809,3,370,185,0,3809,3810,5,14, + 0,0,3810,3811,3,370,185,0,3811,3819,1,0,0,0,3812,3813,5,258,0,0, + 3813,3814,5,24,0,0,3814,3815,3,370,185,0,3815,3816,5,14,0,0,3816, + 3817,3,370,185,0,3817,3819,1,0,0,0,3818,3802,1,0,0,0,3818,3804,1, + 0,0,0,3818,3806,1,0,0,0,3818,3812,1,0,0,0,3819,369,1,0,0,0,3820, + 3821,5,321,0,0,3821,3828,7,56,0,0,3822,3823,5,62,0,0,3823,3828,5, + 257,0,0,3824,3825,3,276,138,0,3825,3826,7,56,0,0,3826,3828,1,0,0, + 0,3827,3820,1,0,0,0,3827,3822,1,0,0,0,3827,3824,1,0,0,0,3828,371, + 1,0,0,0,3829,3834,3,378,189,0,3830,3831,5,4,0,0,3831,3833,3,378, + 189,0,3832,3830,1,0,0,0,3833,3836,1,0,0,0,3834,3832,1,0,0,0,3834, + 3835,1,0,0,0,3835,373,1,0,0,0,3836,3834,1,0,0,0,3837,3838,5,136, + 0,0,3838,3839,5,2,0,0,3839,3840,3,276,138,0,3840,3841,5,3,0,0,3841, + 3847,1,0,0,0,3842,3847,3,378,189,0,3843,3847,5,114,0,0,3844,3847, + 5,161,0,0,3845,3847,5,250,0,0,3846,3837,1,0,0,0,3846,3842,1,0,0, + 0,3846,3843,1,0,0,0,3846,3844,1,0,0,0,3846,3845,1,0,0,0,3847,375, + 1,0,0,0,3848,3849,3,378,189,0,3849,377,1,0,0,0,3850,3855,3,384,192, + 0,3851,3852,5,5,0,0,3852,3854,3,384,192,0,3853,3851,1,0,0,0,3854, + 3857,1,0,0,0,3855,3853,1,0,0,0,3855,3856,1,0,0,0,3856,379,1,0,0, + 0,3857,3855,1,0,0,0,3858,3859,3,384,192,0,3859,3860,3,382,191,0, + 3860,381,1,0,0,0,3861,3862,5,362,0,0,3862,3864,3,384,192,0,3863, + 3861,1,0,0,0,3864,3865,1,0,0,0,3865,3863,1,0,0,0,3865,3866,1,0,0, + 0,3866,3869,1,0,0,0,3867,3869,1,0,0,0,3868,3863,1,0,0,0,3868,3867, + 1,0,0,0,3869,383,1,0,0,0,3870,3873,3,386,193,0,3871,3873,3,404,202, + 0,3872,3870,1,0,0,0,3872,3871,1,0,0,0,3873,385,1,0,0,0,3874,3879, + 5,388,0,0,3875,3879,3,388,194,0,3876,3879,3,402,201,0,3877,3879, + 3,406,203,0,3878,3874,1,0,0,0,3878,3875,1,0,0,0,3878,3876,1,0,0, + 0,3878,3877,1,0,0,0,3879,387,1,0,0,0,3880,3881,7,57,0,0,3881,389, + 1,0,0,0,3882,3883,5,389,0,0,3883,391,1,0,0,0,3884,3886,5,362,0,0, + 3885,3884,1,0,0,0,3885,3886,1,0,0,0,3886,3887,1,0,0,0,3887,3925, + 5,383,0,0,3888,3890,5,362,0,0,3889,3888,1,0,0,0,3889,3890,1,0,0, + 0,3890,3891,1,0,0,0,3891,3925,5,384,0,0,3892,3894,5,362,0,0,3893, + 3892,1,0,0,0,3893,3894,1,0,0,0,3894,3895,1,0,0,0,3895,3925,7,58, + 0,0,3896,3898,5,362,0,0,3897,3896,1,0,0,0,3897,3898,1,0,0,0,3898, + 3899,1,0,0,0,3899,3925,5,382,0,0,3900,3902,5,362,0,0,3901,3900,1, + 0,0,0,3901,3902,1,0,0,0,3902,3903,1,0,0,0,3903,3925,5,379,0,0,3904, + 3906,5,362,0,0,3905,3904,1,0,0,0,3905,3906,1,0,0,0,3906,3907,1,0, + 0,0,3907,3925,5,380,0,0,3908,3910,5,362,0,0,3909,3908,1,0,0,0,3909, + 3910,1,0,0,0,3910,3911,1,0,0,0,3911,3925,5,381,0,0,3912,3914,5,362, + 0,0,3913,3912,1,0,0,0,3913,3914,1,0,0,0,3914,3915,1,0,0,0,3915,3925, + 5,386,0,0,3916,3918,5,362,0,0,3917,3916,1,0,0,0,3917,3918,1,0,0, + 0,3918,3919,1,0,0,0,3919,3925,5,385,0,0,3920,3922,5,362,0,0,3921, + 3920,1,0,0,0,3921,3922,1,0,0,0,3922,3923,1,0,0,0,3923,3925,5,387, + 0,0,3924,3885,1,0,0,0,3924,3889,1,0,0,0,3924,3893,1,0,0,0,3924,3897, + 1,0,0,0,3924,3901,1,0,0,0,3924,3905,1,0,0,0,3924,3909,1,0,0,0,3924, + 3913,1,0,0,0,3924,3917,1,0,0,0,3924,3921,1,0,0,0,3925,393,1,0,0, + 0,3926,3927,5,319,0,0,3927,3938,3,326,163,0,3928,3938,3,24,12,0, + 3929,3938,3,322,161,0,3930,3931,7,59,0,0,3931,3932,5,197,0,0,3932, + 3938,5,198,0,0,3933,3934,5,269,0,0,3934,3938,3,338,169,0,3935,3936, + 5,96,0,0,3936,3938,5,82,0,0,3937,3926,1,0,0,0,3937,3928,1,0,0,0, + 3937,3929,1,0,0,0,3937,3930,1,0,0,0,3937,3933,1,0,0,0,3937,3935, + 1,0,0,0,3938,395,1,0,0,0,3939,3940,7,60,0,0,3940,397,1,0,0,0,3941, + 3944,3,396,198,0,3942,3944,5,198,0,0,3943,3941,1,0,0,0,3943,3942, + 1,0,0,0,3944,399,1,0,0,0,3945,3948,5,382,0,0,3946,3948,3,396,198, + 0,3947,3945,1,0,0,0,3947,3946,1,0,0,0,3948,401,1,0,0,0,3949,3950, + 7,61,0,0,3950,403,1,0,0,0,3951,3952,7,62,0,0,3952,405,1,0,0,0,3953, + 3954,7,63,0,0,3954,407,1,0,0,0,513,411,418,422,427,434,439,447,449, + 468,472,478,481,484,491,494,498,501,506,518,520,528,531,535,538, + 544,555,561,566,599,609,620,631,642,647,656,660,666,670,675,681, + 693,701,707,718,722,727,742,746,753,757,763,792,796,801,808,814, + 817,820,824,828,836,838,847,850,859,864,870,877,880,884,895,898, + 904,908,923,925,933,937,943,946,950,953,959,964,968,975,978,981, + 988,993,1002,1010,1016,1019,1022,1028,1032,1037,1040,1044,1046,1054, + 1062,1065,1072,1075,1078,1087,1092,1098,1103,1106,1110,1113,1117, + 1145,1148,1156,1162,1165,1168,1173,1181,1186,1192,1198,1201,1208, + 1215,1223,1240,1267,1270,1276,1285,1294,1300,1305,1310,1317,1322, + 1327,1334,1342,1345,1349,1361,1365,1372,1488,1496,1504,1513,1523, + 1527,1530,1534,1540,1552,1564,1569,1578,1586,1591,1593,1601,1606, + 1610,1613,1621,1626,1635,1640,1643,1648,1652,1657,1659,1663,1672, + 1680,1686,1697,1704,1713,1718,1721,1744,1746,1758,1765,1768,1775, + 1779,1785,1793,1800,1803,1811,1822,1833,1841,1847,1859,1866,1873, + 1885,1893,1899,1905,1908,1924,1933,1944,1949,1954,1959,1964,1967, + 1970,1974,1979,1986,1994,2006,2012,2018,2021,2023,2035,2039,2042, + 2046,2052,2056,2064,2068,2071,2074,2077,2081,2085,2090,2094,2097, + 2100,2103,2107,2112,2116,2119,2122,2125,2127,2133,2140,2145,2148, + 2151,2155,2165,2169,2171,2174,2178,2184,2188,2199,2209,2213,2225, + 2237,2252,2257,2263,2270,2286,2291,2304,2309,2317,2323,2327,2330, + 2335,2342,2348,2357,2367,2382,2387,2389,2394,2403,2416,2421,2425, + 2432,2437,2441,2444,2447,2461,2474,2479,2483,2486,2490,2496,2499, + 2506,2518,2529,2542,2553,2558,2566,2571,2585,2594,2597,2602,2609, + 2612,2618,2624,2627,2632,2637,2641,2647,2651,2654,2659,2662,2667, + 2671,2674,2677,2683,2688,2695,2698,2716,2718,2721,2732,2741,2748, + 2756,2763,2768,2771,2774,2782,2790,2796,2804,2812,2819,2826,2828, + 2841,2847,2849,2858,2860,2868,2872,2881,2884,2890,2894,2896,2905, + 2917,2919,2926,2933,2939,2945,2947,2954,2962,2970,2976,2981,2988, + 2994,2997,3001,3003,3010,3019,3026,3036,3041,3045,3055,3062,3075, + 3077,3085,3087,3091,3099,3108,3114,3122,3127,3139,3144,3147,3153, + 3157,3162,3167,3172,3178,3199,3201,3212,3224,3236,3240,3249,3253, + 3271,3274,3282,3291,3300,3323,3339,3346,3349,3358,3362,3366,3378, + 3403,3410,3413,3428,3449,3453,3455,3465,3467,3477,3492,3494,3507, + 3511,3518,3523,3531,3536,3545,3577,3594,3598,3604,3610,3619,3623, + 3625,3632,3640,3648,3656,3664,3677,3684,3687,3694,3702,3710,3724, + 3729,3734,3737,3750,3774,3784,3787,3792,3794,3797,3800,3818,3827, + 3834,3846,3855,3865,3868,3872,3878,3885,3889,3893,3897,3901,3905, + 3909,3913,3917,3921,3924,3937,3943,3947 ]; private static __ATN: antlr.ATN; @@ -26960,6 +26980,36 @@ export class ColumnNameContext extends antlr.ParserRuleContext { } +export class ColumnNamePathContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_columnNamePath; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterColumnNamePath) { + listener.enterColumnNamePath(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitColumnNamePath) { + listener.exitColumnNamePath(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath) { + return visitor.visitColumnNamePath(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameSeqContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27078,13 +27128,6 @@ export class IdentifierReferenceContext extends antlr.ParserRuleContext { export class QueryOrganizationContext extends antlr.ParserRuleContext { - public _sortItem?: SortItemContext; - public _order: SortItemContext[] = []; - public _expression?: ExpressionContext; - public _clusterBy: ExpressionContext[] = []; - public _distributeBy: ExpressionContext[] = []; - public _sort: SortItemContext[] = []; - public _limit?: ExpressionContext; public _offset?: ExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27101,9 +27144,27 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.KW_BY, i); } } + public orderOrSortByClause(): OrderOrSortByClauseContext[]; + public orderOrSortByClause(i: number): OrderOrSortByClauseContext | null; + public orderOrSortByClause(i?: number): OrderOrSortByClauseContext[] | OrderOrSortByClauseContext | null { + if (i === undefined) { + return this.getRuleContexts(OrderOrSortByClauseContext); + } + + return this.getRuleContext(i, OrderOrSortByClauseContext); + } public KW_CLUSTER(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_CLUSTER, 0); } + public clusterOrDistributeBy(): ClusterOrDistributeByContext[]; + public clusterOrDistributeBy(i: number): ClusterOrDistributeByContext | null; + public clusterOrDistributeBy(i?: number): ClusterOrDistributeByContext[] | ClusterOrDistributeByContext | null { + if (i === undefined) { + return this.getRuleContexts(ClusterOrDistributeByContext); + } + + return this.getRuleContext(i, ClusterOrDistributeByContext); + } public KW_DISTRIBUTE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DISTRIBUTE, 0); } @@ -27113,12 +27174,79 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { public windowClause(): WindowClauseContext | null { return this.getRuleContext(0, WindowClauseContext); } - public KW_LIMIT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LIMIT, 0); + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); } public KW_OFFSET(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_OFFSET, 0); } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_queryOrganization; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterQueryOrganization) { + listener.enterQueryOrganization(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitQueryOrganization) { + listener.exitQueryOrganization(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitQueryOrganization) { + return visitor.visitQueryOrganization(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class LimitClauseContext extends antlr.ParserRuleContext { + public _limit?: ExpressionContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LIMIT(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LIMIT, 0)!; + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALL, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_limitClause; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterLimitClause) { + listener.enterLimitClause(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitLimitClause) { + listener.exitLimitClause(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitLimitClause) { + return visitor.visitLimitClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class OrderOrSortByClauseContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } public sortItem(): SortItemContext[]; public sortItem(i: number): SortItemContext | null; public sortItem(i?: number): SortItemContext[] | SortItemContext | null { @@ -27128,6 +27256,42 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SortItemContext); } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_orderOrSortByClause; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterOrderOrSortByClause) { + listener.enterOrderOrSortByClause(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitOrderOrSortByClause) { + listener.exitOrderOrSortByClause(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitOrderOrSortByClause) { + return visitor.visitOrderOrSortByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ClusterOrDistributeByContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } public expression(): ExpressionContext[]; public expression(i: number): ExpressionContext | null; public expression(i?: number): ExpressionContext[] | ExpressionContext | null { @@ -27137,9 +27301,6 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ALL, 0); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -27150,21 +27311,21 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return SparkSqlParser.RULE_queryOrganization; + return SparkSqlParser.RULE_clusterOrDistributeBy; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterQueryOrganization) { - listener.enterQueryOrganization(this); + if(listener.enterClusterOrDistributeBy) { + listener.enterClusterOrDistributeBy(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitQueryOrganization) { - listener.exitQueryOrganization(this); + if(listener.exitClusterOrDistributeBy) { + listener.exitClusterOrDistributeBy(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitQueryOrganization) { - return visitor.visitQueryOrganization(this); + if (visitor.visitClusterOrDistributeBy) { + return visitor.visitClusterOrDistributeBy(this); } else { return visitor.visitChildren(this); } @@ -30368,14 +30529,8 @@ export class TableArgumentPartitioningContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public sortItem(): SortItemContext[]; - public sortItem(i: number): SortItemContext | null; - public sortItem(i?: number): SortItemContext[] | SortItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SortItemContext); - } - - return this.getRuleContext(i, SortItemContext); + public sortItem(): SortItemContext | null { + return this.getRuleContext(0, SortItemContext); } public LEFT_PAREN(): antlr.TerminalNode[]; public LEFT_PAREN(i: number): antlr.TerminalNode | null; @@ -30386,6 +30541,9 @@ export class TableArgumentPartitioningContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.LEFT_PAREN, i); } } + public orderOrSortByClause(): OrderOrSortByClauseContext | null { + return this.getRuleContext(0, OrderOrSortByClauseContext); + } public RIGHT_PAREN(): antlr.TerminalNode[]; public RIGHT_PAREN(i: number): antlr.TerminalNode | null; public RIGHT_PAREN(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -31987,6 +32145,9 @@ export class PrimaryExpressionContext extends antlr.ParserRuleContext { public ARROW(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.ARROW, 0); } + public columnNamePath(): ColumnNamePathContext | null { + return this.getRuleContext(0, ColumnNamePathContext); + } public KW_EXTRACT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_EXTRACT, 0); } @@ -33885,14 +34046,8 @@ export class WindowSpecContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } - public sortItem(): SortItemContext[]; - public sortItem(i: number): SortItemContext | null; - public sortItem(i?: number): SortItemContext[] | SortItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SortItemContext); - } - - return this.getRuleContext(i, SortItemContext); + public orderOrSortByClause(): OrderOrSortByClauseContext | null { + return this.getRuleContext(0, OrderOrSortByClauseContext); } public KW_PARTITION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PARTITION, 0); diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index b701ea6a..30c0e4c2 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -149,10 +149,14 @@ import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; +import { ColumnNamePathContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; +import { LimitClauseContext } from "./SparkSqlParser.js"; +import { OrderOrSortByClauseContext } from "./SparkSqlParser.js"; +import { ClusterOrDistributeByContext } from "./SparkSqlParser.js"; import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; @@ -1913,6 +1917,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnName?: (ctx: ColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -1953,6 +1967,36 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQueryOrganization?: (ctx: QueryOrganizationContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + */ + enterLimitClause?: (ctx: LimitClauseContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + */ + exitLimitClause?: (ctx: LimitClauseContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.orderOrSortByClause`. + * @param ctx the parse tree + */ + enterOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.orderOrSortByClause`. + * @param ctx the parse tree + */ + exitOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. + * @param ctx the parse tree + */ + enterClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. + * @param ctx the parse tree + */ + exitClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index f2570994..62f200a4 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -149,10 +149,14 @@ import { TableNameContext } from "./SparkSqlParser.js"; import { ViewNameCreateContext } from "./SparkSqlParser.js"; import { ViewNameContext } from "./SparkSqlParser.js"; import { ColumnNameContext } from "./SparkSqlParser.js"; +import { ColumnNamePathContext } from "./SparkSqlParser.js"; import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; +import { LimitClauseContext } from "./SparkSqlParser.js"; +import { OrderOrSortByClauseContext } from "./SparkSqlParser.js"; +import { ClusterOrDistributeByContext } from "./SparkSqlParser.js"; import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; @@ -1255,6 +1259,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.columnNameSeq`. * @param ctx the parse tree @@ -1279,6 +1289,24 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.limitClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLimitClause?: (ctx: LimitClauseContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.orderOrSortByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitOrderOrSortByClause?: (ctx: OrderOrSortByClauseContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.clusterOrDistributeBy`. + * @param ctx the parse tree + * @return the visitor result + */ + visitClusterOrDistributeBy?: (ctx: ClusterOrDistributeByContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. * @param ctx the parse tree diff --git a/src/parser/spark/index.ts b/src/parser/spark/index.ts index 1b847fd8..70ffb524 100644 --- a/src/parser/spark/index.ts +++ b/src/parser/spark/index.ts @@ -31,6 +31,7 @@ export class SparkSQL extends BasicSQL { const spark = new SparkSQL(); @@ -38,6 +39,14 @@ describe('SparkSQL validate invalid sql and test msg', () => { ); }); + test('validate unComplete sql4', () => { + const errors = spark.validate(sql4); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `Statement is incomplete, expecting an existing function or an existing column or a keyword` + ); + }); + test('validate random text cn', () => { spark.locale = 'zh_CN'; const errors = spark.validate(randomText); @@ -64,4 +73,12 @@ describe('SparkSQL validate invalid sql and test msg', () => { expect(errors.length).toBe(1); expect(errors[0].message).toBe(`'aaa' 在此位置无效,期望一个存在的namespace或者一个关键字`); }); + + test('validate unComplete sql4', () => { + const errors = spark.validate(sql4); + expect(errors.length).toBe(1); + expect(errors[0].message).toBe( + `语句不完整,期望一个存在的function或者一个存在的column或者一个关键字` + ); + }); }); diff --git a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql index fff4e7b3..982aed11 100644 --- a/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql +++ b/test/parser/spark/suggestion/fixtures/syntaxSuggestion.sql @@ -64,4 +64,14 @@ OPTIMIZE db.tb; OPTIMIZE db.tb ZORDER BY ; -OPTIMIZE db.tb ZORDER BY name, i; \ No newline at end of file +OPTIMIZE db.tb ZORDER BY name, i; + +SELECT name, age FROM person ORDER BY length(age) LIMIT length(name); + +SELECT id, CASE id WHEN 100 then 'bigger' WHEN id > 300 THEN '300' ELSE 'small' END FROM person; + +INSERT OVERWRITE students PARTITION (student_id = 222222) SELECT name, address FROM persons WHERE name = "Dora Williams"; + +SELECT id, name, employee.deptno, deptname FROM employee FULL JOIN department ON employee.deptno = department.deptno; + +SELECT city, sum(quantity) AS sum FROM dealer GROUP BY sum(city) HAVING max(quantity) > 15; diff --git a/test/parser/spark/suggestion/syntaxSuggestion.test.ts b/test/parser/spark/suggestion/syntaxSuggestion.test.ts index 2ed6c655..8e5cdb36 100644 --- a/test/parser/spark/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/spark/suggestion/syntaxSuggestion.test.ts @@ -595,4 +595,144 @@ describe('Spark SQL Syntax Suggestion', () => { expect(suggestion).not.toBeUndefined(); expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['i']); }); + + test('Order by expression column', () => { + const pos: CaretPosition = { + lineNumber: 69, + column: 49, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['age']); + }); + + test('Limit expression column', () => { + const pos: CaretPosition = { + lineNumber: 69, + column: 68, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['name']); + }); + + test('Case/When expression column', () => { + const pos: CaretPosition = { + lineNumber: 71, + column: 19, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['id']); + }); + + test('Where expression column', () => { + const pos: CaretPosition = { + lineNumber: 73, + column: 103, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['name']); + }); + + test('Join expression column', () => { + const pos: CaretPosition = { + lineNumber: 75, + column: 97, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([ + 'employee', + '.', + 'deptno', + ]); + }); + + test('Group by expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 64, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['city']); + }); + + test('Having expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 85, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); + }); + + test('Select expression column', () => { + const pos: CaretPosition = { + lineNumber: 77, + column: 26, + }; + const syntaxes = spark.getSuggestionAtCaretPosition( + commentOtherLine(syntaxSql, pos.lineNumber), + pos + )?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['quantity']); + }); });