From 1b00c4711dca5d0a1948b13a9c679c8033cda9de Mon Sep 17 00:00:00 2001
From: Alexander Spies
Date: Fri, 2 May 2025 15:02:38 +0200
Subject: [PATCH 1/8] Disallow mixed quoted/unquoted patterns in FROM
---
x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 4481a192ce2d3..9f51d1af6d501 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -108,18 +108,21 @@ indexPatternAndMetadataFields:
;
indexPattern
- : (clusterString COLON)? indexString
- | indexString (CAST_OP selectorString)?
+ : clusterString COLON unquotedIndexString
+ | unquotedIndexString CAST_OP selectorString
+ | indexString
;
clusterString
: UNQUOTED_SOURCE
- | QUOTED_STRING
;
selectorString
: UNQUOTED_SOURCE
- | QUOTED_STRING
+ ;
+
+unquotedIndexString
+ : UNQUOTED_SOURCE
;
indexString
From a58196282f81d9ff0fe836cd40d813bdbabaf6fc Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Fri, 23 May 2025 18:06:02 +0100
Subject: [PATCH 2/8] Update logic and tests to conform to the new grammar
---
.../xpack/esql/action/EsqlActionIT.java | 4 +-
.../xpack/esql/parser/EsqlBaseParser.interp | 3 +-
.../xpack/esql/parser/EsqlBaseParser.java | 2397 +++++++++--------
.../parser/EsqlBaseParserBaseListener.java | 12 +
.../parser/EsqlBaseParserBaseVisitor.java | 7 +
.../esql/parser/EsqlBaseParserListener.java | 10 +
.../esql/parser/EsqlBaseParserVisitor.java | 6 +
.../xpack/esql/parser/IdentifierBuilder.java | 10 +-
.../xpack/esql/IdentifierGenerator.java | 15 +-
.../esql/parser/StatementParserTests.java | 79 +-
10 files changed, 1322 insertions(+), 1221 deletions(-)
diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
index 9d57c46fa1f29..da40eb6dcf225 100644
--- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
+++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
@@ -1071,8 +1071,6 @@ public void testDataStreamPatterns() throws Exception {
testCases.put("test_ds_patterns*::data,test_ds_patterns*::failures,-test_ds_patterns_2*::data", 19L);
testCases.put("test_ds_patterns*::data,test_ds_patterns*::failures,-test_ds_patterns_2*::failures", 21L);
- testCases.put("\"test_ds_patterns_1,test_ds_patterns_2\"::failures", 8L);
-
runDataStreamTest(testCases, new String[] { "test_ds_patterns_1", "test_ds_patterns_2", "test_ds_patterns_3" }, (key, value) -> {
try (var results = run("from " + key + " | stats count(@timestamp)")) {
assertEquals(key, 1, getValuesList(results).size());
@@ -1097,7 +1095,7 @@ public void testDataStreamInvalidPatterns() throws Exception {
// Only one selector separator is allowed per expression
testCases.put("::::data", "mismatched input '::' expecting {QUOTED_STRING, UNQUOTED_SOURCE}");
// Suffix case is not supported because there is no component named with the empty string
- testCases.put("index::", "missing {QUOTED_STRING, UNQUOTED_SOURCE} at '|'");
+ testCases.put("index::", "missing UNQUOTED_SOURCE at '|'");
runDataStreamTest(testCases, new String[] { "test_ds_patterns_1" }, (key, value) -> {
logger.info(key);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
index c5dbbd8e24fa4..dc247284f8232 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
@@ -300,6 +300,7 @@ indexPatternAndMetadataFields
indexPattern
clusterString
selectorString
+unquotedIndexString
indexString
metadata
evalCommand
@@ -368,4 +369,4 @@ joinPredicate
atn:
-[4, 1, 139, 772, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 174, 8, 1, 10, 1, 12, 1, 177, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 185, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 217, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 230, 8, 7, 10, 7, 12, 7, 233, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 245, 8, 9, 10, 9, 12, 9, 248, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 253, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 264, 8, 13, 10, 13, 12, 13, 267, 9, 13, 1, 13, 3, 13, 270, 8, 13, 1, 14, 1, 14, 1, 14, 3, 14, 275, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 281, 8, 14, 3, 14, 283, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 295, 8, 18, 10, 18, 12, 18, 298, 9, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 305, 8, 20, 1, 20, 1, 20, 3, 20, 309, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 314, 8, 21, 10, 21, 12, 21, 317, 9, 21, 1, 22, 1, 22, 1, 22, 3, 22, 322, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 327, 8, 23, 10, 23, 12, 23, 330, 9, 23, 1, 24, 1, 24, 1, 24, 5, 24, 335, 8, 24, 10, 24, 12, 24, 338, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 343, 8, 25, 10, 25, 12, 25, 346, 9, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 353, 8, 27, 1, 28, 1, 28, 3, 28, 357, 8, 28, 1, 29, 1, 29, 3, 29, 361, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 366, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 375, 8, 32, 10, 32, 12, 32, 378, 9, 32, 1, 33, 1, 33, 3, 33, 382, 8, 33, 1, 33, 1, 33, 3, 33, 386, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 398, 8, 36, 10, 36, 12, 36, 401, 9, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 411, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 423, 8, 41, 10, 41, 12, 41, 426, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 446, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 452, 8, 46, 10, 46, 12, 46, 455, 9, 46, 3, 46, 457, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 462, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 475, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 481, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 488, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 4, 53, 497, 8, 53, 11, 53, 12, 53, 498, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 511, 8, 55, 10, 55, 12, 55, 514, 9, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 522, 8, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 539, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 544, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 553, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 560, 8, 61, 10, 61, 12, 61, 563, 9, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 570, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 575, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 583, 8, 61, 10, 61, 12, 61, 586, 9, 61, 1, 62, 1, 62, 3, 62, 590, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 597, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 602, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 607, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 617, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 623, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 631, 8, 65, 10, 65, 12, 65, 634, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 644, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 649, 8, 66, 10, 66, 12, 66, 652, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 660, 8, 67, 10, 67, 12, 67, 663, 9, 67, 1, 67, 1, 67, 3, 67, 667, 8, 67, 3, 67, 669, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 679, 8, 69, 10, 69, 12, 69, 682, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 703, 8, 71, 10, 71, 12, 71, 706, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 714, 8, 71, 10, 71, 12, 71, 717, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 725, 8, 71, 10, 71, 12, 71, 728, 9, 71, 1, 71, 1, 71, 3, 71, 732, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 738, 8, 73, 1, 74, 3, 74, 741, 8, 74, 1, 74, 1, 74, 1, 75, 3, 75, 746, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 765, 8, 80, 10, 80, 12, 80, 768, 9, 80, 1, 81, 1, 81, 1, 81, 0, 5, 2, 110, 122, 130, 132, 82, 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, 0, 9, 2, 0, 53, 53, 108, 108, 1, 0, 102, 103, 2, 0, 58, 58, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 88, 89, 1, 0, 90, 92, 2, 0, 66, 66, 79, 79, 2, 0, 81, 81, 83, 87, 2, 0, 22, 22, 24, 25, 803, 0, 164, 1, 0, 0, 0, 2, 167, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 218, 1, 0, 0, 0, 10, 221, 1, 0, 0, 0, 12, 223, 1, 0, 0, 0, 14, 226, 1, 0, 0, 0, 16, 237, 1, 0, 0, 0, 18, 241, 1, 0, 0, 0, 20, 249, 1, 0, 0, 0, 22, 254, 1, 0, 0, 0, 24, 257, 1, 0, 0, 0, 26, 260, 1, 0, 0, 0, 28, 282, 1, 0, 0, 0, 30, 284, 1, 0, 0, 0, 32, 286, 1, 0, 0, 0, 34, 288, 1, 0, 0, 0, 36, 290, 1, 0, 0, 0, 38, 299, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 310, 1, 0, 0, 0, 44, 318, 1, 0, 0, 0, 46, 323, 1, 0, 0, 0, 48, 331, 1, 0, 0, 0, 50, 339, 1, 0, 0, 0, 52, 347, 1, 0, 0, 0, 54, 352, 1, 0, 0, 0, 56, 356, 1, 0, 0, 0, 58, 360, 1, 0, 0, 0, 60, 365, 1, 0, 0, 0, 62, 367, 1, 0, 0, 0, 64, 370, 1, 0, 0, 0, 66, 379, 1, 0, 0, 0, 68, 387, 1, 0, 0, 0, 70, 390, 1, 0, 0, 0, 72, 393, 1, 0, 0, 0, 74, 402, 1, 0, 0, 0, 76, 406, 1, 0, 0, 0, 78, 412, 1, 0, 0, 0, 80, 416, 1, 0, 0, 0, 82, 419, 1, 0, 0, 0, 84, 427, 1, 0, 0, 0, 86, 431, 1, 0, 0, 0, 88, 434, 1, 0, 0, 0, 90, 438, 1, 0, 0, 0, 92, 441, 1, 0, 0, 0, 94, 461, 1, 0, 0, 0, 96, 465, 1, 0, 0, 0, 98, 470, 1, 0, 0, 0, 100, 476, 1, 0, 0, 0, 102, 489, 1, 0, 0, 0, 104, 492, 1, 0, 0, 0, 106, 496, 1, 0, 0, 0, 108, 500, 1, 0, 0, 0, 110, 504, 1, 0, 0, 0, 112, 521, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 532, 1, 0, 0, 0, 120, 540, 1, 0, 0, 0, 122, 574, 1, 0, 0, 0, 124, 601, 1, 0, 0, 0, 126, 603, 1, 0, 0, 0, 128, 616, 1, 0, 0, 0, 130, 622, 1, 0, 0, 0, 132, 643, 1, 0, 0, 0, 134, 653, 1, 0, 0, 0, 136, 672, 1, 0, 0, 0, 138, 674, 1, 0, 0, 0, 140, 685, 1, 0, 0, 0, 142, 731, 1, 0, 0, 0, 144, 733, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 740, 1, 0, 0, 0, 150, 745, 1, 0, 0, 0, 152, 749, 1, 0, 0, 0, 154, 751, 1, 0, 0, 0, 156, 753, 1, 0, 0, 0, 158, 758, 1, 0, 0, 0, 160, 760, 1, 0, 0, 0, 162, 769, 1, 0, 0, 0, 164, 165, 3, 2, 1, 0, 165, 166, 5, 0, 0, 1, 166, 1, 1, 0, 0, 0, 167, 168, 6, 1, -1, 0, 168, 169, 3, 4, 2, 0, 169, 175, 1, 0, 0, 0, 170, 171, 10, 1, 0, 0, 171, 172, 5, 52, 0, 0, 172, 174, 3, 6, 3, 0, 173, 170, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 3, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 185, 3, 86, 43, 0, 179, 185, 3, 22, 11, 0, 180, 185, 3, 12, 6, 0, 181, 185, 3, 90, 45, 0, 182, 183, 4, 2, 1, 0, 183, 185, 3, 24, 12, 0, 184, 178, 1, 0, 0, 0, 184, 179, 1, 0, 0, 0, 184, 180, 1, 0, 0, 0, 184, 181, 1, 0, 0, 0, 184, 182, 1, 0, 0, 0, 185, 5, 1, 0, 0, 0, 186, 217, 3, 38, 19, 0, 187, 217, 3, 8, 4, 0, 188, 217, 3, 68, 34, 0, 189, 217, 3, 62, 31, 0, 190, 217, 3, 40, 20, 0, 191, 217, 3, 64, 32, 0, 192, 217, 3, 70, 35, 0, 193, 217, 3, 72, 36, 0, 194, 217, 3, 76, 38, 0, 195, 217, 3, 78, 39, 0, 196, 217, 3, 92, 46, 0, 197, 217, 3, 80, 40, 0, 198, 217, 3, 156, 78, 0, 199, 217, 3, 100, 50, 0, 200, 201, 4, 3, 2, 0, 201, 217, 3, 98, 49, 0, 202, 203, 4, 3, 3, 0, 203, 217, 3, 96, 48, 0, 204, 205, 4, 3, 4, 0, 205, 217, 3, 118, 59, 0, 206, 207, 4, 3, 5, 0, 207, 217, 3, 102, 51, 0, 208, 209, 4, 3, 6, 0, 209, 217, 3, 104, 52, 0, 210, 211, 4, 3, 7, 0, 211, 217, 3, 116, 58, 0, 212, 213, 4, 3, 8, 0, 213, 217, 3, 114, 57, 0, 214, 215, 4, 3, 9, 0, 215, 217, 3, 120, 60, 0, 216, 186, 1, 0, 0, 0, 216, 187, 1, 0, 0, 0, 216, 188, 1, 0, 0, 0, 216, 189, 1, 0, 0, 0, 216, 190, 1, 0, 0, 0, 216, 191, 1, 0, 0, 0, 216, 192, 1, 0, 0, 0, 216, 193, 1, 0, 0, 0, 216, 194, 1, 0, 0, 0, 216, 195, 1, 0, 0, 0, 216, 196, 1, 0, 0, 0, 216, 197, 1, 0, 0, 0, 216, 198, 1, 0, 0, 0, 216, 199, 1, 0, 0, 0, 216, 200, 1, 0, 0, 0, 216, 202, 1, 0, 0, 0, 216, 204, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 7, 1, 0, 0, 0, 218, 219, 5, 14, 0, 0, 219, 220, 3, 122, 61, 0, 220, 9, 1, 0, 0, 0, 221, 222, 3, 52, 26, 0, 222, 11, 1, 0, 0, 0, 223, 224, 5, 11, 0, 0, 224, 225, 3, 14, 7, 0, 225, 13, 1, 0, 0, 0, 226, 231, 3, 16, 8, 0, 227, 228, 5, 63, 0, 0, 228, 230, 3, 16, 8, 0, 229, 227, 1, 0, 0, 0, 230, 233, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 15, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 234, 235, 3, 46, 23, 0, 235, 236, 5, 59, 0, 0, 236, 238, 1, 0, 0, 0, 237, 234, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 3, 122, 61, 0, 240, 17, 1, 0, 0, 0, 241, 246, 3, 20, 10, 0, 242, 243, 5, 63, 0, 0, 243, 245, 3, 20, 10, 0, 244, 242, 1, 0, 0, 0, 245, 248, 1, 0, 0, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 19, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 249, 252, 3, 46, 23, 0, 250, 251, 5, 59, 0, 0, 251, 253, 3, 122, 61, 0, 252, 250, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 21, 1, 0, 0, 0, 254, 255, 5, 19, 0, 0, 255, 256, 3, 26, 13, 0, 256, 23, 1, 0, 0, 0, 257, 258, 5, 20, 0, 0, 258, 259, 3, 26, 13, 0, 259, 25, 1, 0, 0, 0, 260, 265, 3, 28, 14, 0, 261, 262, 5, 63, 0, 0, 262, 264, 3, 28, 14, 0, 263, 261, 1, 0, 0, 0, 264, 267, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 268, 270, 3, 36, 18, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 27, 1, 0, 0, 0, 271, 272, 3, 30, 15, 0, 272, 273, 5, 62, 0, 0, 273, 275, 1, 0, 0, 0, 274, 271, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 283, 3, 34, 17, 0, 277, 280, 3, 34, 17, 0, 278, 279, 5, 61, 0, 0, 279, 281, 3, 32, 16, 0, 280, 278, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 1, 0, 0, 0, 282, 274, 1, 0, 0, 0, 282, 277, 1, 0, 0, 0, 283, 29, 1, 0, 0, 0, 284, 285, 7, 0, 0, 0, 285, 31, 1, 0, 0, 0, 286, 287, 7, 0, 0, 0, 287, 33, 1, 0, 0, 0, 288, 289, 7, 0, 0, 0, 289, 35, 1, 0, 0, 0, 290, 291, 5, 107, 0, 0, 291, 296, 5, 108, 0, 0, 292, 293, 5, 63, 0, 0, 293, 295, 5, 108, 0, 0, 294, 292, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 37, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 300, 5, 8, 0, 0, 300, 301, 3, 14, 7, 0, 301, 39, 1, 0, 0, 0, 302, 304, 5, 13, 0, 0, 303, 305, 3, 42, 21, 0, 304, 303, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 308, 1, 0, 0, 0, 306, 307, 5, 60, 0, 0, 307, 309, 3, 14, 7, 0, 308, 306, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 41, 1, 0, 0, 0, 310, 315, 3, 44, 22, 0, 311, 312, 5, 63, 0, 0, 312, 314, 3, 44, 22, 0, 313, 311, 1, 0, 0, 0, 314, 317, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 43, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 321, 3, 16, 8, 0, 319, 320, 5, 14, 0, 0, 320, 322, 3, 122, 61, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 45, 1, 0, 0, 0, 323, 328, 3, 60, 30, 0, 324, 325, 5, 65, 0, 0, 325, 327, 3, 60, 30, 0, 326, 324, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 47, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 336, 3, 54, 27, 0, 332, 333, 5, 65, 0, 0, 333, 335, 3, 54, 27, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 49, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 344, 3, 48, 24, 0, 340, 341, 5, 63, 0, 0, 341, 343, 3, 48, 24, 0, 342, 340, 1, 0, 0, 0, 343, 346, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 51, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 348, 7, 1, 0, 0, 348, 53, 1, 0, 0, 0, 349, 353, 5, 129, 0, 0, 350, 353, 3, 56, 28, 0, 351, 353, 3, 58, 29, 0, 352, 349, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 352, 351, 1, 0, 0, 0, 353, 55, 1, 0, 0, 0, 354, 357, 5, 77, 0, 0, 355, 357, 5, 96, 0, 0, 356, 354, 1, 0, 0, 0, 356, 355, 1, 0, 0, 0, 357, 57, 1, 0, 0, 0, 358, 361, 5, 95, 0, 0, 359, 361, 5, 97, 0, 0, 360, 358, 1, 0, 0, 0, 360, 359, 1, 0, 0, 0, 361, 59, 1, 0, 0, 0, 362, 366, 3, 52, 26, 0, 363, 366, 3, 56, 28, 0, 364, 366, 3, 58, 29, 0, 365, 362, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 364, 1, 0, 0, 0, 366, 61, 1, 0, 0, 0, 367, 368, 5, 10, 0, 0, 368, 369, 5, 54, 0, 0, 369, 63, 1, 0, 0, 0, 370, 371, 5, 12, 0, 0, 371, 376, 3, 66, 33, 0, 372, 373, 5, 63, 0, 0, 373, 375, 3, 66, 33, 0, 374, 372, 1, 0, 0, 0, 375, 378, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 65, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 379, 381, 3, 122, 61, 0, 380, 382, 7, 2, 0, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 384, 5, 74, 0, 0, 384, 386, 7, 3, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 67, 1, 0, 0, 0, 387, 388, 5, 29, 0, 0, 388, 389, 3, 50, 25, 0, 389, 69, 1, 0, 0, 0, 390, 391, 5, 28, 0, 0, 391, 392, 3, 50, 25, 0, 392, 71, 1, 0, 0, 0, 393, 394, 5, 32, 0, 0, 394, 399, 3, 74, 37, 0, 395, 396, 5, 63, 0, 0, 396, 398, 3, 74, 37, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 73, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 403, 3, 48, 24, 0, 403, 404, 5, 57, 0, 0, 404, 405, 3, 48, 24, 0, 405, 75, 1, 0, 0, 0, 406, 407, 5, 7, 0, 0, 407, 408, 3, 132, 66, 0, 408, 410, 3, 152, 76, 0, 409, 411, 3, 82, 41, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 77, 1, 0, 0, 0, 412, 413, 5, 9, 0, 0, 413, 414, 3, 132, 66, 0, 414, 415, 3, 152, 76, 0, 415, 79, 1, 0, 0, 0, 416, 417, 5, 27, 0, 0, 417, 418, 3, 46, 23, 0, 418, 81, 1, 0, 0, 0, 419, 424, 3, 84, 42, 0, 420, 421, 5, 63, 0, 0, 421, 423, 3, 84, 42, 0, 422, 420, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 83, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 427, 428, 3, 52, 26, 0, 428, 429, 5, 59, 0, 0, 429, 430, 3, 142, 71, 0, 430, 85, 1, 0, 0, 0, 431, 432, 5, 6, 0, 0, 432, 433, 3, 88, 44, 0, 433, 87, 1, 0, 0, 0, 434, 435, 5, 98, 0, 0, 435, 436, 3, 2, 1, 0, 436, 437, 5, 99, 0, 0, 437, 89, 1, 0, 0, 0, 438, 439, 5, 33, 0, 0, 439, 440, 5, 136, 0, 0, 440, 91, 1, 0, 0, 0, 441, 442, 5, 5, 0, 0, 442, 445, 5, 38, 0, 0, 443, 444, 5, 75, 0, 0, 444, 446, 3, 48, 24, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 456, 1, 0, 0, 0, 447, 448, 5, 80, 0, 0, 448, 453, 3, 94, 47, 0, 449, 450, 5, 63, 0, 0, 450, 452, 3, 94, 47, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 447, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 93, 1, 0, 0, 0, 458, 459, 3, 48, 24, 0, 459, 460, 5, 59, 0, 0, 460, 462, 1, 0, 0, 0, 461, 458, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 3, 48, 24, 0, 464, 95, 1, 0, 0, 0, 465, 466, 5, 26, 0, 0, 466, 467, 3, 28, 14, 0, 467, 468, 5, 75, 0, 0, 468, 469, 3, 50, 25, 0, 469, 97, 1, 0, 0, 0, 470, 471, 5, 16, 0, 0, 471, 474, 3, 42, 21, 0, 472, 473, 5, 60, 0, 0, 473, 475, 3, 14, 7, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 99, 1, 0, 0, 0, 476, 477, 5, 4, 0, 0, 477, 480, 3, 46, 23, 0, 478, 479, 5, 75, 0, 0, 479, 481, 3, 46, 23, 0, 480, 478, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 487, 1, 0, 0, 0, 482, 483, 5, 57, 0, 0, 483, 484, 3, 46, 23, 0, 484, 485, 5, 63, 0, 0, 485, 486, 3, 46, 23, 0, 486, 488, 1, 0, 0, 0, 487, 482, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 101, 1, 0, 0, 0, 489, 490, 5, 30, 0, 0, 490, 491, 3, 50, 25, 0, 491, 103, 1, 0, 0, 0, 492, 493, 5, 21, 0, 0, 493, 494, 3, 106, 53, 0, 494, 105, 1, 0, 0, 0, 495, 497, 3, 108, 54, 0, 496, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 107, 1, 0, 0, 0, 500, 501, 5, 100, 0, 0, 501, 502, 3, 110, 55, 0, 502, 503, 5, 101, 0, 0, 503, 109, 1, 0, 0, 0, 504, 505, 6, 55, -1, 0, 505, 506, 3, 112, 56, 0, 506, 512, 1, 0, 0, 0, 507, 508, 10, 1, 0, 0, 508, 509, 5, 52, 0, 0, 509, 511, 3, 112, 56, 0, 510, 507, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 111, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 522, 3, 38, 19, 0, 516, 522, 3, 8, 4, 0, 517, 522, 3, 62, 31, 0, 518, 522, 3, 40, 20, 0, 519, 522, 3, 64, 32, 0, 520, 522, 3, 76, 38, 0, 521, 515, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 521, 517, 1, 0, 0, 0, 521, 518, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 520, 1, 0, 0, 0, 522, 113, 1, 0, 0, 0, 523, 524, 5, 31, 0, 0, 524, 115, 1, 0, 0, 0, 525, 526, 5, 17, 0, 0, 526, 527, 3, 142, 71, 0, 527, 528, 5, 75, 0, 0, 528, 529, 3, 18, 9, 0, 529, 530, 5, 80, 0, 0, 530, 531, 3, 60, 30, 0, 531, 117, 1, 0, 0, 0, 532, 533, 5, 15, 0, 0, 533, 534, 3, 132, 66, 0, 534, 535, 5, 80, 0, 0, 535, 538, 3, 60, 30, 0, 536, 537, 5, 57, 0, 0, 537, 539, 3, 46, 23, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 119, 1, 0, 0, 0, 540, 541, 5, 18, 0, 0, 541, 543, 3, 148, 74, 0, 542, 544, 3, 150, 75, 0, 543, 542, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 121, 1, 0, 0, 0, 545, 546, 6, 61, -1, 0, 546, 547, 5, 72, 0, 0, 547, 575, 3, 122, 61, 8, 548, 575, 3, 128, 64, 0, 549, 575, 3, 124, 62, 0, 550, 552, 3, 128, 64, 0, 551, 553, 5, 72, 0, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 5, 68, 0, 0, 555, 556, 5, 100, 0, 0, 556, 561, 3, 128, 64, 0, 557, 558, 5, 63, 0, 0, 558, 560, 3, 128, 64, 0, 559, 557, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 564, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 564, 565, 5, 101, 0, 0, 565, 575, 1, 0, 0, 0, 566, 567, 3, 128, 64, 0, 567, 569, 5, 69, 0, 0, 568, 570, 5, 72, 0, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 5, 73, 0, 0, 572, 575, 1, 0, 0, 0, 573, 575, 3, 126, 63, 0, 574, 545, 1, 0, 0, 0, 574, 548, 1, 0, 0, 0, 574, 549, 1, 0, 0, 0, 574, 550, 1, 0, 0, 0, 574, 566, 1, 0, 0, 0, 574, 573, 1, 0, 0, 0, 575, 584, 1, 0, 0, 0, 576, 577, 10, 5, 0, 0, 577, 578, 5, 56, 0, 0, 578, 583, 3, 122, 61, 6, 579, 580, 10, 4, 0, 0, 580, 581, 5, 76, 0, 0, 581, 583, 3, 122, 61, 5, 582, 576, 1, 0, 0, 0, 582, 579, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 123, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 589, 3, 128, 64, 0, 588, 590, 5, 72, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 5, 71, 0, 0, 592, 593, 3, 152, 76, 0, 593, 602, 1, 0, 0, 0, 594, 596, 3, 128, 64, 0, 595, 597, 5, 72, 0, 0, 596, 595, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 78, 0, 0, 599, 600, 3, 152, 76, 0, 600, 602, 1, 0, 0, 0, 601, 587, 1, 0, 0, 0, 601, 594, 1, 0, 0, 0, 602, 125, 1, 0, 0, 0, 603, 606, 3, 46, 23, 0, 604, 605, 5, 61, 0, 0, 605, 607, 3, 10, 5, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 62, 0, 0, 609, 610, 3, 142, 71, 0, 610, 127, 1, 0, 0, 0, 611, 617, 3, 130, 65, 0, 612, 613, 3, 130, 65, 0, 613, 614, 3, 154, 77, 0, 614, 615, 3, 130, 65, 0, 615, 617, 1, 0, 0, 0, 616, 611, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 129, 1, 0, 0, 0, 618, 619, 6, 65, -1, 0, 619, 623, 3, 132, 66, 0, 620, 621, 7, 4, 0, 0, 621, 623, 3, 130, 65, 3, 622, 618, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 632, 1, 0, 0, 0, 624, 625, 10, 2, 0, 0, 625, 626, 7, 5, 0, 0, 626, 631, 3, 130, 65, 3, 627, 628, 10, 1, 0, 0, 628, 629, 7, 4, 0, 0, 629, 631, 3, 130, 65, 2, 630, 624, 1, 0, 0, 0, 630, 627, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 131, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 6, 66, -1, 0, 636, 644, 3, 142, 71, 0, 637, 644, 3, 46, 23, 0, 638, 644, 3, 134, 67, 0, 639, 640, 5, 100, 0, 0, 640, 641, 3, 122, 61, 0, 641, 642, 5, 101, 0, 0, 642, 644, 1, 0, 0, 0, 643, 635, 1, 0, 0, 0, 643, 637, 1, 0, 0, 0, 643, 638, 1, 0, 0, 0, 643, 639, 1, 0, 0, 0, 644, 650, 1, 0, 0, 0, 645, 646, 10, 1, 0, 0, 646, 647, 5, 61, 0, 0, 647, 649, 3, 10, 5, 0, 648, 645, 1, 0, 0, 0, 649, 652, 1, 0, 0, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 133, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 654, 3, 136, 68, 0, 654, 668, 5, 100, 0, 0, 655, 669, 5, 90, 0, 0, 656, 661, 3, 122, 61, 0, 657, 658, 5, 63, 0, 0, 658, 660, 3, 122, 61, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 666, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 5, 63, 0, 0, 665, 667, 3, 138, 69, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 1, 0, 0, 0, 668, 655, 1, 0, 0, 0, 668, 656, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 671, 5, 101, 0, 0, 671, 135, 1, 0, 0, 0, 672, 673, 3, 60, 30, 0, 673, 137, 1, 0, 0, 0, 674, 675, 5, 93, 0, 0, 675, 680, 3, 140, 70, 0, 676, 677, 5, 63, 0, 0, 677, 679, 3, 140, 70, 0, 678, 676, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 683, 684, 5, 94, 0, 0, 684, 139, 1, 0, 0, 0, 685, 686, 3, 152, 76, 0, 686, 687, 5, 62, 0, 0, 687, 688, 3, 142, 71, 0, 688, 141, 1, 0, 0, 0, 689, 732, 5, 73, 0, 0, 690, 691, 3, 150, 75, 0, 691, 692, 5, 102, 0, 0, 692, 732, 1, 0, 0, 0, 693, 732, 3, 148, 74, 0, 694, 732, 3, 150, 75, 0, 695, 732, 3, 144, 72, 0, 696, 732, 3, 56, 28, 0, 697, 732, 3, 152, 76, 0, 698, 699, 5, 98, 0, 0, 699, 704, 3, 146, 73, 0, 700, 701, 5, 63, 0, 0, 701, 703, 3, 146, 73, 0, 702, 700, 1, 0, 0, 0, 703, 706, 1, 0, 0, 0, 704, 702, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 707, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 707, 708, 5, 99, 0, 0, 708, 732, 1, 0, 0, 0, 709, 710, 5, 98, 0, 0, 710, 715, 3, 144, 72, 0, 711, 712, 5, 63, 0, 0, 712, 714, 3, 144, 72, 0, 713, 711, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 99, 0, 0, 719, 732, 1, 0, 0, 0, 720, 721, 5, 98, 0, 0, 721, 726, 3, 152, 76, 0, 722, 723, 5, 63, 0, 0, 723, 725, 3, 152, 76, 0, 724, 722, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 729, 730, 5, 99, 0, 0, 730, 732, 1, 0, 0, 0, 731, 689, 1, 0, 0, 0, 731, 690, 1, 0, 0, 0, 731, 693, 1, 0, 0, 0, 731, 694, 1, 0, 0, 0, 731, 695, 1, 0, 0, 0, 731, 696, 1, 0, 0, 0, 731, 697, 1, 0, 0, 0, 731, 698, 1, 0, 0, 0, 731, 709, 1, 0, 0, 0, 731, 720, 1, 0, 0, 0, 732, 143, 1, 0, 0, 0, 733, 734, 7, 6, 0, 0, 734, 145, 1, 0, 0, 0, 735, 738, 3, 148, 74, 0, 736, 738, 3, 150, 75, 0, 737, 735, 1, 0, 0, 0, 737, 736, 1, 0, 0, 0, 738, 147, 1, 0, 0, 0, 739, 741, 7, 4, 0, 0, 740, 739, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 5, 55, 0, 0, 743, 149, 1, 0, 0, 0, 744, 746, 7, 4, 0, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 54, 0, 0, 748, 151, 1, 0, 0, 0, 749, 750, 5, 53, 0, 0, 750, 153, 1, 0, 0, 0, 751, 752, 7, 7, 0, 0, 752, 155, 1, 0, 0, 0, 753, 754, 7, 8, 0, 0, 754, 755, 5, 115, 0, 0, 755, 756, 3, 158, 79, 0, 756, 757, 3, 160, 80, 0, 757, 157, 1, 0, 0, 0, 758, 759, 3, 28, 14, 0, 759, 159, 1, 0, 0, 0, 760, 761, 5, 75, 0, 0, 761, 766, 3, 162, 81, 0, 762, 763, 5, 63, 0, 0, 763, 765, 3, 162, 81, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 161, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 770, 3, 128, 64, 0, 770, 163, 1, 0, 0, 0, 70, 175, 184, 216, 231, 237, 246, 252, 265, 269, 274, 280, 282, 296, 304, 308, 315, 321, 328, 336, 344, 352, 356, 360, 365, 376, 381, 385, 399, 410, 424, 445, 453, 456, 461, 474, 480, 487, 498, 512, 521, 538, 543, 552, 561, 569, 574, 582, 584, 589, 596, 601, 606, 616, 622, 630, 632, 643, 650, 661, 666, 668, 680, 704, 715, 726, 731, 737, 740, 745, 766]
+[4, 1, 139, 774, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 176, 8, 1, 10, 1, 12, 1, 179, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 187, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 219, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 232, 8, 7, 10, 7, 12, 7, 235, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 255, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 266, 8, 13, 10, 13, 12, 13, 269, 9, 13, 1, 13, 3, 13, 272, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 283, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 297, 8, 19, 10, 19, 12, 19, 300, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 307, 8, 21, 1, 21, 1, 21, 3, 21, 311, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 316, 8, 22, 10, 22, 12, 22, 319, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 324, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 329, 8, 24, 10, 24, 12, 24, 332, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 337, 8, 25, 10, 25, 12, 25, 340, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 345, 8, 26, 10, 26, 12, 26, 348, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 355, 8, 28, 1, 29, 1, 29, 3, 29, 359, 8, 29, 1, 30, 1, 30, 3, 30, 363, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 368, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 377, 8, 33, 10, 33, 12, 33, 380, 9, 33, 1, 34, 1, 34, 3, 34, 384, 8, 34, 1, 34, 1, 34, 3, 34, 388, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 400, 8, 37, 10, 37, 12, 37, 403, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 413, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 5, 42, 425, 8, 42, 10, 42, 12, 42, 428, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 454, 8, 47, 10, 47, 12, 47, 457, 9, 47, 3, 47, 459, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 464, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 477, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 483, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 490, 8, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 499, 8, 54, 11, 54, 12, 54, 500, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 513, 8, 56, 10, 56, 12, 56, 516, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 524, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 541, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 546, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 555, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 562, 8, 62, 10, 62, 12, 62, 565, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 572, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 577, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 585, 8, 62, 10, 62, 12, 62, 588, 9, 62, 1, 63, 1, 63, 3, 63, 592, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 599, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 604, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 609, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 619, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 625, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 633, 8, 66, 10, 66, 12, 66, 636, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 646, 8, 67, 1, 67, 1, 67, 1, 67, 5, 67, 651, 8, 67, 10, 67, 12, 67, 654, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 662, 8, 68, 10, 68, 12, 68, 665, 9, 68, 1, 68, 1, 68, 3, 68, 669, 8, 68, 3, 68, 671, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 681, 8, 70, 10, 70, 12, 70, 684, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 705, 8, 72, 10, 72, 12, 72, 708, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 716, 8, 72, 10, 72, 12, 72, 719, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 727, 8, 72, 10, 72, 12, 72, 730, 9, 72, 1, 72, 1, 72, 3, 72, 734, 8, 72, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 740, 8, 74, 1, 75, 3, 75, 743, 8, 75, 1, 75, 1, 75, 1, 76, 3, 76, 748, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 767, 8, 81, 10, 81, 12, 81, 770, 9, 81, 1, 82, 1, 82, 1, 82, 0, 5, 2, 112, 124, 132, 134, 83, 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, 0, 9, 2, 0, 53, 53, 108, 108, 1, 0, 102, 103, 2, 0, 58, 58, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 88, 89, 1, 0, 90, 92, 2, 0, 66, 66, 79, 79, 2, 0, 81, 81, 83, 87, 2, 0, 22, 22, 24, 25, 803, 0, 166, 1, 0, 0, 0, 2, 169, 1, 0, 0, 0, 4, 186, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 8, 220, 1, 0, 0, 0, 10, 223, 1, 0, 0, 0, 12, 225, 1, 0, 0, 0, 14, 228, 1, 0, 0, 0, 16, 239, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 251, 1, 0, 0, 0, 22, 256, 1, 0, 0, 0, 24, 259, 1, 0, 0, 0, 26, 262, 1, 0, 0, 0, 28, 282, 1, 0, 0, 0, 30, 284, 1, 0, 0, 0, 32, 286, 1, 0, 0, 0, 34, 288, 1, 0, 0, 0, 36, 290, 1, 0, 0, 0, 38, 292, 1, 0, 0, 0, 40, 301, 1, 0, 0, 0, 42, 304, 1, 0, 0, 0, 44, 312, 1, 0, 0, 0, 46, 320, 1, 0, 0, 0, 48, 325, 1, 0, 0, 0, 50, 333, 1, 0, 0, 0, 52, 341, 1, 0, 0, 0, 54, 349, 1, 0, 0, 0, 56, 354, 1, 0, 0, 0, 58, 358, 1, 0, 0, 0, 60, 362, 1, 0, 0, 0, 62, 367, 1, 0, 0, 0, 64, 369, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 381, 1, 0, 0, 0, 70, 389, 1, 0, 0, 0, 72, 392, 1, 0, 0, 0, 74, 395, 1, 0, 0, 0, 76, 404, 1, 0, 0, 0, 78, 408, 1, 0, 0, 0, 80, 414, 1, 0, 0, 0, 82, 418, 1, 0, 0, 0, 84, 421, 1, 0, 0, 0, 86, 429, 1, 0, 0, 0, 88, 433, 1, 0, 0, 0, 90, 436, 1, 0, 0, 0, 92, 440, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 463, 1, 0, 0, 0, 98, 467, 1, 0, 0, 0, 100, 472, 1, 0, 0, 0, 102, 478, 1, 0, 0, 0, 104, 491, 1, 0, 0, 0, 106, 494, 1, 0, 0, 0, 108, 498, 1, 0, 0, 0, 110, 502, 1, 0, 0, 0, 112, 506, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 527, 1, 0, 0, 0, 120, 534, 1, 0, 0, 0, 122, 542, 1, 0, 0, 0, 124, 576, 1, 0, 0, 0, 126, 603, 1, 0, 0, 0, 128, 605, 1, 0, 0, 0, 130, 618, 1, 0, 0, 0, 132, 624, 1, 0, 0, 0, 134, 645, 1, 0, 0, 0, 136, 655, 1, 0, 0, 0, 138, 674, 1, 0, 0, 0, 140, 676, 1, 0, 0, 0, 142, 687, 1, 0, 0, 0, 144, 733, 1, 0, 0, 0, 146, 735, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 742, 1, 0, 0, 0, 152, 747, 1, 0, 0, 0, 154, 751, 1, 0, 0, 0, 156, 753, 1, 0, 0, 0, 158, 755, 1, 0, 0, 0, 160, 760, 1, 0, 0, 0, 162, 762, 1, 0, 0, 0, 164, 771, 1, 0, 0, 0, 166, 167, 3, 2, 1, 0, 167, 168, 5, 0, 0, 1, 168, 1, 1, 0, 0, 0, 169, 170, 6, 1, -1, 0, 170, 171, 3, 4, 2, 0, 171, 177, 1, 0, 0, 0, 172, 173, 10, 1, 0, 0, 173, 174, 5, 52, 0, 0, 174, 176, 3, 6, 3, 0, 175, 172, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 187, 3, 88, 44, 0, 181, 187, 3, 22, 11, 0, 182, 187, 3, 12, 6, 0, 183, 187, 3, 92, 46, 0, 184, 185, 4, 2, 1, 0, 185, 187, 3, 24, 12, 0, 186, 180, 1, 0, 0, 0, 186, 181, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 183, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 5, 1, 0, 0, 0, 188, 219, 3, 40, 20, 0, 189, 219, 3, 8, 4, 0, 190, 219, 3, 70, 35, 0, 191, 219, 3, 64, 32, 0, 192, 219, 3, 42, 21, 0, 193, 219, 3, 66, 33, 0, 194, 219, 3, 72, 36, 0, 195, 219, 3, 74, 37, 0, 196, 219, 3, 78, 39, 0, 197, 219, 3, 80, 40, 0, 198, 219, 3, 94, 47, 0, 199, 219, 3, 82, 41, 0, 200, 219, 3, 158, 79, 0, 201, 219, 3, 102, 51, 0, 202, 203, 4, 3, 2, 0, 203, 219, 3, 100, 50, 0, 204, 205, 4, 3, 3, 0, 205, 219, 3, 98, 49, 0, 206, 207, 4, 3, 4, 0, 207, 219, 3, 120, 60, 0, 208, 209, 4, 3, 5, 0, 209, 219, 3, 104, 52, 0, 210, 211, 4, 3, 6, 0, 211, 219, 3, 106, 53, 0, 212, 213, 4, 3, 7, 0, 213, 219, 3, 118, 59, 0, 214, 215, 4, 3, 8, 0, 215, 219, 3, 116, 58, 0, 216, 217, 4, 3, 9, 0, 217, 219, 3, 122, 61, 0, 218, 188, 1, 0, 0, 0, 218, 189, 1, 0, 0, 0, 218, 190, 1, 0, 0, 0, 218, 191, 1, 0, 0, 0, 218, 192, 1, 0, 0, 0, 218, 193, 1, 0, 0, 0, 218, 194, 1, 0, 0, 0, 218, 195, 1, 0, 0, 0, 218, 196, 1, 0, 0, 0, 218, 197, 1, 0, 0, 0, 218, 198, 1, 0, 0, 0, 218, 199, 1, 0, 0, 0, 218, 200, 1, 0, 0, 0, 218, 201, 1, 0, 0, 0, 218, 202, 1, 0, 0, 0, 218, 204, 1, 0, 0, 0, 218, 206, 1, 0, 0, 0, 218, 208, 1, 0, 0, 0, 218, 210, 1, 0, 0, 0, 218, 212, 1, 0, 0, 0, 218, 214, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 7, 1, 0, 0, 0, 220, 221, 5, 14, 0, 0, 221, 222, 3, 124, 62, 0, 222, 9, 1, 0, 0, 0, 223, 224, 3, 54, 27, 0, 224, 11, 1, 0, 0, 0, 225, 226, 5, 11, 0, 0, 226, 227, 3, 14, 7, 0, 227, 13, 1, 0, 0, 0, 228, 233, 3, 16, 8, 0, 229, 230, 5, 63, 0, 0, 230, 232, 3, 16, 8, 0, 231, 229, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 15, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 48, 24, 0, 237, 238, 5, 59, 0, 0, 238, 240, 1, 0, 0, 0, 239, 236, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 124, 62, 0, 242, 17, 1, 0, 0, 0, 243, 248, 3, 20, 10, 0, 244, 245, 5, 63, 0, 0, 245, 247, 3, 20, 10, 0, 246, 244, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 19, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 254, 3, 48, 24, 0, 252, 253, 5, 59, 0, 0, 253, 255, 3, 124, 62, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 21, 1, 0, 0, 0, 256, 257, 5, 19, 0, 0, 257, 258, 3, 26, 13, 0, 258, 23, 1, 0, 0, 0, 259, 260, 5, 20, 0, 0, 260, 261, 3, 26, 13, 0, 261, 25, 1, 0, 0, 0, 262, 267, 3, 28, 14, 0, 263, 264, 5, 63, 0, 0, 264, 266, 3, 28, 14, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 272, 3, 38, 19, 0, 271, 270, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 27, 1, 0, 0, 0, 273, 274, 3, 30, 15, 0, 274, 275, 5, 62, 0, 0, 275, 276, 3, 34, 17, 0, 276, 283, 1, 0, 0, 0, 277, 278, 3, 34, 17, 0, 278, 279, 5, 61, 0, 0, 279, 280, 3, 32, 16, 0, 280, 283, 1, 0, 0, 0, 281, 283, 3, 36, 18, 0, 282, 273, 1, 0, 0, 0, 282, 277, 1, 0, 0, 0, 282, 281, 1, 0, 0, 0, 283, 29, 1, 0, 0, 0, 284, 285, 5, 108, 0, 0, 285, 31, 1, 0, 0, 0, 286, 287, 5, 108, 0, 0, 287, 33, 1, 0, 0, 0, 288, 289, 5, 108, 0, 0, 289, 35, 1, 0, 0, 0, 290, 291, 7, 0, 0, 0, 291, 37, 1, 0, 0, 0, 292, 293, 5, 107, 0, 0, 293, 298, 5, 108, 0, 0, 294, 295, 5, 63, 0, 0, 295, 297, 5, 108, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 39, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 303, 3, 14, 7, 0, 303, 41, 1, 0, 0, 0, 304, 306, 5, 13, 0, 0, 305, 307, 3, 44, 22, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 60, 0, 0, 309, 311, 3, 14, 7, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 43, 1, 0, 0, 0, 312, 317, 3, 46, 23, 0, 313, 314, 5, 63, 0, 0, 314, 316, 3, 46, 23, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 45, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 323, 3, 16, 8, 0, 321, 322, 5, 14, 0, 0, 322, 324, 3, 124, 62, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 330, 3, 62, 31, 0, 326, 327, 5, 65, 0, 0, 327, 329, 3, 62, 31, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 49, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 338, 3, 56, 28, 0, 334, 335, 5, 65, 0, 0, 335, 337, 3, 56, 28, 0, 336, 334, 1, 0, 0, 0, 337, 340, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 51, 1, 0, 0, 0, 340, 338, 1, 0, 0, 0, 341, 346, 3, 50, 25, 0, 342, 343, 5, 63, 0, 0, 343, 345, 3, 50, 25, 0, 344, 342, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 53, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 350, 7, 1, 0, 0, 350, 55, 1, 0, 0, 0, 351, 355, 5, 129, 0, 0, 352, 355, 3, 58, 29, 0, 353, 355, 3, 60, 30, 0, 354, 351, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 353, 1, 0, 0, 0, 355, 57, 1, 0, 0, 0, 356, 359, 5, 77, 0, 0, 357, 359, 5, 96, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 59, 1, 0, 0, 0, 360, 363, 5, 95, 0, 0, 361, 363, 5, 97, 0, 0, 362, 360, 1, 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 61, 1, 0, 0, 0, 364, 368, 3, 54, 27, 0, 365, 368, 3, 58, 29, 0, 366, 368, 3, 60, 30, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 63, 1, 0, 0, 0, 369, 370, 5, 10, 0, 0, 370, 371, 5, 54, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 12, 0, 0, 373, 378, 3, 68, 34, 0, 374, 375, 5, 63, 0, 0, 375, 377, 3, 68, 34, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 67, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 383, 3, 124, 62, 0, 382, 384, 7, 2, 0, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 386, 5, 74, 0, 0, 386, 388, 7, 3, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 69, 1, 0, 0, 0, 389, 390, 5, 29, 0, 0, 390, 391, 3, 52, 26, 0, 391, 71, 1, 0, 0, 0, 392, 393, 5, 28, 0, 0, 393, 394, 3, 52, 26, 0, 394, 73, 1, 0, 0, 0, 395, 396, 5, 32, 0, 0, 396, 401, 3, 76, 38, 0, 397, 398, 5, 63, 0, 0, 398, 400, 3, 76, 38, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 75, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 57, 0, 0, 406, 407, 3, 50, 25, 0, 407, 77, 1, 0, 0, 0, 408, 409, 5, 7, 0, 0, 409, 410, 3, 134, 67, 0, 410, 412, 3, 154, 77, 0, 411, 413, 3, 84, 42, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 79, 1, 0, 0, 0, 414, 415, 5, 9, 0, 0, 415, 416, 3, 134, 67, 0, 416, 417, 3, 154, 77, 0, 417, 81, 1, 0, 0, 0, 418, 419, 5, 27, 0, 0, 419, 420, 3, 48, 24, 0, 420, 83, 1, 0, 0, 0, 421, 426, 3, 86, 43, 0, 422, 423, 5, 63, 0, 0, 423, 425, 3, 86, 43, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 85, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 3, 54, 27, 0, 430, 431, 5, 59, 0, 0, 431, 432, 3, 144, 72, 0, 432, 87, 1, 0, 0, 0, 433, 434, 5, 6, 0, 0, 434, 435, 3, 90, 45, 0, 435, 89, 1, 0, 0, 0, 436, 437, 5, 98, 0, 0, 437, 438, 3, 2, 1, 0, 438, 439, 5, 99, 0, 0, 439, 91, 1, 0, 0, 0, 440, 441, 5, 33, 0, 0, 441, 442, 5, 136, 0, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, 444, 447, 5, 38, 0, 0, 445, 446, 5, 75, 0, 0, 446, 448, 3, 50, 25, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 458, 1, 0, 0, 0, 449, 450, 5, 80, 0, 0, 450, 455, 3, 96, 48, 0, 451, 452, 5, 63, 0, 0, 452, 454, 3, 96, 48, 0, 453, 451, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 449, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 95, 1, 0, 0, 0, 460, 461, 3, 50, 25, 0, 461, 462, 5, 59, 0, 0, 462, 464, 1, 0, 0, 0, 463, 460, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 3, 50, 25, 0, 466, 97, 1, 0, 0, 0, 467, 468, 5, 26, 0, 0, 468, 469, 3, 28, 14, 0, 469, 470, 5, 75, 0, 0, 470, 471, 3, 52, 26, 0, 471, 99, 1, 0, 0, 0, 472, 473, 5, 16, 0, 0, 473, 476, 3, 44, 22, 0, 474, 475, 5, 60, 0, 0, 475, 477, 3, 14, 7, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 101, 1, 0, 0, 0, 478, 479, 5, 4, 0, 0, 479, 482, 3, 48, 24, 0, 480, 481, 5, 75, 0, 0, 481, 483, 3, 48, 24, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 489, 1, 0, 0, 0, 484, 485, 5, 57, 0, 0, 485, 486, 3, 48, 24, 0, 486, 487, 5, 63, 0, 0, 487, 488, 3, 48, 24, 0, 488, 490, 1, 0, 0, 0, 489, 484, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 103, 1, 0, 0, 0, 491, 492, 5, 30, 0, 0, 492, 493, 3, 52, 26, 0, 493, 105, 1, 0, 0, 0, 494, 495, 5, 21, 0, 0, 495, 496, 3, 108, 54, 0, 496, 107, 1, 0, 0, 0, 497, 499, 3, 110, 55, 0, 498, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 109, 1, 0, 0, 0, 502, 503, 5, 100, 0, 0, 503, 504, 3, 112, 56, 0, 504, 505, 5, 101, 0, 0, 505, 111, 1, 0, 0, 0, 506, 507, 6, 56, -1, 0, 507, 508, 3, 114, 57, 0, 508, 514, 1, 0, 0, 0, 509, 510, 10, 1, 0, 0, 510, 511, 5, 52, 0, 0, 511, 513, 3, 114, 57, 0, 512, 509, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 113, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 524, 3, 40, 20, 0, 518, 524, 3, 8, 4, 0, 519, 524, 3, 64, 32, 0, 520, 524, 3, 42, 21, 0, 521, 524, 3, 66, 33, 0, 522, 524, 3, 78, 39, 0, 523, 517, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 523, 519, 1, 0, 0, 0, 523, 520, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 522, 1, 0, 0, 0, 524, 115, 1, 0, 0, 0, 525, 526, 5, 31, 0, 0, 526, 117, 1, 0, 0, 0, 527, 528, 5, 17, 0, 0, 528, 529, 3, 144, 72, 0, 529, 530, 5, 75, 0, 0, 530, 531, 3, 18, 9, 0, 531, 532, 5, 80, 0, 0, 532, 533, 3, 62, 31, 0, 533, 119, 1, 0, 0, 0, 534, 535, 5, 15, 0, 0, 535, 536, 3, 134, 67, 0, 536, 537, 5, 80, 0, 0, 537, 540, 3, 62, 31, 0, 538, 539, 5, 57, 0, 0, 539, 541, 3, 48, 24, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 121, 1, 0, 0, 0, 542, 543, 5, 18, 0, 0, 543, 545, 3, 150, 75, 0, 544, 546, 3, 152, 76, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 123, 1, 0, 0, 0, 547, 548, 6, 62, -1, 0, 548, 549, 5, 72, 0, 0, 549, 577, 3, 124, 62, 8, 550, 577, 3, 130, 65, 0, 551, 577, 3, 126, 63, 0, 552, 554, 3, 130, 65, 0, 553, 555, 5, 72, 0, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 5, 68, 0, 0, 557, 558, 5, 100, 0, 0, 558, 563, 3, 130, 65, 0, 559, 560, 5, 63, 0, 0, 560, 562, 3, 130, 65, 0, 561, 559, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 566, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 567, 5, 101, 0, 0, 567, 577, 1, 0, 0, 0, 568, 569, 3, 130, 65, 0, 569, 571, 5, 69, 0, 0, 570, 572, 5, 72, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 5, 73, 0, 0, 574, 577, 1, 0, 0, 0, 575, 577, 3, 128, 64, 0, 576, 547, 1, 0, 0, 0, 576, 550, 1, 0, 0, 0, 576, 551, 1, 0, 0, 0, 576, 552, 1, 0, 0, 0, 576, 568, 1, 0, 0, 0, 576, 575, 1, 0, 0, 0, 577, 586, 1, 0, 0, 0, 578, 579, 10, 5, 0, 0, 579, 580, 5, 56, 0, 0, 580, 585, 3, 124, 62, 6, 581, 582, 10, 4, 0, 0, 582, 583, 5, 76, 0, 0, 583, 585, 3, 124, 62, 5, 584, 578, 1, 0, 0, 0, 584, 581, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 125, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 591, 3, 130, 65, 0, 590, 592, 5, 72, 0, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 71, 0, 0, 594, 595, 3, 154, 77, 0, 595, 604, 1, 0, 0, 0, 596, 598, 3, 130, 65, 0, 597, 599, 5, 72, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 5, 78, 0, 0, 601, 602, 3, 154, 77, 0, 602, 604, 1, 0, 0, 0, 603, 589, 1, 0, 0, 0, 603, 596, 1, 0, 0, 0, 604, 127, 1, 0, 0, 0, 605, 608, 3, 48, 24, 0, 606, 607, 5, 61, 0, 0, 607, 609, 3, 10, 5, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 62, 0, 0, 611, 612, 3, 144, 72, 0, 612, 129, 1, 0, 0, 0, 613, 619, 3, 132, 66, 0, 614, 615, 3, 132, 66, 0, 615, 616, 3, 156, 78, 0, 616, 617, 3, 132, 66, 0, 617, 619, 1, 0, 0, 0, 618, 613, 1, 0, 0, 0, 618, 614, 1, 0, 0, 0, 619, 131, 1, 0, 0, 0, 620, 621, 6, 66, -1, 0, 621, 625, 3, 134, 67, 0, 622, 623, 7, 4, 0, 0, 623, 625, 3, 132, 66, 3, 624, 620, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 634, 1, 0, 0, 0, 626, 627, 10, 2, 0, 0, 627, 628, 7, 5, 0, 0, 628, 633, 3, 132, 66, 3, 629, 630, 10, 1, 0, 0, 630, 631, 7, 4, 0, 0, 631, 633, 3, 132, 66, 2, 632, 626, 1, 0, 0, 0, 632, 629, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 133, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 637, 638, 6, 67, -1, 0, 638, 646, 3, 144, 72, 0, 639, 646, 3, 48, 24, 0, 640, 646, 3, 136, 68, 0, 641, 642, 5, 100, 0, 0, 642, 643, 3, 124, 62, 0, 643, 644, 5, 101, 0, 0, 644, 646, 1, 0, 0, 0, 645, 637, 1, 0, 0, 0, 645, 639, 1, 0, 0, 0, 645, 640, 1, 0, 0, 0, 645, 641, 1, 0, 0, 0, 646, 652, 1, 0, 0, 0, 647, 648, 10, 1, 0, 0, 648, 649, 5, 61, 0, 0, 649, 651, 3, 10, 5, 0, 650, 647, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 135, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 656, 3, 138, 69, 0, 656, 670, 5, 100, 0, 0, 657, 671, 5, 90, 0, 0, 658, 663, 3, 124, 62, 0, 659, 660, 5, 63, 0, 0, 660, 662, 3, 124, 62, 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 668, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 667, 5, 63, 0, 0, 667, 669, 3, 140, 70, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 657, 1, 0, 0, 0, 670, 658, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 101, 0, 0, 673, 137, 1, 0, 0, 0, 674, 675, 3, 62, 31, 0, 675, 139, 1, 0, 0, 0, 676, 677, 5, 93, 0, 0, 677, 682, 3, 142, 71, 0, 678, 679, 5, 63, 0, 0, 679, 681, 3, 142, 71, 0, 680, 678, 1, 0, 0, 0, 681, 684, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 685, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 685, 686, 5, 94, 0, 0, 686, 141, 1, 0, 0, 0, 687, 688, 3, 154, 77, 0, 688, 689, 5, 62, 0, 0, 689, 690, 3, 144, 72, 0, 690, 143, 1, 0, 0, 0, 691, 734, 5, 73, 0, 0, 692, 693, 3, 152, 76, 0, 693, 694, 5, 102, 0, 0, 694, 734, 1, 0, 0, 0, 695, 734, 3, 150, 75, 0, 696, 734, 3, 152, 76, 0, 697, 734, 3, 146, 73, 0, 698, 734, 3, 58, 29, 0, 699, 734, 3, 154, 77, 0, 700, 701, 5, 98, 0, 0, 701, 706, 3, 148, 74, 0, 702, 703, 5, 63, 0, 0, 703, 705, 3, 148, 74, 0, 704, 702, 1, 0, 0, 0, 705, 708, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 709, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 710, 5, 99, 0, 0, 710, 734, 1, 0, 0, 0, 711, 712, 5, 98, 0, 0, 712, 717, 3, 146, 73, 0, 713, 714, 5, 63, 0, 0, 714, 716, 3, 146, 73, 0, 715, 713, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 720, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 721, 5, 99, 0, 0, 721, 734, 1, 0, 0, 0, 722, 723, 5, 98, 0, 0, 723, 728, 3, 154, 77, 0, 724, 725, 5, 63, 0, 0, 725, 727, 3, 154, 77, 0, 726, 724, 1, 0, 0, 0, 727, 730, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 732, 5, 99, 0, 0, 732, 734, 1, 0, 0, 0, 733, 691, 1, 0, 0, 0, 733, 692, 1, 0, 0, 0, 733, 695, 1, 0, 0, 0, 733, 696, 1, 0, 0, 0, 733, 697, 1, 0, 0, 0, 733, 698, 1, 0, 0, 0, 733, 699, 1, 0, 0, 0, 733, 700, 1, 0, 0, 0, 733, 711, 1, 0, 0, 0, 733, 722, 1, 0, 0, 0, 734, 145, 1, 0, 0, 0, 735, 736, 7, 6, 0, 0, 736, 147, 1, 0, 0, 0, 737, 740, 3, 150, 75, 0, 738, 740, 3, 152, 76, 0, 739, 737, 1, 0, 0, 0, 739, 738, 1, 0, 0, 0, 740, 149, 1, 0, 0, 0, 741, 743, 7, 4, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 5, 55, 0, 0, 745, 151, 1, 0, 0, 0, 746, 748, 7, 4, 0, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 54, 0, 0, 750, 153, 1, 0, 0, 0, 751, 752, 5, 53, 0, 0, 752, 155, 1, 0, 0, 0, 753, 754, 7, 7, 0, 0, 754, 157, 1, 0, 0, 0, 755, 756, 7, 8, 0, 0, 756, 757, 5, 115, 0, 0, 757, 758, 3, 160, 80, 0, 758, 759, 3, 162, 81, 0, 759, 159, 1, 0, 0, 0, 760, 761, 3, 28, 14, 0, 761, 161, 1, 0, 0, 0, 762, 763, 5, 75, 0, 0, 763, 768, 3, 164, 82, 0, 764, 765, 5, 63, 0, 0, 765, 767, 3, 164, 82, 0, 766, 764, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 163, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 3, 130, 65, 0, 772, 165, 1, 0, 0, 0, 68, 177, 186, 218, 233, 239, 248, 254, 267, 271, 282, 298, 306, 310, 317, 323, 330, 338, 346, 354, 358, 362, 367, 378, 383, 387, 401, 412, 426, 447, 455, 458, 463, 476, 482, 489, 500, 514, 523, 540, 545, 554, 563, 571, 576, 584, 586, 591, 598, 603, 608, 618, 624, 632, 634, 645, 652, 663, 668, 670, 682, 706, 717, 728, 733, 739, 742, 747, 768]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
index 1ffe9eb44617e..2ec81224d48ea 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
@@ -25,83 +25,83 @@ public class EsqlBaseParser extends ParserConfig {
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
- LINE_COMMENT=1, MULTILINE_COMMENT=2, WS=3, CHANGE_POINT=4, ENRICH=5, EXPLAIN=6,
- DISSECT=7, EVAL=8, GROK=9, LIMIT=10, ROW=11, SORT=12, STATS=13, WHERE=14,
- DEV_COMPLETION=15, DEV_INLINESTATS=16, DEV_RERANK=17, DEV_SAMPLE=18, FROM=19,
- DEV_TIME_SERIES=20, DEV_FORK=21, JOIN_LOOKUP=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24,
- DEV_JOIN_RIGHT=25, DEV_LOOKUP=26, MV_EXPAND=27, DROP=28, KEEP=29, DEV_INSIST=30,
- DEV_RRF=31, RENAME=32, SHOW=33, UNKNOWN_CMD=34, CHANGE_POINT_LINE_COMMENT=35,
- CHANGE_POINT_MULTILINE_COMMENT=36, CHANGE_POINT_WS=37, ENRICH_POLICY_NAME=38,
- ENRICH_LINE_COMMENT=39, ENRICH_MULTILINE_COMMENT=40, ENRICH_WS=41, ENRICH_FIELD_LINE_COMMENT=42,
- ENRICH_FIELD_MULTILINE_COMMENT=43, ENRICH_FIELD_WS=44, SETTING=45, SETTING_LINE_COMMENT=46,
- SETTTING_MULTILINE_COMMENT=47, SETTING_WS=48, EXPLAIN_WS=49, EXPLAIN_LINE_COMMENT=50,
- EXPLAIN_MULTILINE_COMMENT=51, PIPE=52, QUOTED_STRING=53, INTEGER_LITERAL=54,
- DECIMAL_LITERAL=55, AND=56, AS=57, ASC=58, ASSIGN=59, BY=60, CAST_OP=61,
- COLON=62, COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69,
- LAST=70, LIKE=71, NOT=72, NULL=73, NULLS=74, ON=75, OR=76, PARAM=77, RLIKE=78,
- TRUE=79, WITH=80, EQ=81, CIEQ=82, NEQ=83, LT=84, LTE=85, GT=86, GTE=87,
- PLUS=88, MINUS=89, ASTERISK=90, SLASH=91, PERCENT=92, LEFT_BRACES=93,
- RIGHT_BRACES=94, DOUBLE_PARAMS=95, NAMED_OR_POSITIONAL_PARAM=96, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=97,
- OPENING_BRACKET=98, CLOSING_BRACKET=99, LP=100, RP=101, UNQUOTED_IDENTIFIER=102,
- QUOTED_IDENTIFIER=103, EXPR_LINE_COMMENT=104, EXPR_MULTILINE_COMMENT=105,
- EXPR_WS=106, METADATA=107, UNQUOTED_SOURCE=108, FROM_LINE_COMMENT=109,
- FROM_MULTILINE_COMMENT=110, FROM_WS=111, FORK_WS=112, FORK_LINE_COMMENT=113,
- FORK_MULTILINE_COMMENT=114, JOIN=115, USING=116, JOIN_LINE_COMMENT=117,
- JOIN_MULTILINE_COMMENT=118, JOIN_WS=119, LOOKUP_LINE_COMMENT=120, LOOKUP_MULTILINE_COMMENT=121,
- LOOKUP_WS=122, LOOKUP_FIELD_LINE_COMMENT=123, LOOKUP_FIELD_MULTILINE_COMMENT=124,
- LOOKUP_FIELD_WS=125, MVEXPAND_LINE_COMMENT=126, MVEXPAND_MULTILINE_COMMENT=127,
- MVEXPAND_WS=128, ID_PATTERN=129, PROJECT_LINE_COMMENT=130, PROJECT_MULTILINE_COMMENT=131,
- PROJECT_WS=132, RENAME_LINE_COMMENT=133, RENAME_MULTILINE_COMMENT=134,
- RENAME_WS=135, INFO=136, SHOW_LINE_COMMENT=137, SHOW_MULTILINE_COMMENT=138,
+ LINE_COMMENT=1, MULTILINE_COMMENT=2, WS=3, CHANGE_POINT=4, ENRICH=5, EXPLAIN=6,
+ DISSECT=7, EVAL=8, GROK=9, LIMIT=10, ROW=11, SORT=12, STATS=13, WHERE=14,
+ DEV_COMPLETION=15, DEV_INLINESTATS=16, DEV_RERANK=17, DEV_SAMPLE=18, FROM=19,
+ DEV_TIME_SERIES=20, DEV_FORK=21, JOIN_LOOKUP=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24,
+ DEV_JOIN_RIGHT=25, DEV_LOOKUP=26, MV_EXPAND=27, DROP=28, KEEP=29, DEV_INSIST=30,
+ DEV_RRF=31, RENAME=32, SHOW=33, UNKNOWN_CMD=34, CHANGE_POINT_LINE_COMMENT=35,
+ CHANGE_POINT_MULTILINE_COMMENT=36, CHANGE_POINT_WS=37, ENRICH_POLICY_NAME=38,
+ ENRICH_LINE_COMMENT=39, ENRICH_MULTILINE_COMMENT=40, ENRICH_WS=41, ENRICH_FIELD_LINE_COMMENT=42,
+ ENRICH_FIELD_MULTILINE_COMMENT=43, ENRICH_FIELD_WS=44, SETTING=45, SETTING_LINE_COMMENT=46,
+ SETTTING_MULTILINE_COMMENT=47, SETTING_WS=48, EXPLAIN_WS=49, EXPLAIN_LINE_COMMENT=50,
+ EXPLAIN_MULTILINE_COMMENT=51, PIPE=52, QUOTED_STRING=53, INTEGER_LITERAL=54,
+ DECIMAL_LITERAL=55, AND=56, AS=57, ASC=58, ASSIGN=59, BY=60, CAST_OP=61,
+ COLON=62, COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69,
+ LAST=70, LIKE=71, NOT=72, NULL=73, NULLS=74, ON=75, OR=76, PARAM=77, RLIKE=78,
+ TRUE=79, WITH=80, EQ=81, CIEQ=82, NEQ=83, LT=84, LTE=85, GT=86, GTE=87,
+ PLUS=88, MINUS=89, ASTERISK=90, SLASH=91, PERCENT=92, LEFT_BRACES=93,
+ RIGHT_BRACES=94, DOUBLE_PARAMS=95, NAMED_OR_POSITIONAL_PARAM=96, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=97,
+ OPENING_BRACKET=98, CLOSING_BRACKET=99, LP=100, RP=101, UNQUOTED_IDENTIFIER=102,
+ QUOTED_IDENTIFIER=103, EXPR_LINE_COMMENT=104, EXPR_MULTILINE_COMMENT=105,
+ EXPR_WS=106, METADATA=107, UNQUOTED_SOURCE=108, FROM_LINE_COMMENT=109,
+ FROM_MULTILINE_COMMENT=110, FROM_WS=111, FORK_WS=112, FORK_LINE_COMMENT=113,
+ FORK_MULTILINE_COMMENT=114, JOIN=115, USING=116, JOIN_LINE_COMMENT=117,
+ JOIN_MULTILINE_COMMENT=118, JOIN_WS=119, LOOKUP_LINE_COMMENT=120, LOOKUP_MULTILINE_COMMENT=121,
+ LOOKUP_WS=122, LOOKUP_FIELD_LINE_COMMENT=123, LOOKUP_FIELD_MULTILINE_COMMENT=124,
+ LOOKUP_FIELD_WS=125, MVEXPAND_LINE_COMMENT=126, MVEXPAND_MULTILINE_COMMENT=127,
+ MVEXPAND_WS=128, ID_PATTERN=129, PROJECT_LINE_COMMENT=130, PROJECT_MULTILINE_COMMENT=131,
+ PROJECT_WS=132, RENAME_LINE_COMMENT=133, RENAME_MULTILINE_COMMENT=134,
+ RENAME_WS=135, INFO=136, SHOW_LINE_COMMENT=137, SHOW_MULTILINE_COMMENT=138,
SHOW_WS=139;
public static final int
- RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3,
- RULE_whereCommand = 4, RULE_dataType = 5, RULE_rowCommand = 6, RULE_fields = 7,
- RULE_field = 8, RULE_rerankFields = 9, RULE_rerankField = 10, RULE_fromCommand = 11,
- RULE_timeSeriesCommand = 12, RULE_indexPatternAndMetadataFields = 13,
- RULE_indexPattern = 14, RULE_clusterString = 15, RULE_selectorString = 16,
- RULE_indexString = 17, RULE_metadata = 18, RULE_evalCommand = 19, RULE_statsCommand = 20,
- RULE_aggFields = 21, RULE_aggField = 22, RULE_qualifiedName = 23, RULE_qualifiedNamePattern = 24,
- RULE_qualifiedNamePatterns = 25, RULE_identifier = 26, RULE_identifierPattern = 27,
- RULE_parameter = 28, RULE_doubleParameter = 29, RULE_identifierOrParameter = 30,
- RULE_limitCommand = 31, RULE_sortCommand = 32, RULE_orderExpression = 33,
- RULE_keepCommand = 34, RULE_dropCommand = 35, RULE_renameCommand = 36,
- RULE_renameClause = 37, RULE_dissectCommand = 38, RULE_grokCommand = 39,
- RULE_mvExpandCommand = 40, RULE_commandOptions = 41, RULE_commandOption = 42,
- RULE_explainCommand = 43, RULE_subqueryExpression = 44, RULE_showCommand = 45,
- RULE_enrichCommand = 46, RULE_enrichWithClause = 47, RULE_lookupCommand = 48,
- RULE_inlinestatsCommand = 49, RULE_changePointCommand = 50, RULE_insistCommand = 51,
- RULE_forkCommand = 52, RULE_forkSubQueries = 53, RULE_forkSubQuery = 54,
- RULE_forkSubQueryCommand = 55, RULE_forkSubQueryProcessingCommand = 56,
- RULE_rrfCommand = 57, RULE_rerankCommand = 58, RULE_completionCommand = 59,
- RULE_sampleCommand = 60, RULE_booleanExpression = 61, RULE_regexBooleanExpression = 62,
- RULE_matchBooleanExpression = 63, RULE_valueExpression = 64, RULE_operatorExpression = 65,
- RULE_primaryExpression = 66, RULE_functionExpression = 67, RULE_functionName = 68,
- RULE_mapExpression = 69, RULE_entryExpression = 70, RULE_constant = 71,
- RULE_booleanValue = 72, RULE_numericValue = 73, RULE_decimalValue = 74,
- RULE_integerValue = 75, RULE_string = 76, RULE_comparisonOperator = 77,
- RULE_joinCommand = 78, RULE_joinTarget = 79, RULE_joinCondition = 80,
- RULE_joinPredicate = 81;
+ RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3,
+ RULE_whereCommand = 4, RULE_dataType = 5, RULE_rowCommand = 6, RULE_fields = 7,
+ RULE_field = 8, RULE_rerankFields = 9, RULE_rerankField = 10, RULE_fromCommand = 11,
+ RULE_timeSeriesCommand = 12, RULE_indexPatternAndMetadataFields = 13,
+ RULE_indexPattern = 14, RULE_clusterString = 15, RULE_selectorString = 16,
+ RULE_unquotedIndexString = 17, RULE_indexString = 18, RULE_metadata = 19,
+ RULE_evalCommand = 20, RULE_statsCommand = 21, RULE_aggFields = 22, RULE_aggField = 23,
+ RULE_qualifiedName = 24, RULE_qualifiedNamePattern = 25, RULE_qualifiedNamePatterns = 26,
+ RULE_identifier = 27, RULE_identifierPattern = 28, RULE_parameter = 29,
+ RULE_doubleParameter = 30, RULE_identifierOrParameter = 31, RULE_limitCommand = 32,
+ RULE_sortCommand = 33, RULE_orderExpression = 34, RULE_keepCommand = 35,
+ RULE_dropCommand = 36, RULE_renameCommand = 37, RULE_renameClause = 38,
+ RULE_dissectCommand = 39, RULE_grokCommand = 40, RULE_mvExpandCommand = 41,
+ RULE_commandOptions = 42, RULE_commandOption = 43, RULE_explainCommand = 44,
+ RULE_subqueryExpression = 45, RULE_showCommand = 46, RULE_enrichCommand = 47,
+ RULE_enrichWithClause = 48, RULE_lookupCommand = 49, RULE_inlinestatsCommand = 50,
+ RULE_changePointCommand = 51, RULE_insistCommand = 52, RULE_forkCommand = 53,
+ RULE_forkSubQueries = 54, RULE_forkSubQuery = 55, RULE_forkSubQueryCommand = 56,
+ RULE_forkSubQueryProcessingCommand = 57, RULE_rrfCommand = 58, RULE_rerankCommand = 59,
+ RULE_completionCommand = 60, RULE_sampleCommand = 61, RULE_booleanExpression = 62,
+ RULE_regexBooleanExpression = 63, RULE_matchBooleanExpression = 64, RULE_valueExpression = 65,
+ RULE_operatorExpression = 66, RULE_primaryExpression = 67, RULE_functionExpression = 68,
+ RULE_functionName = 69, RULE_mapExpression = 70, RULE_entryExpression = 71,
+ RULE_constant = 72, RULE_booleanValue = 73, RULE_numericValue = 74, RULE_decimalValue = 75,
+ RULE_integerValue = 76, RULE_string = 77, RULE_comparisonOperator = 78,
+ RULE_joinCommand = 79, RULE_joinTarget = 80, RULE_joinCondition = 81,
+ RULE_joinPredicate = 82;
private static String[] makeRuleNames() {
return new String[] {
- "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand",
- "dataType", "rowCommand", "fields", "field", "rerankFields", "rerankField",
- "fromCommand", "timeSeriesCommand", "indexPatternAndMetadataFields",
- "indexPattern", "clusterString", "selectorString", "indexString", "metadata",
- "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName",
- "qualifiedNamePattern", "qualifiedNamePatterns", "identifier", "identifierPattern",
- "parameter", "doubleParameter", "identifierOrParameter", "limitCommand",
- "sortCommand", "orderExpression", "keepCommand", "dropCommand", "renameCommand",
- "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", "commandOptions",
- "commandOption", "explainCommand", "subqueryExpression", "showCommand",
- "enrichCommand", "enrichWithClause", "lookupCommand", "inlinestatsCommand",
- "changePointCommand", "insistCommand", "forkCommand", "forkSubQueries",
- "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand",
- "rrfCommand", "rerankCommand", "completionCommand", "sampleCommand",
- "booleanExpression", "regexBooleanExpression", "matchBooleanExpression",
- "valueExpression", "operatorExpression", "primaryExpression", "functionExpression",
- "functionName", "mapExpression", "entryExpression", "constant", "booleanValue",
- "numericValue", "decimalValue", "integerValue", "string", "comparisonOperator",
+ "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand",
+ "dataType", "rowCommand", "fields", "field", "rerankFields", "rerankField",
+ "fromCommand", "timeSeriesCommand", "indexPatternAndMetadataFields",
+ "indexPattern", "clusterString", "selectorString", "unquotedIndexString",
+ "indexString", "metadata", "evalCommand", "statsCommand", "aggFields",
+ "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns",
+ "identifier", "identifierPattern", "parameter", "doubleParameter", "identifierOrParameter",
+ "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand",
+ "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand",
+ "commandOptions", "commandOption", "explainCommand", "subqueryExpression",
+ "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand",
+ "inlinestatsCommand", "changePointCommand", "insistCommand", "forkCommand",
+ "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand",
+ "rrfCommand", "rerankCommand", "completionCommand", "sampleCommand",
+ "booleanExpression", "regexBooleanExpression", "matchBooleanExpression",
+ "valueExpression", "operatorExpression", "primaryExpression", "functionExpression",
+ "functionName", "mapExpression", "entryExpression", "constant", "booleanValue",
+ "numericValue", "decimalValue", "integerValue", "string", "comparisonOperator",
"joinCommand", "joinTarget", "joinCondition", "joinPredicate"
};
}
@@ -109,52 +109,52 @@ private static String[] makeRuleNames() {
private static String[] makeLiteralNames() {
return new String[] {
- null, null, null, null, "'change_point'", "'enrich'", "'explain'", "'dissect'",
- "'eval'", "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'",
- null, null, null, null, "'from'", null, null, "'lookup'", null, null,
- null, null, "'mv_expand'", "'drop'", "'keep'", null, null, "'rename'",
- "'show'", null, null, null, null, null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, "'|'", null, null, null,
- "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','", "'desc'",
- "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'", "'not'",
- "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'", "'true'", "'with'",
- "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'",
- "'/'", "'%'", "'{'", "'}'", "'??'", null, null, null, "']'", null, "')'",
- null, null, null, null, null, "'metadata'", null, null, null, null, null,
- null, null, "'join'", "'USING'", null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, null, null, null, null,
+ null, null, null, null, "'change_point'", "'enrich'", "'explain'", "'dissect'",
+ "'eval'", "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'",
+ null, null, null, null, "'from'", null, null, "'lookup'", null, null,
+ null, null, "'mv_expand'", "'drop'", "'keep'", null, null, "'rename'",
+ "'show'", null, null, null, null, null, null, null, null, null, null,
+ null, null, null, null, null, null, null, null, "'|'", null, null, null,
+ "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','", "'desc'",
+ "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'", "'not'",
+ "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'", "'true'", "'with'",
+ "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'",
+ "'/'", "'%'", "'{'", "'}'", "'??'", null, null, null, "']'", null, "')'",
+ null, null, null, null, null, "'metadata'", null, null, null, null, null,
+ null, null, "'join'", "'USING'", null, null, null, null, null, null,
+ null, null, null, null, null, null, null, null, null, null, null, null,
null, "'info'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
- null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "CHANGE_POINT", "ENRICH",
- "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", "STATS",
- "WHERE", "DEV_COMPLETION", "DEV_INLINESTATS", "DEV_RERANK", "DEV_SAMPLE",
- "FROM", "DEV_TIME_SERIES", "DEV_FORK", "JOIN_LOOKUP", "DEV_JOIN_FULL",
- "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", "MV_EXPAND", "DROP",
- "KEEP", "DEV_INSIST", "DEV_RRF", "RENAME", "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT",
- "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS", "ENRICH_POLICY_NAME",
- "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT",
- "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "SETTING", "SETTING_LINE_COMMENT",
- "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT",
- "EXPLAIN_MULTILINE_COMMENT", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL",
- "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON",
- "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE",
- "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", "TRUE", "WITH",
- "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK",
- "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM",
- "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET",
- "LP", "RP", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT",
- "EXPR_MULTILINE_COMMENT", "EXPR_WS", "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT",
- "FROM_MULTILINE_COMMENT", "FROM_WS", "FORK_WS", "FORK_LINE_COMMENT",
- "FORK_MULTILINE_COMMENT", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT",
- "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS",
- "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS",
- "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS",
- "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS",
- "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO",
+ null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "CHANGE_POINT", "ENRICH",
+ "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", "STATS",
+ "WHERE", "DEV_COMPLETION", "DEV_INLINESTATS", "DEV_RERANK", "DEV_SAMPLE",
+ "FROM", "DEV_TIME_SERIES", "DEV_FORK", "JOIN_LOOKUP", "DEV_JOIN_FULL",
+ "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", "MV_EXPAND", "DROP",
+ "KEEP", "DEV_INSIST", "DEV_RRF", "RENAME", "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT",
+ "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS", "ENRICH_POLICY_NAME",
+ "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT",
+ "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "SETTING", "SETTING_LINE_COMMENT",
+ "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT",
+ "EXPLAIN_MULTILINE_COMMENT", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL",
+ "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON",
+ "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE",
+ "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", "TRUE", "WITH",
+ "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK",
+ "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM",
+ "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET",
+ "LP", "RP", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT",
+ "EXPR_MULTILINE_COMMENT", "EXPR_WS", "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT",
+ "FROM_MULTILINE_COMMENT", "FROM_WS", "FORK_WS", "FORK_LINE_COMMENT",
+ "FORK_MULTILINE_COMMENT", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT",
+ "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS",
+ "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS",
+ "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS",
+ "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS",
+ "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO",
"SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS"
};
}
@@ -242,9 +242,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(164);
+ setState(166);
query(0);
- setState(165);
+ setState(167);
match(EOF);
}
}
@@ -266,7 +266,7 @@ public QueryContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_query; }
-
+
@SuppressWarnings("this-escape")
public QueryContext() { }
public void copyFrom(QueryContext ctx) {
@@ -340,11 +340,11 @@ private QueryContext query(int _p) throws RecognitionException {
_ctx = _localctx;
_prevctx = _localctx;
- setState(168);
+ setState(170);
sourceCommand();
}
_ctx.stop = _input.LT(-1);
- setState(175);
+ setState(177);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -355,16 +355,16 @@ private QueryContext query(int _p) throws RecognitionException {
{
_localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_query);
- setState(170);
+ setState(172);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(171);
+ setState(173);
match(PIPE);
- setState(172);
+ setState(174);
processingCommand();
}
- }
+ }
}
- setState(177);
+ setState(179);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
}
@@ -422,43 +422,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException {
SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState());
enterRule(_localctx, 4, RULE_sourceCommand);
try {
- setState(184);
+ setState(186);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(178);
+ setState(180);
explainCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(179);
+ setState(181);
fromCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(180);
+ setState(182);
rowCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(181);
+ setState(183);
showCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(182);
+ setState(184);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(183);
+ setState(185);
timeSeriesCommand();
}
break;
@@ -567,176 +567,176 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_processingCommand);
try {
- setState(216);
+ setState(218);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(186);
+ setState(188);
evalCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(187);
+ setState(189);
whereCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(188);
+ setState(190);
keepCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(189);
+ setState(191);
limitCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(190);
+ setState(192);
statsCommand();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(191);
+ setState(193);
sortCommand();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(192);
+ setState(194);
dropCommand();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
- setState(193);
+ setState(195);
renameCommand();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
- setState(194);
+ setState(196);
dissectCommand();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
- setState(195);
+ setState(197);
grokCommand();
}
break;
case 11:
enterOuterAlt(_localctx, 11);
{
- setState(196);
+ setState(198);
enrichCommand();
}
break;
case 12:
enterOuterAlt(_localctx, 12);
{
- setState(197);
+ setState(199);
mvExpandCommand();
}
break;
case 13:
enterOuterAlt(_localctx, 13);
{
- setState(198);
+ setState(200);
joinCommand();
}
break;
case 14:
enterOuterAlt(_localctx, 14);
{
- setState(199);
+ setState(201);
changePointCommand();
}
break;
case 15:
enterOuterAlt(_localctx, 15);
{
- setState(200);
+ setState(202);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(201);
+ setState(203);
inlinestatsCommand();
}
break;
case 16:
enterOuterAlt(_localctx, 16);
{
- setState(202);
+ setState(204);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(203);
+ setState(205);
lookupCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(204);
+ setState(206);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(205);
+ setState(207);
completionCommand();
}
break;
case 18:
enterOuterAlt(_localctx, 18);
{
- setState(206);
+ setState(208);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(207);
+ setState(209);
insistCommand();
}
break;
case 19:
enterOuterAlt(_localctx, 19);
{
- setState(208);
+ setState(210);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(209);
+ setState(211);
forkCommand();
}
break;
case 20:
enterOuterAlt(_localctx, 20);
{
- setState(210);
+ setState(212);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(211);
+ setState(213);
rerankCommand();
}
break;
case 21:
enterOuterAlt(_localctx, 21);
{
- setState(212);
+ setState(214);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(213);
+ setState(215);
rrfCommand();
}
break;
case 22:
enterOuterAlt(_localctx, 22);
{
- setState(214);
+ setState(216);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(215);
+ setState(217);
sampleCommand();
}
break;
@@ -785,9 +785,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(218);
+ setState(220);
match(WHERE);
- setState(219);
+ setState(221);
booleanExpression(0);
}
}
@@ -809,7 +809,7 @@ public DataTypeContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_dataType; }
-
+
@SuppressWarnings("this-escape")
public DataTypeContext() { }
public void copyFrom(DataTypeContext ctx) {
@@ -845,7 +845,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(221);
+ setState(223);
identifier();
}
}
@@ -892,9 +892,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(223);
+ setState(225);
match(ROW);
- setState(224);
+ setState(226);
fields();
}
}
@@ -948,23 +948,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(226);
+ setState(228);
field();
- setState(231);
+ setState(233);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,3,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(227);
+ setState(229);
match(COMMA);
- setState(228);
+ setState(230);
field();
}
- }
+ }
}
- setState(233);
+ setState(235);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,3,_ctx);
}
@@ -1016,19 +1016,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(237);
+ setState(239);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) {
case 1:
{
- setState(234);
+ setState(236);
qualifiedName();
- setState(235);
+ setState(237);
match(ASSIGN);
}
break;
}
- setState(239);
+ setState(241);
booleanExpression(0);
}
}
@@ -1082,21 +1082,21 @@ public final RerankFieldsContext rerankFields() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(241);
+ setState(243);
rerankField();
- setState(246);
+ setState(248);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(242);
+ setState(244);
match(COMMA);
- setState(243);
+ setState(245);
rerankField();
}
}
- setState(248);
+ setState(250);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -1149,16 +1149,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(249);
+ setState(251);
qualifiedName();
- setState(252);
+ setState(254);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==ASSIGN) {
{
- setState(250);
+ setState(252);
match(ASSIGN);
- setState(251);
+ setState(253);
booleanExpression(0);
}
}
@@ -1208,9 +1208,9 @@ public final FromCommandContext fromCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(254);
+ setState(256);
match(FROM);
- setState(255);
+ setState(257);
indexPatternAndMetadataFields();
}
}
@@ -1257,9 +1257,9 @@ public final TimeSeriesCommandContext timeSeriesCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(257);
+ setState(259);
match(DEV_TIME_SERIES);
- setState(258);
+ setState(260);
indexPatternAndMetadataFields();
}
}
@@ -1316,32 +1316,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields(
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(260);
+ setState(262);
indexPattern();
- setState(265);
+ setState(267);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,7,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(261);
+ setState(263);
match(COMMA);
- setState(262);
+ setState(264);
indexPattern();
}
- }
+ }
}
- setState(267);
+ setState(269);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,7,_ctx);
}
- setState(269);
+ setState(271);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) {
case 1:
{
- setState(268);
+ setState(270);
metadata();
}
break;
@@ -1361,17 +1361,20 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields(
@SuppressWarnings("CheckReturnValue")
public static class IndexPatternContext extends ParserRuleContext {
- public IndexStringContext indexString() {
- return getRuleContext(IndexStringContext.class,0);
- }
public ClusterStringContext clusterString() {
return getRuleContext(ClusterStringContext.class,0);
}
public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); }
+ public UnquotedIndexStringContext unquotedIndexString() {
+ return getRuleContext(UnquotedIndexStringContext.class,0);
+ }
public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); }
public SelectorStringContext selectorString() {
return getRuleContext(SelectorStringContext.class,0);
}
+ public IndexStringContext indexString() {
+ return getRuleContext(IndexStringContext.class,0);
+ }
@SuppressWarnings("this-escape")
public IndexPatternContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -1398,43 +1401,34 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
try {
setState(282);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
+ setState(273);
+ clusterString();
setState(274);
- _errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) {
- case 1:
- {
- setState(271);
- clusterString();
- setState(272);
- match(COLON);
- }
- break;
- }
- setState(276);
- indexString();
+ match(COLON);
+ setState(275);
+ unquotedIndexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
setState(277);
- indexString();
- setState(280);
- _errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) {
- case 1:
- {
- setState(278);
- match(CAST_OP);
- setState(279);
- selectorString();
- }
- break;
+ unquotedIndexString();
+ setState(278);
+ match(CAST_OP);
+ setState(279);
+ selectorString();
}
+ break;
+ case 3:
+ enterOuterAlt(_localctx, 3);
+ {
+ setState(281);
+ indexString();
}
break;
}
@@ -1453,7 +1447,6 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
@SuppressWarnings("CheckReturnValue")
public static class ClusterStringContext extends ParserRuleContext {
public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); }
- public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); }
@SuppressWarnings("this-escape")
public ClusterStringContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -1477,20 +1470,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ClusterStringContext clusterString() throws RecognitionException {
ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState());
enterRule(_localctx, 30, RULE_clusterString);
- int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(284);
- _la = _input.LA(1);
- if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
- _errHandler.recoverInline(this);
- }
- else {
- if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
- _errHandler.reportMatch(this);
- consume();
- }
+ match(UNQUOTED_SOURCE);
}
}
catch (RecognitionException re) {
@@ -1507,7 +1491,6 @@ public final ClusterStringContext clusterString() throws RecognitionException {
@SuppressWarnings("CheckReturnValue")
public static class SelectorStringContext extends ParserRuleContext {
public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); }
- public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); }
@SuppressWarnings("this-escape")
public SelectorStringContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -1531,20 +1514,55 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SelectorStringContext selectorString() throws RecognitionException {
SelectorStringContext _localctx = new SelectorStringContext(_ctx, getState());
enterRule(_localctx, 32, RULE_selectorString);
- int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(286);
- _la = _input.LA(1);
- if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
- _errHandler.recoverInline(this);
- }
- else {
- if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
- _errHandler.reportMatch(this);
- consume();
+ match(UNQUOTED_SOURCE);
}
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ @SuppressWarnings("CheckReturnValue")
+ public static class UnquotedIndexStringContext extends ParserRuleContext {
+ public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); }
+ @SuppressWarnings("this-escape")
+ public UnquotedIndexStringContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_unquotedIndexString; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterUnquotedIndexString(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitUnquotedIndexString(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitUnquotedIndexString(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final UnquotedIndexStringContext unquotedIndexString() throws RecognitionException {
+ UnquotedIndexStringContext _localctx = new UnquotedIndexStringContext(_ctx, getState());
+ enterRule(_localctx, 34, RULE_unquotedIndexString);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(288);
+ match(UNQUOTED_SOURCE);
}
}
catch (RecognitionException re) {
@@ -1584,12 +1602,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IndexStringContext indexString() throws RecognitionException {
IndexStringContext _localctx = new IndexStringContext(_ctx, getState());
- enterRule(_localctx, 34, RULE_indexString);
+ enterRule(_localctx, 36, RULE_indexString);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(288);
+ setState(290);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -1645,32 +1663,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
- enterRule(_localctx, 36, RULE_metadata);
+ enterRule(_localctx, 38, RULE_metadata);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(290);
+ setState(292);
match(METADATA);
- setState(291);
+ setState(293);
match(UNQUOTED_SOURCE);
- setState(296);
+ setState(298);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,12,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,10,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(292);
+ setState(294);
match(COMMA);
- setState(293);
+ setState(295);
match(UNQUOTED_SOURCE);
}
- }
+ }
}
- setState(298);
+ setState(300);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,12,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,10,_ctx);
}
}
}
@@ -1713,13 +1731,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EvalCommandContext evalCommand() throws RecognitionException {
EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_evalCommand);
+ enterRule(_localctx, 40, RULE_evalCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(299);
+ setState(301);
match(EVAL);
- setState(300);
+ setState(302);
fields();
}
}
@@ -1768,30 +1786,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StatsCommandContext statsCommand() throws RecognitionException {
StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState());
- enterRule(_localctx, 40, RULE_statsCommand);
+ enterRule(_localctx, 42, RULE_statsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(302);
- match(STATS);
setState(304);
+ match(STATS);
+ setState(306);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
case 1:
{
- setState(303);
+ setState(305);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(308);
+ setState(310);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) {
case 1:
{
- setState(306);
+ setState(308);
match(BY);
- setState(307);
+ setState(309);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -1843,30 +1861,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldsContext aggFields() throws RecognitionException {
AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_aggFields);
+ enterRule(_localctx, 44, RULE_aggFields);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(310);
+ setState(312);
aggField();
- setState(315);
+ setState(317);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,13,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(311);
+ setState(313);
match(COMMA);
- setState(312);
+ setState(314);
aggField();
}
- }
+ }
}
- setState(317);
+ setState(319);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,13,_ctx);
}
}
}
@@ -1912,20 +1930,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldContext aggField() throws RecognitionException {
AggFieldContext _localctx = new AggFieldContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_aggField);
+ enterRule(_localctx, 46, RULE_aggField);
try {
enterOuterAlt(_localctx, 1);
{
- setState(318);
+ setState(320);
field();
- setState(321);
+ setState(323);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
case 1:
{
- setState(319);
+ setState(321);
match(WHERE);
- setState(320);
+ setState(322);
booleanExpression(0);
}
break;
@@ -1977,30 +1995,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNameContext qualifiedName() throws RecognitionException {
QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_qualifiedName);
+ enterRule(_localctx, 48, RULE_qualifiedName);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(323);
+ setState(325);
identifierOrParameter();
- setState(328);
+ setState(330);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(324);
+ setState(326);
match(DOT);
- setState(325);
+ setState(327);
identifierOrParameter();
}
- }
+ }
}
- setState(330);
+ setState(332);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
}
}
}
@@ -2049,30 +2067,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException {
QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_qualifiedNamePattern);
+ enterRule(_localctx, 50, RULE_qualifiedNamePattern);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(331);
+ setState(333);
identifierPattern();
- setState(336);
+ setState(338);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(332);
+ setState(334);
match(DOT);
- setState(333);
+ setState(335);
identifierPattern();
}
- }
+ }
}
- setState(338);
+ setState(340);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,16,_ctx);
}
}
}
@@ -2121,30 +2139,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException {
QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_qualifiedNamePatterns);
+ enterRule(_localctx, 52, RULE_qualifiedNamePatterns);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(339);
+ setState(341);
qualifiedNamePattern();
- setState(344);
+ setState(346);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,19,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(340);
+ setState(342);
match(COMMA);
- setState(341);
+ setState(343);
qualifiedNamePattern();
}
- }
+ }
}
- setState(346);
+ setState(348);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,19,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
}
}
}
@@ -2185,12 +2203,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierContext identifier() throws RecognitionException {
IdentifierContext _localctx = new IdentifierContext(_ctx, getState());
- enterRule(_localctx, 52, RULE_identifier);
+ enterRule(_localctx, 54, RULE_identifier);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(347);
+ setState(349);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -2244,15 +2262,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierPatternContext identifierPattern() throws RecognitionException {
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_identifierPattern);
+ enterRule(_localctx, 56, RULE_identifierPattern);
try {
- setState(352);
+ setState(354);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(349);
+ setState(351);
match(ID_PATTERN);
}
break;
@@ -2260,7 +2278,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(350);
+ setState(352);
parameter();
}
break;
@@ -2268,7 +2286,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(351);
+ setState(353);
doubleParameter();
}
break;
@@ -2294,7 +2312,7 @@ public ParameterContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_parameter; }
-
+
@SuppressWarnings("this-escape")
public ParameterContext() { }
public void copyFrom(ParameterContext ctx) {
@@ -2342,16 +2360,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
- enterRule(_localctx, 56, RULE_parameter);
+ enterRule(_localctx, 58, RULE_parameter);
try {
- setState(356);
+ setState(358);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(354);
+ setState(356);
match(PARAM);
}
break;
@@ -2359,7 +2377,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(355);
+ setState(357);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -2385,7 +2403,7 @@ public DoubleParameterContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_doubleParameter; }
-
+
@SuppressWarnings("this-escape")
public DoubleParameterContext() { }
public void copyFrom(DoubleParameterContext ctx) {
@@ -2433,16 +2451,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DoubleParameterContext doubleParameter() throws RecognitionException {
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
- enterRule(_localctx, 58, RULE_doubleParameter);
+ enterRule(_localctx, 60, RULE_doubleParameter);
try {
- setState(360);
+ setState(362);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(358);
+ setState(360);
match(DOUBLE_PARAMS);
}
break;
@@ -2450,7 +2468,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(359);
+ setState(361);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -2502,16 +2520,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException {
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_identifierOrParameter);
+ enterRule(_localctx, 62, RULE_identifierOrParameter);
try {
- setState(365);
+ setState(367);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(362);
+ setState(364);
identifier();
}
break;
@@ -2519,7 +2537,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(363);
+ setState(365);
parameter();
}
break;
@@ -2527,7 +2545,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(364);
+ setState(366);
doubleParameter();
}
break;
@@ -2572,13 +2590,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LimitCommandContext limitCommand() throws RecognitionException {
LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_limitCommand);
+ enterRule(_localctx, 64, RULE_limitCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(367);
+ setState(369);
match(LIMIT);
- setState(368);
+ setState(370);
match(INTEGER_LITERAL);
}
}
@@ -2628,32 +2646,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SortCommandContext sortCommand() throws RecognitionException {
SortCommandContext _localctx = new SortCommandContext(_ctx, getState());
- enterRule(_localctx, 64, RULE_sortCommand);
+ enterRule(_localctx, 66, RULE_sortCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(370);
+ setState(372);
match(SORT);
- setState(371);
+ setState(373);
orderExpression();
- setState(376);
+ setState(378);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,24,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(372);
+ setState(374);
match(COMMA);
- setState(373);
+ setState(375);
orderExpression();
}
- }
+ }
}
- setState(378);
+ setState(380);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,24,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
}
}
}
@@ -2702,19 +2720,19 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final OrderExpressionContext orderExpression() throws RecognitionException {
OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState());
- enterRule(_localctx, 66, RULE_orderExpression);
+ enterRule(_localctx, 68, RULE_orderExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(379);
- booleanExpression(0);
setState(381);
+ booleanExpression(0);
+ setState(383);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) {
case 1:
{
- setState(380);
+ setState(382);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -2728,14 +2746,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(385);
+ setState(387);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
case 1:
{
- setState(383);
+ setState(385);
match(NULLS);
- setState(384);
+ setState(386);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -2790,13 +2808,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final KeepCommandContext keepCommand() throws RecognitionException {
KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState());
- enterRule(_localctx, 68, RULE_keepCommand);
+ enterRule(_localctx, 70, RULE_keepCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(387);
+ setState(389);
match(KEEP);
- setState(388);
+ setState(390);
qualifiedNamePatterns();
}
}
@@ -2839,13 +2857,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DropCommandContext dropCommand() throws RecognitionException {
DropCommandContext _localctx = new DropCommandContext(_ctx, getState());
- enterRule(_localctx, 70, RULE_dropCommand);
+ enterRule(_localctx, 72, RULE_dropCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(390);
+ setState(392);
match(DROP);
- setState(391);
+ setState(393);
qualifiedNamePatterns();
}
}
@@ -2895,32 +2913,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameCommandContext renameCommand() throws RecognitionException {
RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState());
- enterRule(_localctx, 72, RULE_renameCommand);
+ enterRule(_localctx, 74, RULE_renameCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(393);
+ setState(395);
match(RENAME);
- setState(394);
+ setState(396);
renameClause();
- setState(399);
+ setState(401);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(395);
+ setState(397);
match(COMMA);
- setState(396);
+ setState(398);
renameClause();
}
- }
+ }
}
- setState(401);
+ setState(403);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
}
}
}
@@ -2968,15 +2986,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
- enterRule(_localctx, 74, RULE_renameClause);
+ enterRule(_localctx, 76, RULE_renameClause);
try {
enterOuterAlt(_localctx, 1);
{
- setState(402);
+ setState(404);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(403);
+ setState(405);
match(AS);
- setState(404);
+ setState(406);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
}
@@ -3025,22 +3043,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DissectCommandContext dissectCommand() throws RecognitionException {
DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState());
- enterRule(_localctx, 76, RULE_dissectCommand);
+ enterRule(_localctx, 78, RULE_dissectCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(406);
+ setState(408);
match(DISSECT);
- setState(407);
+ setState(409);
primaryExpression(0);
- setState(408);
- string();
setState(410);
+ string();
+ setState(412);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
case 1:
{
- setState(409);
+ setState(411);
commandOptions();
}
break;
@@ -3089,15 +3107,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final GrokCommandContext grokCommand() throws RecognitionException {
GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState());
- enterRule(_localctx, 78, RULE_grokCommand);
+ enterRule(_localctx, 80, RULE_grokCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(412);
+ setState(414);
match(GROK);
- setState(413);
+ setState(415);
primaryExpression(0);
- setState(414);
+ setState(416);
string();
}
}
@@ -3140,13 +3158,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MvExpandCommandContext mvExpandCommand() throws RecognitionException {
MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState());
- enterRule(_localctx, 80, RULE_mvExpandCommand);
+ enterRule(_localctx, 82, RULE_mvExpandCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(416);
+ setState(418);
match(MV_EXPAND);
- setState(417);
+ setState(419);
qualifiedName();
}
}
@@ -3195,30 +3213,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CommandOptionsContext commandOptions() throws RecognitionException {
CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState());
- enterRule(_localctx, 82, RULE_commandOptions);
+ enterRule(_localctx, 84, RULE_commandOptions);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(419);
+ setState(421);
commandOption();
- setState(424);
+ setState(426);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(420);
+ setState(422);
match(COMMA);
- setState(421);
+ setState(423);
commandOption();
}
- }
+ }
}
- setState(426);
+ setState(428);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
}
}
}
@@ -3264,15 +3282,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CommandOptionContext commandOption() throws RecognitionException {
CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState());
- enterRule(_localctx, 84, RULE_commandOption);
+ enterRule(_localctx, 86, RULE_commandOption);
try {
enterOuterAlt(_localctx, 1);
{
- setState(427);
+ setState(429);
identifier();
- setState(428);
+ setState(430);
match(ASSIGN);
- setState(429);
+ setState(431);
constant();
}
}
@@ -3315,13 +3333,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ExplainCommandContext explainCommand() throws RecognitionException {
ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState());
- enterRule(_localctx, 86, RULE_explainCommand);
+ enterRule(_localctx, 88, RULE_explainCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(431);
+ setState(433);
match(EXPLAIN);
- setState(432);
+ setState(434);
subqueryExpression();
}
}
@@ -3365,15 +3383,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SubqueryExpressionContext subqueryExpression() throws RecognitionException {
SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState());
- enterRule(_localctx, 88, RULE_subqueryExpression);
+ enterRule(_localctx, 90, RULE_subqueryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(434);
+ setState(436);
match(OPENING_BRACKET);
- setState(435);
+ setState(437);
query(0);
- setState(436);
+ setState(438);
match(CLOSING_BRACKET);
}
}
@@ -3395,7 +3413,7 @@ public ShowCommandContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_showCommand; }
-
+
@SuppressWarnings("this-escape")
public ShowCommandContext() { }
public void copyFrom(ShowCommandContext ctx) {
@@ -3425,14 +3443,14 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ShowCommandContext showCommand() throws RecognitionException {
ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState());
- enterRule(_localctx, 90, RULE_showCommand);
+ enterRule(_localctx, 92, RULE_showCommand);
try {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(438);
+ setState(440);
match(SHOW);
- setState(439);
+ setState(441);
match(INFO);
}
}
@@ -3490,53 +3508,53 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichCommandContext enrichCommand() throws RecognitionException {
EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState());
- enterRule(_localctx, 92, RULE_enrichCommand);
+ enterRule(_localctx, 94, RULE_enrichCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(441);
+ setState(443);
match(ENRICH);
- setState(442);
+ setState(444);
((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME);
- setState(445);
+ setState(447);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
case 1:
{
- setState(443);
+ setState(445);
match(ON);
- setState(444);
+ setState(446);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(456);
+ setState(458);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
{
- setState(447);
+ setState(449);
match(WITH);
- setState(448);
+ setState(450);
enrichWithClause();
- setState(453);
+ setState(455);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(449);
+ setState(451);
match(COMMA);
- setState(450);
+ setState(452);
enrichWithClause();
}
- }
+ }
}
- setState(455);
+ setState(457);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
}
}
break;
@@ -3587,23 +3605,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichWithClauseContext enrichWithClause() throws RecognitionException {
EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState());
- enterRule(_localctx, 94, RULE_enrichWithClause);
+ enterRule(_localctx, 96, RULE_enrichWithClause);
try {
enterOuterAlt(_localctx, 1);
{
- setState(461);
+ setState(463);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
{
- setState(458);
+ setState(460);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(459);
+ setState(461);
match(ASSIGN);
}
break;
}
- setState(463);
+ setState(465);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -3652,17 +3670,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LookupCommandContext lookupCommand() throws RecognitionException {
LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState());
- enterRule(_localctx, 96, RULE_lookupCommand);
+ enterRule(_localctx, 98, RULE_lookupCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(465);
+ setState(467);
match(DEV_LOOKUP);
- setState(466);
+ setState(468);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(467);
+ setState(469);
match(ON);
- setState(468);
+ setState(470);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -3711,22 +3729,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException {
InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState());
- enterRule(_localctx, 98, RULE_inlinestatsCommand);
+ enterRule(_localctx, 100, RULE_inlinestatsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(470);
+ setState(472);
match(DEV_INLINESTATS);
- setState(471);
+ setState(473);
((InlinestatsCommandContext)_localctx).stats = aggFields();
- setState(474);
+ setState(476);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
case 1:
{
- setState(472);
+ setState(474);
match(BY);
- setState(473);
+ setState(475);
((InlinestatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3782,38 +3800,38 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ChangePointCommandContext changePointCommand() throws RecognitionException {
ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState());
- enterRule(_localctx, 100, RULE_changePointCommand);
+ enterRule(_localctx, 102, RULE_changePointCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(476);
+ setState(478);
match(CHANGE_POINT);
- setState(477);
+ setState(479);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(480);
+ setState(482);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
case 1:
{
- setState(478);
+ setState(480);
match(ON);
- setState(479);
+ setState(481);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(487);
+ setState(489);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
{
- setState(482);
+ setState(484);
match(AS);
- setState(483);
+ setState(485);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(484);
+ setState(486);
match(COMMA);
- setState(485);
+ setState(487);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -3859,13 +3877,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InsistCommandContext insistCommand() throws RecognitionException {
InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState());
- enterRule(_localctx, 102, RULE_insistCommand);
+ enterRule(_localctx, 104, RULE_insistCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(489);
+ setState(491);
match(DEV_INSIST);
- setState(490);
+ setState(492);
qualifiedNamePatterns();
}
}
@@ -3908,13 +3926,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkCommandContext forkCommand() throws RecognitionException {
ForkCommandContext _localctx = new ForkCommandContext(_ctx, getState());
- enterRule(_localctx, 104, RULE_forkCommand);
+ enterRule(_localctx, 106, RULE_forkCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(492);
+ setState(494);
match(DEV_FORK);
- setState(493);
+ setState(495);
forkSubQueries();
}
}
@@ -3959,12 +3977,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueriesContext forkSubQueries() throws RecognitionException {
ForkSubQueriesContext _localctx = new ForkSubQueriesContext(_ctx, getState());
- enterRule(_localctx, 106, RULE_forkSubQueries);
+ enterRule(_localctx, 108, RULE_forkSubQueries);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(496);
+ setState(498);
_errHandler.sync(this);
_alt = 1;
do {
@@ -3972,7 +3990,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
case 1:
{
{
- setState(495);
+ setState(497);
forkSubQuery();
}
}
@@ -3980,9 +3998,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
default:
throw new NoViableAltException(this);
}
- setState(498);
+ setState(500);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,35,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
}
}
@@ -4026,15 +4044,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueryContext forkSubQuery() throws RecognitionException {
ForkSubQueryContext _localctx = new ForkSubQueryContext(_ctx, getState());
- enterRule(_localctx, 108, RULE_forkSubQuery);
+ enterRule(_localctx, 110, RULE_forkSubQuery);
try {
enterOuterAlt(_localctx, 1);
{
- setState(500);
+ setState(502);
match(LP);
- setState(501);
+ setState(503);
forkSubQueryCommand(0);
- setState(502);
+ setState(504);
match(RP);
}
}
@@ -4056,7 +4074,7 @@ public ForkSubQueryCommandContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_forkSubQueryCommand; }
-
+
@SuppressWarnings("this-escape")
public ForkSubQueryCommandContext() { }
public void copyFrom(ForkSubQueryCommandContext ctx) {
@@ -4119,8 +4137,8 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
int _parentState = getState();
ForkSubQueryCommandContext _localctx = new ForkSubQueryCommandContext(_ctx, _parentState);
ForkSubQueryCommandContext _prevctx = _localctx;
- int _startState = 110;
- enterRecursionRule(_localctx, 110, RULE_forkSubQueryCommand, _p);
+ int _startState = 112;
+ enterRecursionRule(_localctx, 112, RULE_forkSubQueryCommand, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
@@ -4130,13 +4148,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
_ctx = _localctx;
_prevctx = _localctx;
- setState(505);
+ setState(507);
forkSubQueryProcessingCommand();
}
_ctx.stop = _input.LT(-1);
- setState(512);
+ setState(514);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,38,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -4145,18 +4163,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
{
_localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand);
- setState(507);
+ setState(509);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(508);
+ setState(510);
match(PIPE);
- setState(509);
+ setState(511);
forkSubQueryProcessingCommand();
}
- }
+ }
}
- setState(514);
+ setState(516);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,38,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
}
}
}
@@ -4213,50 +4231,50 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand() throws RecognitionException {
ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState());
- enterRule(_localctx, 112, RULE_forkSubQueryProcessingCommand);
+ enterRule(_localctx, 114, RULE_forkSubQueryProcessingCommand);
try {
- setState(521);
+ setState(523);
_errHandler.sync(this);
switch (_input.LA(1)) {
case EVAL:
enterOuterAlt(_localctx, 1);
{
- setState(515);
+ setState(517);
evalCommand();
}
break;
case WHERE:
enterOuterAlt(_localctx, 2);
{
- setState(516);
+ setState(518);
whereCommand();
}
break;
case LIMIT:
enterOuterAlt(_localctx, 3);
{
- setState(517);
+ setState(519);
limitCommand();
}
break;
case STATS:
enterOuterAlt(_localctx, 4);
{
- setState(518);
+ setState(520);
statsCommand();
}
break;
case SORT:
enterOuterAlt(_localctx, 5);
{
- setState(519);
+ setState(521);
sortCommand();
}
break;
case DISSECT:
enterOuterAlt(_localctx, 6);
{
- setState(520);
+ setState(522);
dissectCommand();
}
break;
@@ -4300,11 +4318,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RrfCommandContext rrfCommand() throws RecognitionException {
RrfCommandContext _localctx = new RrfCommandContext(_ctx, getState());
- enterRule(_localctx, 114, RULE_rrfCommand);
+ enterRule(_localctx, 116, RULE_rrfCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(523);
+ setState(525);
match(DEV_RRF);
}
}
@@ -4357,21 +4375,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankCommandContext rerankCommand() throws RecognitionException {
RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState());
- enterRule(_localctx, 116, RULE_rerankCommand);
+ enterRule(_localctx, 118, RULE_rerankCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(525);
+ setState(527);
match(DEV_RERANK);
- setState(526);
+ setState(528);
((RerankCommandContext)_localctx).queryText = constant();
- setState(527);
+ setState(529);
match(ON);
- setState(528);
+ setState(530);
rerankFields();
- setState(529);
+ setState(531);
match(WITH);
- setState(530);
+ setState(532);
((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
}
}
@@ -4425,26 +4443,26 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CompletionCommandContext completionCommand() throws RecognitionException {
CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState());
- enterRule(_localctx, 118, RULE_completionCommand);
+ enterRule(_localctx, 120, RULE_completionCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(532);
+ setState(534);
match(DEV_COMPLETION);
- setState(533);
+ setState(535);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(534);
+ setState(536);
match(WITH);
- setState(535);
+ setState(537);
((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
- setState(538);
+ setState(540);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(536);
+ setState(538);
match(AS);
- setState(537);
+ setState(539);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
}
break;
@@ -4495,20 +4513,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SampleCommandContext sampleCommand() throws RecognitionException {
SampleCommandContext _localctx = new SampleCommandContext(_ctx, getState());
- enterRule(_localctx, 120, RULE_sampleCommand);
+ enterRule(_localctx, 122, RULE_sampleCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(540);
+ setState(542);
match(DEV_SAMPLE);
- setState(541);
- ((SampleCommandContext)_localctx).probability = decimalValue();
setState(543);
+ ((SampleCommandContext)_localctx).probability = decimalValue();
+ setState(545);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
case 1:
{
- setState(542);
+ setState(544);
((SampleCommandContext)_localctx).seed = integerValue();
}
break;
@@ -4533,7 +4551,7 @@ public BooleanExpressionContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_booleanExpression; }
-
+
@SuppressWarnings("this-escape")
public BooleanExpressionContext() { }
public void copyFrom(BooleanExpressionContext ctx) {
@@ -4720,25 +4738,25 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _parentState = getState();
BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState);
BooleanExpressionContext _prevctx = _localctx;
- int _startState = 122;
- enterRecursionRule(_localctx, 122, RULE_booleanExpression, _p);
+ int _startState = 124;
+ enterRecursionRule(_localctx, 124, RULE_booleanExpression, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(574);
+ setState(576);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) {
case 1:
{
_localctx = new LogicalNotContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(546);
+ setState(548);
match(NOT);
- setState(547);
+ setState(549);
booleanExpression(8);
}
break;
@@ -4747,7 +4765,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(548);
+ setState(550);
valueExpression();
}
break;
@@ -4756,7 +4774,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(549);
+ setState(551);
regexBooleanExpression();
}
break;
@@ -4765,41 +4783,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(550);
- valueExpression();
setState(552);
+ valueExpression();
+ setState(554);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(551);
+ setState(553);
match(NOT);
}
}
- setState(554);
+ setState(556);
match(IN);
- setState(555);
+ setState(557);
match(LP);
- setState(556);
+ setState(558);
valueExpression();
- setState(561);
+ setState(563);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(557);
+ setState(559);
match(COMMA);
- setState(558);
+ setState(560);
valueExpression();
}
}
- setState(563);
+ setState(565);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(564);
+ setState(566);
match(RP);
}
break;
@@ -4808,21 +4826,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(566);
+ setState(568);
valueExpression();
- setState(567);
- match(IS);
setState(569);
+ match(IS);
+ setState(571);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(568);
+ setState(570);
match(NOT);
}
}
- setState(571);
+ setState(573);
match(NULL);
}
break;
@@ -4831,33 +4849,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(573);
+ setState(575);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(584);
+ setState(586);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(582);
+ setState(584);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) {
case 1:
{
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(576);
+ setState(578);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(577);
+ setState(579);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(578);
+ setState(580);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -4866,20 +4884,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(579);
+ setState(581);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(580);
+ setState(582);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(581);
+ setState(583);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
- }
+ }
}
- setState(586);
+ setState(588);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
}
}
@@ -4929,51 +4947,51 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException {
RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState());
- enterRule(_localctx, 124, RULE_regexBooleanExpression);
+ enterRule(_localctx, 126, RULE_regexBooleanExpression);
int _la;
try {
- setState(601);
+ setState(603);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(587);
- valueExpression();
setState(589);
+ valueExpression();
+ setState(591);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(588);
+ setState(590);
match(NOT);
}
}
- setState(591);
+ setState(593);
((RegexBooleanExpressionContext)_localctx).kind = match(LIKE);
- setState(592);
+ setState(594);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(594);
- valueExpression();
setState(596);
+ valueExpression();
+ setState(598);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(595);
+ setState(597);
match(NOT);
}
}
- setState(598);
+ setState(600);
((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE);
- setState(599);
+ setState(601);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
@@ -5028,28 +5046,28 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException {
MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState());
- enterRule(_localctx, 126, RULE_matchBooleanExpression);
+ enterRule(_localctx, 128, RULE_matchBooleanExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(603);
+ setState(605);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(606);
+ setState(608);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(604);
+ setState(606);
match(CAST_OP);
- setState(605);
+ setState(607);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(608);
+ setState(610);
match(COLON);
- setState(609);
+ setState(611);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -5071,7 +5089,7 @@ public ValueExpressionContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_valueExpression; }
-
+
@SuppressWarnings("this-escape")
public ValueExpressionContext() { }
public void copyFrom(ValueExpressionContext ctx) {
@@ -5131,16 +5149,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ValueExpressionContext valueExpression() throws RecognitionException {
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
- enterRule(_localctx, 128, RULE_valueExpression);
+ enterRule(_localctx, 130, RULE_valueExpression);
try {
- setState(616);
+ setState(618);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(611);
+ setState(613);
operatorExpression(0);
}
break;
@@ -5148,11 +5166,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(612);
+ setState(614);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(613);
+ setState(615);
comparisonOperator();
- setState(614);
+ setState(616);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -5176,7 +5194,7 @@ public OperatorExpressionContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_operatorExpression; }
-
+
@SuppressWarnings("this-escape")
public OperatorExpressionContext() { }
public void copyFrom(OperatorExpressionContext ctx) {
@@ -5270,23 +5288,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _parentState = getState();
OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState);
OperatorExpressionContext _prevctx = _localctx;
- int _startState = 130;
- enterRecursionRule(_localctx, 130, RULE_operatorExpression, _p);
+ int _startState = 132;
+ enterRecursionRule(_localctx, 132, RULE_operatorExpression, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(622);
+ setState(624);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
{
_localctx = new OperatorExpressionDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(619);
+ setState(621);
primaryExpression(0);
}
break;
@@ -5295,7 +5313,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(620);
+ setState(622);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -5306,31 +5324,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(621);
+ setState(623);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(632);
+ setState(634);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(630);
+ setState(632);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(624);
+ setState(626);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(625);
+ setState(627);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & 7L) != 0)) ) {
@@ -5341,7 +5359,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(626);
+ setState(628);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -5350,9 +5368,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(627);
+ setState(629);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(628);
+ setState(630);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -5363,16 +5381,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(629);
+ setState(631);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
- }
+ }
}
- setState(634);
+ setState(636);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
}
}
}
@@ -5394,7 +5412,7 @@ public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_primaryExpression; }
-
+
@SuppressWarnings("this-escape")
public PrimaryExpressionContext() { }
public void copyFrom(PrimaryExpressionContext ctx) {
@@ -5522,22 +5540,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _parentState = getState();
PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState);
PrimaryExpressionContext _prevctx = _localctx;
- int _startState = 132;
- enterRecursionRule(_localctx, 132, RULE_primaryExpression, _p);
+ int _startState = 134;
+ enterRecursionRule(_localctx, 134, RULE_primaryExpression, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(643);
+ setState(645);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
_localctx = new ConstantDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(636);
+ setState(638);
constant();
}
break;
@@ -5546,7 +5564,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(637);
+ setState(639);
qualifiedName();
}
break;
@@ -5555,7 +5573,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(638);
+ setState(640);
functionExpression();
}
break;
@@ -5564,19 +5582,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(639);
+ setState(641);
match(LP);
- setState(640);
+ setState(642);
booleanExpression(0);
- setState(641);
+ setState(643);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(650);
+ setState(652);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -5585,18 +5603,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(645);
+ setState(647);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(646);
+ setState(648);
match(CAST_OP);
- setState(647);
+ setState(649);
dataType();
}
- }
+ }
}
- setState(652);
+ setState(654);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
}
}
}
@@ -5654,22 +5672,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionExpressionContext functionExpression() throws RecognitionException {
FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState());
- enterRule(_localctx, 134, RULE_functionExpression);
+ enterRule(_localctx, 136, RULE_functionExpression);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(653);
+ setState(655);
functionName();
- setState(654);
+ setState(656);
match(LP);
- setState(668);
+ setState(670);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(655);
+ setState(657);
match(ASTERISK);
}
break;
@@ -5692,34 +5710,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(656);
+ setState(658);
booleanExpression(0);
- setState(661);
+ setState(663);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,58,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(657);
+ setState(659);
match(COMMA);
- setState(658);
+ setState(660);
booleanExpression(0);
}
- }
+ }
}
- setState(663);
+ setState(665);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,58,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
}
- setState(666);
+ setState(668);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(664);
+ setState(666);
match(COMMA);
- setState(665);
+ setState(667);
mapExpression();
}
}
@@ -5732,7 +5750,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(670);
+ setState(672);
match(RP);
}
}
@@ -5774,11 +5792,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionNameContext functionName() throws RecognitionException {
FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState());
- enterRule(_localctx, 136, RULE_functionName);
+ enterRule(_localctx, 138, RULE_functionName);
try {
enterOuterAlt(_localctx, 1);
{
- setState(672);
+ setState(674);
identifierOrParameter();
}
}
@@ -5829,32 +5847,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MapExpressionContext mapExpression() throws RecognitionException {
MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState());
- enterRule(_localctx, 138, RULE_mapExpression);
+ enterRule(_localctx, 140, RULE_mapExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(674);
+ setState(676);
match(LEFT_BRACES);
- setState(675);
+ setState(677);
entryExpression();
- setState(680);
+ setState(682);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(676);
+ setState(678);
match(COMMA);
- setState(677);
+ setState(679);
entryExpression();
}
}
- setState(682);
+ setState(684);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(683);
+ setState(685);
match(RIGHT_BRACES);
}
}
@@ -5902,15 +5920,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EntryExpressionContext entryExpression() throws RecognitionException {
EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState());
- enterRule(_localctx, 140, RULE_entryExpression);
+ enterRule(_localctx, 142, RULE_entryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(685);
+ setState(687);
((EntryExpressionContext)_localctx).key = string();
- setState(686);
+ setState(688);
match(COLON);
- setState(687);
+ setState(689);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -5932,7 +5950,7 @@ public ConstantContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_constant; }
-
+
@SuppressWarnings("this-escape")
public ConstantContext() { }
public void copyFrom(ConstantContext ctx) {
@@ -6178,17 +6196,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ConstantContext constant() throws RecognitionException {
ConstantContext _localctx = new ConstantContext(_ctx, getState());
- enterRule(_localctx, 142, RULE_constant);
+ enterRule(_localctx, 144, RULE_constant);
int _la;
try {
- setState(731);
+ setState(733);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(689);
+ setState(691);
match(NULL);
}
break;
@@ -6196,9 +6214,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(690);
+ setState(692);
integerValue();
- setState(691);
+ setState(693);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -6206,7 +6224,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(693);
+ setState(695);
decimalValue();
}
break;
@@ -6214,7 +6232,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(694);
+ setState(696);
integerValue();
}
break;
@@ -6222,7 +6240,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(695);
+ setState(697);
booleanValue();
}
break;
@@ -6230,7 +6248,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(696);
+ setState(698);
parameter();
}
break;
@@ -6238,7 +6256,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(697);
+ setState(699);
string();
}
break;
@@ -6246,27 +6264,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(698);
+ setState(700);
match(OPENING_BRACKET);
- setState(699);
+ setState(701);
numericValue();
- setState(704);
+ setState(706);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(700);
+ setState(702);
match(COMMA);
- setState(701);
+ setState(703);
numericValue();
}
}
- setState(706);
+ setState(708);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(707);
+ setState(709);
match(CLOSING_BRACKET);
}
break;
@@ -6274,27 +6292,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(709);
+ setState(711);
match(OPENING_BRACKET);
- setState(710);
+ setState(712);
booleanValue();
- setState(715);
+ setState(717);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(711);
+ setState(713);
match(COMMA);
- setState(712);
+ setState(714);
booleanValue();
}
}
- setState(717);
+ setState(719);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(718);
+ setState(720);
match(CLOSING_BRACKET);
}
break;
@@ -6302,27 +6320,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(720);
+ setState(722);
match(OPENING_BRACKET);
- setState(721);
+ setState(723);
string();
- setState(726);
+ setState(728);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(722);
+ setState(724);
match(COMMA);
- setState(723);
+ setState(725);
string();
}
}
- setState(728);
+ setState(730);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(729);
+ setState(731);
match(CLOSING_BRACKET);
}
break;
@@ -6365,12 +6383,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final BooleanValueContext booleanValue() throws RecognitionException {
BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState());
- enterRule(_localctx, 144, RULE_booleanValue);
+ enterRule(_localctx, 146, RULE_booleanValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(733);
+ setState(735);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -6423,22 +6441,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
- enterRule(_localctx, 146, RULE_numericValue);
+ enterRule(_localctx, 148, RULE_numericValue);
try {
- setState(737);
+ setState(739);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(735);
+ setState(737);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(736);
+ setState(738);
integerValue();
}
break;
@@ -6482,17 +6500,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DecimalValueContext decimalValue() throws RecognitionException {
DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState());
- enterRule(_localctx, 148, RULE_decimalValue);
+ enterRule(_localctx, 150, RULE_decimalValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(740);
+ setState(742);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(739);
+ setState(741);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -6505,7 +6523,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(742);
+ setState(744);
match(DECIMAL_LITERAL);
}
}
@@ -6547,17 +6565,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IntegerValueContext integerValue() throws RecognitionException {
IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState());
- enterRule(_localctx, 150, RULE_integerValue);
+ enterRule(_localctx, 152, RULE_integerValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(745);
+ setState(747);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(744);
+ setState(746);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -6570,7 +6588,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(747);
+ setState(749);
match(INTEGER_LITERAL);
}
}
@@ -6610,11 +6628,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StringContext string() throws RecognitionException {
StringContext _localctx = new StringContext(_ctx, getState());
- enterRule(_localctx, 152, RULE_string);
+ enterRule(_localctx, 154, RULE_string);
try {
enterOuterAlt(_localctx, 1);
{
- setState(749);
+ setState(751);
match(QUOTED_STRING);
}
}
@@ -6659,12 +6677,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ComparisonOperatorContext comparisonOperator() throws RecognitionException {
ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState());
- enterRule(_localctx, 154, RULE_comparisonOperator);
+ enterRule(_localctx, 156, RULE_comparisonOperator);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(751);
+ setState(753);
_la = _input.LA(1);
if ( !(((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -6722,12 +6740,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinCommandContext joinCommand() throws RecognitionException {
JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState());
- enterRule(_localctx, 156, RULE_joinCommand);
+ enterRule(_localctx, 158, RULE_joinCommand);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(753);
+ setState(755);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 54525952L) != 0)) ) {
@@ -6738,11 +6756,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(754);
+ setState(756);
match(JOIN);
- setState(755);
+ setState(757);
joinTarget();
- setState(756);
+ setState(758);
joinCondition();
}
}
@@ -6785,11 +6803,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinTargetContext joinTarget() throws RecognitionException {
JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState());
- enterRule(_localctx, 158, RULE_joinTarget);
+ enterRule(_localctx, 160, RULE_joinTarget);
try {
enterOuterAlt(_localctx, 1);
{
- setState(758);
+ setState(760);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6839,32 +6857,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinConditionContext joinCondition() throws RecognitionException {
JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState());
- enterRule(_localctx, 160, RULE_joinCondition);
+ enterRule(_localctx, 162, RULE_joinCondition);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(760);
+ setState(762);
match(ON);
- setState(761);
+ setState(763);
joinPredicate();
- setState(766);
+ setState(768);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,67,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(762);
+ setState(764);
match(COMMA);
- setState(763);
+ setState(765);
joinPredicate();
}
- }
+ }
}
- setState(768);
+ setState(770);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,67,_ctx);
}
}
}
@@ -6906,11 +6924,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinPredicateContext joinPredicate() throws RecognitionException {
JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState());
- enterRule(_localctx, 162, RULE_joinPredicate);
+ enterRule(_localctx, 164, RULE_joinPredicate);
try {
enterOuterAlt(_localctx, 1);
{
- setState(769);
+ setState(771);
valueExpression();
}
}
@@ -6933,13 +6951,13 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
return sourceCommand_sempred((SourceCommandContext)_localctx, predIndex);
case 3:
return processingCommand_sempred((ProcessingCommandContext)_localctx, predIndex);
- case 55:
+ case 56:
return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex);
- case 61:
+ case 62:
return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex);
- case 65:
- return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex);
case 66:
+ return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex);
+ case 67:
return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex);
}
return true;
@@ -7013,7 +7031,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
}
public static final String _serializedATN =
- "\u0004\u0001\u008b\u0304\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008b\u0306\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
"\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+
"\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+
"\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+
@@ -7033,462 +7051,461 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+
"E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+
"J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+
- "O\u0002P\u0007P\u0002Q\u0007Q\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+
- "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+
- "\u0001\u00ae\b\u0001\n\u0001\f\u0001\u00b1\t\u0001\u0001\u0002\u0001\u0002"+
- "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00b9\b\u0002"+
- "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0001\u0000\u0001\u0000\u0001"+
+ "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
+ "\u0001\u0005\u0001\u00b0\b\u0001\n\u0001\f\u0001\u00b3\t\u0001\u0001\u0002"+
+ "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002"+
+ "\u00bb\b\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
- "\u0003\u0003\u00d9\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+
- "\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007"+
- "\u0001\u0007\u0005\u0007\u00e6\b\u0007\n\u0007\f\u0007\u00e9\t\u0007\u0001"+
- "\b\u0001\b\u0001\b\u0003\b\u00ee\b\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001"+
- "\t\u0005\t\u00f5\b\t\n\t\f\t\u00f8\t\t\u0001\n\u0001\n\u0001\n\u0003\n"+
- "\u00fd\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f"+
- "\u0001\r\u0001\r\u0001\r\u0005\r\u0108\b\r\n\r\f\r\u010b\t\r\u0001\r\u0003"+
- "\r\u010e\b\r\u0001\u000e\u0001\u000e\u0001\u000e\u0003\u000e\u0113\b\u000e"+
- "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0003\u000e\u0119\b\u000e"+
- "\u0003\u000e\u011b\b\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010"+
- "\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
- "\u0005\u0012\u0127\b\u0012\n\u0012\f\u0012\u012a\t\u0012\u0001\u0013\u0001"+
- "\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0003\u0014\u0131\b\u0014\u0001"+
- "\u0014\u0001\u0014\u0003\u0014\u0135\b\u0014\u0001\u0015\u0001\u0015\u0001"+
- "\u0015\u0005\u0015\u013a\b\u0015\n\u0015\f\u0015\u013d\t\u0015\u0001\u0016"+
- "\u0001\u0016\u0001\u0016\u0003\u0016\u0142\b\u0016\u0001\u0017\u0001\u0017"+
- "\u0001\u0017\u0005\u0017\u0147\b\u0017\n\u0017\f\u0017\u014a\t\u0017\u0001"+
- "\u0018\u0001\u0018\u0001\u0018\u0005\u0018\u014f\b\u0018\n\u0018\f\u0018"+
- "\u0152\t\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019\u0157\b"+
- "\u0019\n\u0019\f\u0019\u015a\t\u0019\u0001\u001a\u0001\u001a\u0001\u001b"+
- "\u0001\u001b\u0001\u001b\u0003\u001b\u0161\b\u001b\u0001\u001c\u0001\u001c"+
- "\u0003\u001c\u0165\b\u001c\u0001\u001d\u0001\u001d\u0003\u001d\u0169\b"+
- "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u016e\b\u001e\u0001"+
- "\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0005 \u0177"+
- "\b \n \f \u017a\t \u0001!\u0001!\u0003!\u017e\b!\u0001!\u0001!\u0003!"+
- "\u0182\b!\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001"+
- "$\u0001$\u0005$\u018e\b$\n$\f$\u0191\t$\u0001%\u0001%\u0001%\u0001%\u0001"+
- "&\u0001&\u0001&\u0001&\u0003&\u019b\b&\u0001\'\u0001\'\u0001\'\u0001\'"+
- "\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0005)\u01a7\b)\n)\f)\u01aa"+
- "\t)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001,\u0001,\u0001"+
- ",\u0001,\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001.\u0003.\u01be"+
- "\b.\u0001.\u0001.\u0001.\u0001.\u0005.\u01c4\b.\n.\f.\u01c7\t.\u0003."+
- "\u01c9\b.\u0001/\u0001/\u0001/\u0003/\u01ce\b/\u0001/\u0001/\u00010\u0001"+
- "0\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u00031\u01db\b1\u0001"+
- "2\u00012\u00012\u00012\u00032\u01e1\b2\u00012\u00012\u00012\u00012\u0001"+
- "2\u00032\u01e8\b2\u00013\u00013\u00013\u00014\u00014\u00014\u00015\u0004"+
- "5\u01f1\b5\u000b5\f5\u01f2\u00016\u00016\u00016\u00016\u00017\u00017\u0001"+
- "7\u00017\u00017\u00017\u00057\u01ff\b7\n7\f7\u0202\t7\u00018\u00018\u0001"+
- "8\u00018\u00018\u00018\u00038\u020a\b8\u00019\u00019\u0001:\u0001:\u0001"+
- ":\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001"+
- ";\u0003;\u021b\b;\u0001<\u0001<\u0001<\u0003<\u0220\b<\u0001=\u0001=\u0001"+
- "=\u0001=\u0001=\u0001=\u0001=\u0003=\u0229\b=\u0001=\u0001=\u0001=\u0001"+
- "=\u0001=\u0005=\u0230\b=\n=\f=\u0233\t=\u0001=\u0001=\u0001=\u0001=\u0001"+
- "=\u0003=\u023a\b=\u0001=\u0001=\u0001=\u0003=\u023f\b=\u0001=\u0001=\u0001"+
- "=\u0001=\u0001=\u0001=\u0005=\u0247\b=\n=\f=\u024a\t=\u0001>\u0001>\u0003"+
- ">\u024e\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0003>\u0255\b>\u0001>\u0001"+
- ">\u0001>\u0003>\u025a\b>\u0001?\u0001?\u0001?\u0003?\u025f\b?\u0001?\u0001"+
- "?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001@\u0003@\u0269\b@\u0001A\u0001"+
- "A\u0001A\u0001A\u0003A\u026f\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0001"+
- "A\u0005A\u0277\bA\nA\fA\u027a\tA\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+
- "B\u0001B\u0001B\u0003B\u0284\bB\u0001B\u0001B\u0001B\u0005B\u0289\bB\n"+
- "B\fB\u028c\tB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0005C\u0294\b"+
- "C\nC\fC\u0297\tC\u0001C\u0001C\u0003C\u029b\bC\u0003C\u029d\bC\u0001C"+
- "\u0001C\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0005E\u02a7\bE\nE\f"+
- "E\u02aa\tE\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001"+
- "G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001"+
- "G\u0005G\u02bf\bG\nG\fG\u02c2\tG\u0001G\u0001G\u0001G\u0001G\u0001G\u0001"+
- "G\u0005G\u02ca\bG\nG\fG\u02cd\tG\u0001G\u0001G\u0001G\u0001G\u0001G\u0001"+
- "G\u0005G\u02d5\bG\nG\fG\u02d8\tG\u0001G\u0001G\u0003G\u02dc\bG\u0001H"+
- "\u0001H\u0001I\u0001I\u0003I\u02e2\bI\u0001J\u0003J\u02e5\bJ\u0001J\u0001"+
- "J\u0001K\u0003K\u02ea\bK\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001"+
- "N\u0001N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001P\u0001"+
- "P\u0005P\u02fd\bP\nP\fP\u0300\tP\u0001Q\u0001Q\u0001Q\u0000\u0005\u0002"+
- "nz\u0082\u0084R\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014"+
- "\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfh"+
- "jlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092"+
- "\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u0000\t\u0002\u00005"+
- "5ll\u0001\u0000fg\u0002\u0000::@@\u0002\u0000CCFF\u0001\u0000XY\u0001"+
- "\u0000Z\\\u0002\u0000BBOO\u0002\u0000QQSW\u0002\u0000\u0016\u0016\u0018"+
- "\u0019\u0323\u0000\u00a4\u0001\u0000\u0000\u0000\u0002\u00a7\u0001\u0000"+
- "\u0000\u0000\u0004\u00b8\u0001\u0000\u0000\u0000\u0006\u00d8\u0001\u0000"+
- "\u0000\u0000\b\u00da\u0001\u0000\u0000\u0000\n\u00dd\u0001\u0000\u0000"+
- "\u0000\f\u00df\u0001\u0000\u0000\u0000\u000e\u00e2\u0001\u0000\u0000\u0000"+
- "\u0010\u00ed\u0001\u0000\u0000\u0000\u0012\u00f1\u0001\u0000\u0000\u0000"+
- "\u0014\u00f9\u0001\u0000\u0000\u0000\u0016\u00fe\u0001\u0000\u0000\u0000"+
- "\u0018\u0101\u0001\u0000\u0000\u0000\u001a\u0104\u0001\u0000\u0000\u0000"+
- "\u001c\u011a\u0001\u0000\u0000\u0000\u001e\u011c\u0001\u0000\u0000\u0000"+
- " \u011e\u0001\u0000\u0000\u0000\"\u0120\u0001\u0000\u0000\u0000$\u0122"+
- "\u0001\u0000\u0000\u0000&\u012b\u0001\u0000\u0000\u0000(\u012e\u0001\u0000"+
- "\u0000\u0000*\u0136\u0001\u0000\u0000\u0000,\u013e\u0001\u0000\u0000\u0000"+
- ".\u0143\u0001\u0000\u0000\u00000\u014b\u0001\u0000\u0000\u00002\u0153"+
- "\u0001\u0000\u0000\u00004\u015b\u0001\u0000\u0000\u00006\u0160\u0001\u0000"+
- "\u0000\u00008\u0164\u0001\u0000\u0000\u0000:\u0168\u0001\u0000\u0000\u0000"+
- "<\u016d\u0001\u0000\u0000\u0000>\u016f\u0001\u0000\u0000\u0000@\u0172"+
- "\u0001\u0000\u0000\u0000B\u017b\u0001\u0000\u0000\u0000D\u0183\u0001\u0000"+
- "\u0000\u0000F\u0186\u0001\u0000\u0000\u0000H\u0189\u0001\u0000\u0000\u0000"+
- "J\u0192\u0001\u0000\u0000\u0000L\u0196\u0001\u0000\u0000\u0000N\u019c"+
- "\u0001\u0000\u0000\u0000P\u01a0\u0001\u0000\u0000\u0000R\u01a3\u0001\u0000"+
- "\u0000\u0000T\u01ab\u0001\u0000\u0000\u0000V\u01af\u0001\u0000\u0000\u0000"+
- "X\u01b2\u0001\u0000\u0000\u0000Z\u01b6\u0001\u0000\u0000\u0000\\\u01b9"+
- "\u0001\u0000\u0000\u0000^\u01cd\u0001\u0000\u0000\u0000`\u01d1\u0001\u0000"+
- "\u0000\u0000b\u01d6\u0001\u0000\u0000\u0000d\u01dc\u0001\u0000\u0000\u0000"+
- "f\u01e9\u0001\u0000\u0000\u0000h\u01ec\u0001\u0000\u0000\u0000j\u01f0"+
- "\u0001\u0000\u0000\u0000l\u01f4\u0001\u0000\u0000\u0000n\u01f8\u0001\u0000"+
- "\u0000\u0000p\u0209\u0001\u0000\u0000\u0000r\u020b\u0001\u0000\u0000\u0000"+
- "t\u020d\u0001\u0000\u0000\u0000v\u0214\u0001\u0000\u0000\u0000x\u021c"+
- "\u0001\u0000\u0000\u0000z\u023e\u0001\u0000\u0000\u0000|\u0259\u0001\u0000"+
- "\u0000\u0000~\u025b\u0001\u0000\u0000\u0000\u0080\u0268\u0001\u0000\u0000"+
- "\u0000\u0082\u026e\u0001\u0000\u0000\u0000\u0084\u0283\u0001\u0000\u0000"+
- "\u0000\u0086\u028d\u0001\u0000\u0000\u0000\u0088\u02a0\u0001\u0000\u0000"+
- "\u0000\u008a\u02a2\u0001\u0000\u0000\u0000\u008c\u02ad\u0001\u0000\u0000"+
- "\u0000\u008e\u02db\u0001\u0000\u0000\u0000\u0090\u02dd\u0001\u0000\u0000"+
- "\u0000\u0092\u02e1\u0001\u0000\u0000\u0000\u0094\u02e4\u0001\u0000\u0000"+
- "\u0000\u0096\u02e9\u0001\u0000\u0000\u0000\u0098\u02ed\u0001\u0000\u0000"+
- "\u0000\u009a\u02ef\u0001\u0000\u0000\u0000\u009c\u02f1\u0001\u0000\u0000"+
- "\u0000\u009e\u02f6\u0001\u0000\u0000\u0000\u00a0\u02f8\u0001\u0000\u0000"+
- "\u0000\u00a2\u0301\u0001\u0000\u0000\u0000\u00a4\u00a5\u0003\u0002\u0001"+
- "\u0000\u00a5\u00a6\u0005\u0000\u0000\u0001\u00a6\u0001\u0001\u0000\u0000"+
- "\u0000\u00a7\u00a8\u0006\u0001\uffff\uffff\u0000\u00a8\u00a9\u0003\u0004"+
- "\u0002\u0000\u00a9\u00af\u0001\u0000\u0000\u0000\u00aa\u00ab\n\u0001\u0000"+
- "\u0000\u00ab\u00ac\u00054\u0000\u0000\u00ac\u00ae\u0003\u0006\u0003\u0000"+
- "\u00ad\u00aa\u0001\u0000\u0000\u0000\u00ae\u00b1\u0001\u0000\u0000\u0000"+
- "\u00af\u00ad\u0001\u0000\u0000\u0000\u00af\u00b0\u0001\u0000\u0000\u0000"+
- "\u00b0\u0003\u0001\u0000\u0000\u0000\u00b1\u00af\u0001\u0000\u0000\u0000"+
- "\u00b2\u00b9\u0003V+\u0000\u00b3\u00b9\u0003\u0016\u000b\u0000\u00b4\u00b9"+
- "\u0003\f\u0006\u0000\u00b5\u00b9\u0003Z-\u0000\u00b6\u00b7\u0004\u0002"+
- "\u0001\u0000\u00b7\u00b9\u0003\u0018\f\u0000\u00b8\u00b2\u0001\u0000\u0000"+
- "\u0000\u00b8\u00b3\u0001\u0000\u0000\u0000\u00b8\u00b4\u0001\u0000\u0000"+
- "\u0000\u00b8\u00b5\u0001\u0000\u0000\u0000\u00b8\u00b6\u0001\u0000\u0000"+
- "\u0000\u00b9\u0005\u0001\u0000\u0000\u0000\u00ba\u00d9\u0003&\u0013\u0000"+
- "\u00bb\u00d9\u0003\b\u0004\u0000\u00bc\u00d9\u0003D\"\u0000\u00bd\u00d9"+
- "\u0003>\u001f\u0000\u00be\u00d9\u0003(\u0014\u0000\u00bf\u00d9\u0003@"+
- " \u0000\u00c0\u00d9\u0003F#\u0000\u00c1\u00d9\u0003H$\u0000\u00c2\u00d9"+
- "\u0003L&\u0000\u00c3\u00d9\u0003N\'\u0000\u00c4\u00d9\u0003\\.\u0000\u00c5"+
- "\u00d9\u0003P(\u0000\u00c6\u00d9\u0003\u009cN\u0000\u00c7\u00d9\u0003"+
- "d2\u0000\u00c8\u00c9\u0004\u0003\u0002\u0000\u00c9\u00d9\u0003b1\u0000"+
- "\u00ca\u00cb\u0004\u0003\u0003\u0000\u00cb\u00d9\u0003`0\u0000\u00cc\u00cd"+
- "\u0004\u0003\u0004\u0000\u00cd\u00d9\u0003v;\u0000\u00ce\u00cf\u0004\u0003"+
- "\u0005\u0000\u00cf\u00d9\u0003f3\u0000\u00d0\u00d1\u0004\u0003\u0006\u0000"+
- "\u00d1\u00d9\u0003h4\u0000\u00d2\u00d3\u0004\u0003\u0007\u0000\u00d3\u00d9"+
- "\u0003t:\u0000\u00d4\u00d5\u0004\u0003\b\u0000\u00d5\u00d9\u0003r9\u0000"+
- "\u00d6\u00d7\u0004\u0003\t\u0000\u00d7\u00d9\u0003x<\u0000\u00d8\u00ba"+
- "\u0001\u0000\u0000\u0000\u00d8\u00bb\u0001\u0000\u0000\u0000\u00d8\u00bc"+
- "\u0001\u0000\u0000\u0000\u00d8\u00bd\u0001\u0000\u0000\u0000\u00d8\u00be"+
- "\u0001\u0000\u0000\u0000\u00d8\u00bf\u0001\u0000\u0000\u0000\u00d8\u00c0"+
- "\u0001\u0000\u0000\u0000\u00d8\u00c1\u0001\u0000\u0000\u0000\u00d8\u00c2"+
- "\u0001\u0000\u0000\u0000\u00d8\u00c3\u0001\u0000\u0000\u0000\u00d8\u00c4"+
- "\u0001\u0000\u0000\u0000\u00d8\u00c5\u0001\u0000\u0000\u0000\u00d8\u00c6"+
- "\u0001\u0000\u0000\u0000\u00d8\u00c7\u0001\u0000\u0000\u0000\u00d8\u00c8"+
- "\u0001\u0000\u0000\u0000\u00d8\u00ca\u0001\u0000\u0000\u0000\u00d8\u00cc"+
- "\u0001\u0000\u0000\u0000\u00d8\u00ce\u0001\u0000\u0000\u0000\u00d8\u00d0"+
- "\u0001\u0000\u0000\u0000\u00d8\u00d2\u0001\u0000\u0000\u0000\u00d8\u00d4"+
- "\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d9\u0007"+
- "\u0001\u0000\u0000\u0000\u00da\u00db\u0005\u000e\u0000\u0000\u00db\u00dc"+
- "\u0003z=\u0000\u00dc\t\u0001\u0000\u0000\u0000\u00dd\u00de\u00034\u001a"+
- "\u0000\u00de\u000b\u0001\u0000\u0000\u0000\u00df\u00e0\u0005\u000b\u0000"+
- "\u0000\u00e0\u00e1\u0003\u000e\u0007\u0000\u00e1\r\u0001\u0000\u0000\u0000"+
- "\u00e2\u00e7\u0003\u0010\b\u0000\u00e3\u00e4\u0005?\u0000\u0000\u00e4"+
- "\u00e6\u0003\u0010\b\u0000\u00e5\u00e3\u0001\u0000\u0000\u0000\u00e6\u00e9"+
- "\u0001\u0000\u0000\u0000\u00e7\u00e5\u0001\u0000\u0000\u0000\u00e7\u00e8"+
- "\u0001\u0000\u0000\u0000\u00e8\u000f\u0001\u0000\u0000\u0000\u00e9\u00e7"+
- "\u0001\u0000\u0000\u0000\u00ea\u00eb\u0003.\u0017\u0000\u00eb\u00ec\u0005"+
- ";\u0000\u0000\u00ec\u00ee\u0001\u0000\u0000\u0000\u00ed\u00ea\u0001\u0000"+
- "\u0000\u0000\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee\u00ef\u0001\u0000"+
- "\u0000\u0000\u00ef\u00f0\u0003z=\u0000\u00f0\u0011\u0001\u0000\u0000\u0000"+
- "\u00f1\u00f6\u0003\u0014\n\u0000\u00f2\u00f3\u0005?\u0000\u0000\u00f3"+
- "\u00f5\u0003\u0014\n\u0000\u00f4\u00f2\u0001\u0000\u0000\u0000\u00f5\u00f8"+
- "\u0001\u0000\u0000\u0000\u00f6\u00f4\u0001\u0000\u0000\u0000\u00f6\u00f7"+
- "\u0001\u0000\u0000\u0000\u00f7\u0013\u0001\u0000\u0000\u0000\u00f8\u00f6"+
- "\u0001\u0000\u0000\u0000\u00f9\u00fc\u0003.\u0017\u0000\u00fa\u00fb\u0005"+
- ";\u0000\u0000\u00fb\u00fd\u0003z=\u0000\u00fc\u00fa\u0001\u0000\u0000"+
- "\u0000\u00fc\u00fd\u0001\u0000\u0000\u0000\u00fd\u0015\u0001\u0000\u0000"+
- "\u0000\u00fe\u00ff\u0005\u0013\u0000\u0000\u00ff\u0100\u0003\u001a\r\u0000"+
- "\u0100\u0017\u0001\u0000\u0000\u0000\u0101\u0102\u0005\u0014\u0000\u0000"+
- "\u0102\u0103\u0003\u001a\r\u0000\u0103\u0019\u0001\u0000\u0000\u0000\u0104"+
- "\u0109\u0003\u001c\u000e\u0000\u0105\u0106\u0005?\u0000\u0000\u0106\u0108"+
- "\u0003\u001c\u000e\u0000\u0107\u0105\u0001\u0000\u0000\u0000\u0108\u010b"+
- "\u0001\u0000\u0000\u0000\u0109\u0107\u0001\u0000\u0000\u0000\u0109\u010a"+
- "\u0001\u0000\u0000\u0000\u010a\u010d\u0001\u0000\u0000\u0000\u010b\u0109"+
- "\u0001\u0000\u0000\u0000\u010c\u010e\u0003$\u0012\u0000\u010d\u010c\u0001"+
- "\u0000\u0000\u0000\u010d\u010e\u0001\u0000\u0000\u0000\u010e\u001b\u0001"+
- "\u0000\u0000\u0000\u010f\u0110\u0003\u001e\u000f\u0000\u0110\u0111\u0005"+
- ">\u0000\u0000\u0111\u0113\u0001\u0000\u0000\u0000\u0112\u010f\u0001\u0000"+
- "\u0000\u0000\u0112\u0113\u0001\u0000\u0000\u0000\u0113\u0114\u0001\u0000"+
- "\u0000\u0000\u0114\u011b\u0003\"\u0011\u0000\u0115\u0118\u0003\"\u0011"+
- "\u0000\u0116\u0117\u0005=\u0000\u0000\u0117\u0119\u0003 \u0010\u0000\u0118"+
- "\u0116\u0001\u0000\u0000\u0000\u0118\u0119\u0001\u0000\u0000\u0000\u0119"+
- "\u011b\u0001\u0000\u0000\u0000\u011a\u0112\u0001\u0000\u0000\u0000\u011a"+
- "\u0115\u0001\u0000\u0000\u0000\u011b\u001d\u0001\u0000\u0000\u0000\u011c"+
- "\u011d\u0007\u0000\u0000\u0000\u011d\u001f\u0001\u0000\u0000\u0000\u011e"+
- "\u011f\u0007\u0000\u0000\u0000\u011f!\u0001\u0000\u0000\u0000\u0120\u0121"+
- "\u0007\u0000\u0000\u0000\u0121#\u0001\u0000\u0000\u0000\u0122\u0123\u0005"+
- "k\u0000\u0000\u0123\u0128\u0005l\u0000\u0000\u0124\u0125\u0005?\u0000"+
- "\u0000\u0125\u0127\u0005l\u0000\u0000\u0126\u0124\u0001\u0000\u0000\u0000"+
- "\u0127\u012a\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000"+
- "\u0128\u0129\u0001\u0000\u0000\u0000\u0129%\u0001\u0000\u0000\u0000\u012a"+
- "\u0128\u0001\u0000\u0000\u0000\u012b\u012c\u0005\b\u0000\u0000\u012c\u012d"+
- "\u0003\u000e\u0007\u0000\u012d\'\u0001\u0000\u0000\u0000\u012e\u0130\u0005"+
- "\r\u0000\u0000\u012f\u0131\u0003*\u0015\u0000\u0130\u012f\u0001\u0000"+
- "\u0000\u0000\u0130\u0131\u0001\u0000\u0000\u0000\u0131\u0134\u0001\u0000"+
- "\u0000\u0000\u0132\u0133\u0005<\u0000\u0000\u0133\u0135\u0003\u000e\u0007"+
- "\u0000\u0134\u0132\u0001\u0000\u0000\u0000\u0134\u0135\u0001\u0000\u0000"+
- "\u0000\u0135)\u0001\u0000\u0000\u0000\u0136\u013b\u0003,\u0016\u0000\u0137"+
- "\u0138\u0005?\u0000\u0000\u0138\u013a\u0003,\u0016\u0000\u0139\u0137\u0001"+
- "\u0000\u0000\u0000\u013a\u013d\u0001\u0000\u0000\u0000\u013b\u0139\u0001"+
- "\u0000\u0000\u0000\u013b\u013c\u0001\u0000\u0000\u0000\u013c+\u0001\u0000"+
- "\u0000\u0000\u013d\u013b\u0001\u0000\u0000\u0000\u013e\u0141\u0003\u0010"+
- "\b\u0000\u013f\u0140\u0005\u000e\u0000\u0000\u0140\u0142\u0003z=\u0000"+
- "\u0141\u013f\u0001\u0000\u0000\u0000\u0141\u0142\u0001\u0000\u0000\u0000"+
- "\u0142-\u0001\u0000\u0000\u0000\u0143\u0148\u0003<\u001e\u0000\u0144\u0145"+
- "\u0005A\u0000\u0000\u0145\u0147\u0003<\u001e\u0000\u0146\u0144\u0001\u0000"+
- "\u0000\u0000\u0147\u014a\u0001\u0000\u0000\u0000\u0148\u0146\u0001\u0000"+
- "\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000\u0149/\u0001\u0000\u0000"+
- "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014b\u0150\u00036\u001b\u0000"+
- "\u014c\u014d\u0005A\u0000\u0000\u014d\u014f\u00036\u001b\u0000\u014e\u014c"+
- "\u0001\u0000\u0000\u0000\u014f\u0152\u0001\u0000\u0000\u0000\u0150\u014e"+
- "\u0001\u0000\u0000\u0000\u0150\u0151\u0001\u0000\u0000\u0000\u01511\u0001"+
- "\u0000\u0000\u0000\u0152\u0150\u0001\u0000\u0000\u0000\u0153\u0158\u0003"+
- "0\u0018\u0000\u0154\u0155\u0005?\u0000\u0000\u0155\u0157\u00030\u0018"+
- "\u0000\u0156\u0154\u0001\u0000\u0000\u0000\u0157\u015a\u0001\u0000\u0000"+
- "\u0000\u0158\u0156\u0001\u0000\u0000\u0000\u0158\u0159\u0001\u0000\u0000"+
- "\u0000\u01593\u0001\u0000\u0000\u0000\u015a\u0158\u0001\u0000\u0000\u0000"+
- "\u015b\u015c\u0007\u0001\u0000\u0000\u015c5\u0001\u0000\u0000\u0000\u015d"+
- "\u0161\u0005\u0081\u0000\u0000\u015e\u0161\u00038\u001c\u0000\u015f\u0161"+
- "\u0003:\u001d\u0000\u0160\u015d\u0001\u0000\u0000\u0000\u0160\u015e\u0001"+
- "\u0000\u0000\u0000\u0160\u015f\u0001\u0000\u0000\u0000\u01617\u0001\u0000"+
- "\u0000\u0000\u0162\u0165\u0005M\u0000\u0000\u0163\u0165\u0005`\u0000\u0000"+
- "\u0164\u0162\u0001\u0000\u0000\u0000\u0164\u0163\u0001\u0000\u0000\u0000"+
- "\u01659\u0001\u0000\u0000\u0000\u0166\u0169\u0005_\u0000\u0000\u0167\u0169"+
- "\u0005a\u0000\u0000\u0168\u0166\u0001\u0000\u0000\u0000\u0168\u0167\u0001"+
- "\u0000\u0000\u0000\u0169;\u0001\u0000\u0000\u0000\u016a\u016e\u00034\u001a"+
- "\u0000\u016b\u016e\u00038\u001c\u0000\u016c\u016e\u0003:\u001d\u0000\u016d"+
- "\u016a\u0001\u0000\u0000\u0000\u016d\u016b\u0001\u0000\u0000\u0000\u016d"+
- "\u016c\u0001\u0000\u0000\u0000\u016e=\u0001\u0000\u0000\u0000\u016f\u0170"+
- "\u0005\n\u0000\u0000\u0170\u0171\u00056\u0000\u0000\u0171?\u0001\u0000"+
- "\u0000\u0000\u0172\u0173\u0005\f\u0000\u0000\u0173\u0178\u0003B!\u0000"+
- "\u0174\u0175\u0005?\u0000\u0000\u0175\u0177\u0003B!\u0000\u0176\u0174"+
- "\u0001\u0000\u0000\u0000\u0177\u017a\u0001\u0000\u0000\u0000\u0178\u0176"+
- "\u0001\u0000\u0000\u0000\u0178\u0179\u0001\u0000\u0000\u0000\u0179A\u0001"+
- "\u0000\u0000\u0000\u017a\u0178\u0001\u0000\u0000\u0000\u017b\u017d\u0003"+
- "z=\u0000\u017c\u017e\u0007\u0002\u0000\u0000\u017d\u017c\u0001\u0000\u0000"+
- "\u0000\u017d\u017e\u0001\u0000\u0000\u0000\u017e\u0181\u0001\u0000\u0000"+
- "\u0000\u017f\u0180\u0005J\u0000\u0000\u0180\u0182\u0007\u0003\u0000\u0000"+
- "\u0181\u017f\u0001\u0000\u0000\u0000\u0181\u0182\u0001\u0000\u0000\u0000"+
- "\u0182C\u0001\u0000\u0000\u0000\u0183\u0184\u0005\u001d\u0000\u0000\u0184"+
- "\u0185\u00032\u0019\u0000\u0185E\u0001\u0000\u0000\u0000\u0186\u0187\u0005"+
- "\u001c\u0000\u0000\u0187\u0188\u00032\u0019\u0000\u0188G\u0001\u0000\u0000"+
- "\u0000\u0189\u018a\u0005 \u0000\u0000\u018a\u018f\u0003J%\u0000\u018b"+
- "\u018c\u0005?\u0000\u0000\u018c\u018e\u0003J%\u0000\u018d\u018b\u0001"+
- "\u0000\u0000\u0000\u018e\u0191\u0001\u0000\u0000\u0000\u018f\u018d\u0001"+
- "\u0000\u0000\u0000\u018f\u0190\u0001\u0000\u0000\u0000\u0190I\u0001\u0000"+
- "\u0000\u0000\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0193\u00030\u0018"+
- "\u0000\u0193\u0194\u00059\u0000\u0000\u0194\u0195\u00030\u0018\u0000\u0195"+
- "K\u0001\u0000\u0000\u0000\u0196\u0197\u0005\u0007\u0000\u0000\u0197\u0198"+
- "\u0003\u0084B\u0000\u0198\u019a\u0003\u0098L\u0000\u0199\u019b\u0003R"+
- ")\u0000\u019a\u0199\u0001\u0000\u0000\u0000\u019a\u019b\u0001\u0000\u0000"+
- "\u0000\u019bM\u0001\u0000\u0000\u0000\u019c\u019d\u0005\t\u0000\u0000"+
- "\u019d\u019e\u0003\u0084B\u0000\u019e\u019f\u0003\u0098L\u0000\u019fO"+
- "\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005\u001b\u0000\u0000\u01a1\u01a2"+
- "\u0003.\u0017\u0000\u01a2Q\u0001\u0000\u0000\u0000\u01a3\u01a8\u0003T"+
- "*\u0000\u01a4\u01a5\u0005?\u0000\u0000\u01a5\u01a7\u0003T*\u0000\u01a6"+
- "\u01a4\u0001\u0000\u0000\u0000\u01a7\u01aa\u0001\u0000\u0000\u0000\u01a8"+
- "\u01a6\u0001\u0000\u0000\u0000\u01a8\u01a9\u0001\u0000\u0000\u0000\u01a9"+
- "S\u0001\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01ab\u01ac"+
- "\u00034\u001a\u0000\u01ac\u01ad\u0005;\u0000\u0000\u01ad\u01ae\u0003\u008e"+
- "G\u0000\u01aeU\u0001\u0000\u0000\u0000\u01af\u01b0\u0005\u0006\u0000\u0000"+
- "\u01b0\u01b1\u0003X,\u0000\u01b1W\u0001\u0000\u0000\u0000\u01b2\u01b3"+
- "\u0005b\u0000\u0000\u01b3\u01b4\u0003\u0002\u0001\u0000\u01b4\u01b5\u0005"+
- "c\u0000\u0000\u01b5Y\u0001\u0000\u0000\u0000\u01b6\u01b7\u0005!\u0000"+
- "\u0000\u01b7\u01b8\u0005\u0088\u0000\u0000\u01b8[\u0001\u0000\u0000\u0000"+
- "\u01b9\u01ba\u0005\u0005\u0000\u0000\u01ba\u01bd\u0005&\u0000\u0000\u01bb"+
- "\u01bc\u0005K\u0000\u0000\u01bc\u01be\u00030\u0018\u0000\u01bd\u01bb\u0001"+
- "\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000\u0000\u01be\u01c8\u0001"+
- "\u0000\u0000\u0000\u01bf\u01c0\u0005P\u0000\u0000\u01c0\u01c5\u0003^/"+
- "\u0000\u01c1\u01c2\u0005?\u0000\u0000\u01c2\u01c4\u0003^/\u0000\u01c3"+
- "\u01c1\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5"+
- "\u01c3\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6"+
- "\u01c9\u0001\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000\u0000\u01c8"+
- "\u01bf\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000\u0000\u0000\u01c9"+
- "]\u0001\u0000\u0000\u0000\u01ca\u01cb\u00030\u0018\u0000\u01cb\u01cc\u0005"+
- ";\u0000\u0000\u01cc\u01ce\u0001\u0000\u0000\u0000\u01cd\u01ca\u0001\u0000"+
- "\u0000\u0000\u01cd\u01ce\u0001\u0000\u0000\u0000\u01ce\u01cf\u0001\u0000"+
- "\u0000\u0000\u01cf\u01d0\u00030\u0018\u0000\u01d0_\u0001\u0000\u0000\u0000"+
- "\u01d1\u01d2\u0005\u001a\u0000\u0000\u01d2\u01d3\u0003\u001c\u000e\u0000"+
- "\u01d3\u01d4\u0005K\u0000\u0000\u01d4\u01d5\u00032\u0019\u0000\u01d5a"+
- "\u0001\u0000\u0000\u0000\u01d6\u01d7\u0005\u0010\u0000\u0000\u01d7\u01da"+
- "\u0003*\u0015\u0000\u01d8\u01d9\u0005<\u0000\u0000\u01d9\u01db\u0003\u000e"+
- "\u0007\u0000\u01da\u01d8\u0001\u0000\u0000\u0000\u01da\u01db\u0001\u0000"+
- "\u0000\u0000\u01dbc\u0001\u0000\u0000\u0000\u01dc\u01dd\u0005\u0004\u0000"+
- "\u0000\u01dd\u01e0\u0003.\u0017\u0000\u01de\u01df\u0005K\u0000\u0000\u01df"+
- "\u01e1\u0003.\u0017\u0000\u01e0\u01de\u0001\u0000\u0000\u0000\u01e0\u01e1"+
- "\u0001\u0000\u0000\u0000\u01e1\u01e7\u0001\u0000\u0000\u0000\u01e2\u01e3"+
- "\u00059\u0000\u0000\u01e3\u01e4\u0003.\u0017\u0000\u01e4\u01e5\u0005?"+
- "\u0000\u0000\u01e5\u01e6\u0003.\u0017\u0000\u01e6\u01e8\u0001\u0000\u0000"+
- "\u0000\u01e7\u01e2\u0001\u0000\u0000\u0000\u01e7\u01e8\u0001\u0000\u0000"+
- "\u0000\u01e8e\u0001\u0000\u0000\u0000\u01e9\u01ea\u0005\u001e\u0000\u0000"+
- "\u01ea\u01eb\u00032\u0019\u0000\u01ebg\u0001\u0000\u0000\u0000\u01ec\u01ed"+
- "\u0005\u0015\u0000\u0000\u01ed\u01ee\u0003j5\u0000\u01eei\u0001\u0000"+
- "\u0000\u0000\u01ef\u01f1\u0003l6\u0000\u01f0\u01ef\u0001\u0000\u0000\u0000"+
- "\u01f1\u01f2\u0001\u0000\u0000\u0000\u01f2\u01f0\u0001\u0000\u0000\u0000"+
- "\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3k\u0001\u0000\u0000\u0000\u01f4"+
- "\u01f5\u0005d\u0000\u0000\u01f5\u01f6\u0003n7\u0000\u01f6\u01f7\u0005"+
- "e\u0000\u0000\u01f7m\u0001\u0000\u0000\u0000\u01f8\u01f9\u00067\uffff"+
- "\uffff\u0000\u01f9\u01fa\u0003p8\u0000\u01fa\u0200\u0001\u0000\u0000\u0000"+
- "\u01fb\u01fc\n\u0001\u0000\u0000\u01fc\u01fd\u00054\u0000\u0000\u01fd"+
- "\u01ff\u0003p8\u0000\u01fe\u01fb\u0001\u0000\u0000\u0000\u01ff\u0202\u0001"+
- "\u0000\u0000\u0000\u0200\u01fe\u0001\u0000\u0000\u0000\u0200\u0201\u0001"+
- "\u0000\u0000\u0000\u0201o\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000"+
- "\u0000\u0000\u0203\u020a\u0003&\u0013\u0000\u0204\u020a\u0003\b\u0004"+
- "\u0000\u0205\u020a\u0003>\u001f\u0000\u0206\u020a\u0003(\u0014\u0000\u0207"+
- "\u020a\u0003@ \u0000\u0208\u020a\u0003L&\u0000\u0209\u0203\u0001\u0000"+
- "\u0000\u0000\u0209\u0204\u0001\u0000\u0000\u0000\u0209\u0205\u0001\u0000"+
- "\u0000\u0000\u0209\u0206\u0001\u0000\u0000\u0000\u0209\u0207\u0001\u0000"+
- "\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u020aq\u0001\u0000\u0000"+
- "\u0000\u020b\u020c\u0005\u001f\u0000\u0000\u020cs\u0001\u0000\u0000\u0000"+
- "\u020d\u020e\u0005\u0011\u0000\u0000\u020e\u020f\u0003\u008eG\u0000\u020f"+
- "\u0210\u0005K\u0000\u0000\u0210\u0211\u0003\u0012\t\u0000\u0211\u0212"+
- "\u0005P\u0000\u0000\u0212\u0213\u0003<\u001e\u0000\u0213u\u0001\u0000"+
- "\u0000\u0000\u0214\u0215\u0005\u000f\u0000\u0000\u0215\u0216\u0003\u0084"+
- "B\u0000\u0216\u0217\u0005P\u0000\u0000\u0217\u021a\u0003<\u001e\u0000"+
- "\u0218\u0219\u00059\u0000\u0000\u0219\u021b\u0003.\u0017\u0000\u021a\u0218"+
- "\u0001\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021bw\u0001"+
- "\u0000\u0000\u0000\u021c\u021d\u0005\u0012\u0000\u0000\u021d\u021f\u0003"+
- "\u0094J\u0000\u021e\u0220\u0003\u0096K\u0000\u021f\u021e\u0001\u0000\u0000"+
- "\u0000\u021f\u0220\u0001\u0000\u0000\u0000\u0220y\u0001\u0000\u0000\u0000"+
- "\u0221\u0222\u0006=\uffff\uffff\u0000\u0222\u0223\u0005H\u0000\u0000\u0223"+
- "\u023f\u0003z=\b\u0224\u023f\u0003\u0080@\u0000\u0225\u023f\u0003|>\u0000"+
- "\u0226\u0228\u0003\u0080@\u0000\u0227\u0229\u0005H\u0000\u0000\u0228\u0227"+
- "\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000\u0000\u0000\u0229\u022a"+
- "\u0001\u0000\u0000\u0000\u022a\u022b\u0005D\u0000\u0000\u022b\u022c\u0005"+
- "d\u0000\u0000\u022c\u0231\u0003\u0080@\u0000\u022d\u022e\u0005?\u0000"+
- "\u0000\u022e\u0230\u0003\u0080@\u0000\u022f\u022d\u0001\u0000\u0000\u0000"+
- "\u0230\u0233\u0001\u0000\u0000\u0000\u0231\u022f\u0001\u0000\u0000\u0000"+
- "\u0231\u0232\u0001\u0000\u0000\u0000\u0232\u0234\u0001\u0000\u0000\u0000"+
- "\u0233\u0231\u0001\u0000\u0000\u0000\u0234\u0235\u0005e\u0000\u0000\u0235"+
- "\u023f\u0001\u0000\u0000\u0000\u0236\u0237\u0003\u0080@\u0000\u0237\u0239"+
- "\u0005E\u0000\u0000\u0238\u023a\u0005H\u0000\u0000\u0239\u0238\u0001\u0000"+
- "\u0000\u0000\u0239\u023a\u0001\u0000\u0000\u0000\u023a\u023b\u0001\u0000"+
- "\u0000\u0000\u023b\u023c\u0005I\u0000\u0000\u023c\u023f\u0001\u0000\u0000"+
- "\u0000\u023d\u023f\u0003~?\u0000\u023e\u0221\u0001\u0000\u0000\u0000\u023e"+
- "\u0224\u0001\u0000\u0000\u0000\u023e\u0225\u0001\u0000\u0000\u0000\u023e"+
- "\u0226\u0001\u0000\u0000\u0000\u023e\u0236\u0001\u0000\u0000\u0000\u023e"+
- "\u023d\u0001\u0000\u0000\u0000\u023f\u0248\u0001\u0000\u0000\u0000\u0240"+
- "\u0241\n\u0005\u0000\u0000\u0241\u0242\u00058\u0000\u0000\u0242\u0247"+
- "\u0003z=\u0006\u0243\u0244\n\u0004\u0000\u0000\u0244\u0245\u0005L\u0000"+
- "\u0000\u0245\u0247\u0003z=\u0005\u0246\u0240\u0001\u0000\u0000\u0000\u0246"+
- "\u0243\u0001\u0000\u0000\u0000\u0247\u024a\u0001\u0000\u0000\u0000\u0248"+
- "\u0246\u0001\u0000\u0000\u0000\u0248\u0249\u0001\u0000\u0000\u0000\u0249"+
- "{\u0001\u0000\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024b\u024d"+
- "\u0003\u0080@\u0000\u024c\u024e\u0005H\u0000\u0000\u024d\u024c\u0001\u0000"+
- "\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e\u024f\u0001\u0000"+
- "\u0000\u0000\u024f\u0250\u0005G\u0000\u0000\u0250\u0251\u0003\u0098L\u0000"+
- "\u0251\u025a\u0001\u0000\u0000\u0000\u0252\u0254\u0003\u0080@\u0000\u0253"+
- "\u0255\u0005H\u0000\u0000\u0254\u0253\u0001\u0000\u0000\u0000\u0254\u0255"+
- "\u0001\u0000\u0000\u0000\u0255\u0256\u0001\u0000\u0000\u0000\u0256\u0257"+
- "\u0005N\u0000\u0000\u0257\u0258\u0003\u0098L\u0000\u0258\u025a\u0001\u0000"+
- "\u0000\u0000\u0259\u024b\u0001\u0000\u0000\u0000\u0259\u0252\u0001\u0000"+
- "\u0000\u0000\u025a}\u0001\u0000\u0000\u0000\u025b\u025e\u0003.\u0017\u0000"+
- "\u025c\u025d\u0005=\u0000\u0000\u025d\u025f\u0003\n\u0005\u0000\u025e"+
- "\u025c\u0001\u0000\u0000\u0000\u025e\u025f\u0001\u0000\u0000\u0000\u025f"+
- "\u0260\u0001\u0000\u0000\u0000\u0260\u0261\u0005>\u0000\u0000\u0261\u0262"+
- "\u0003\u008eG\u0000\u0262\u007f\u0001\u0000\u0000\u0000\u0263\u0269\u0003"+
- "\u0082A\u0000\u0264\u0265\u0003\u0082A\u0000\u0265\u0266\u0003\u009aM"+
- "\u0000\u0266\u0267\u0003\u0082A\u0000\u0267\u0269\u0001\u0000\u0000\u0000"+
- "\u0268\u0263\u0001\u0000\u0000\u0000\u0268\u0264\u0001\u0000\u0000\u0000"+
- "\u0269\u0081\u0001\u0000\u0000\u0000\u026a\u026b\u0006A\uffff\uffff\u0000"+
- "\u026b\u026f\u0003\u0084B\u0000\u026c\u026d\u0007\u0004\u0000\u0000\u026d"+
- "\u026f\u0003\u0082A\u0003\u026e\u026a\u0001\u0000\u0000\u0000\u026e\u026c"+
- "\u0001\u0000\u0000\u0000\u026f\u0278\u0001\u0000\u0000\u0000\u0270\u0271"+
- "\n\u0002\u0000\u0000\u0271\u0272\u0007\u0005\u0000\u0000\u0272\u0277\u0003"+
- "\u0082A\u0003\u0273\u0274\n\u0001\u0000\u0000\u0274\u0275\u0007\u0004"+
- "\u0000\u0000\u0275\u0277\u0003\u0082A\u0002\u0276\u0270\u0001\u0000\u0000"+
- "\u0000\u0276\u0273\u0001\u0000\u0000\u0000\u0277\u027a\u0001\u0000\u0000"+
- "\u0000\u0278\u0276\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000"+
- "\u0000\u0279\u0083\u0001\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000"+
- "\u0000\u027b\u027c\u0006B\uffff\uffff\u0000\u027c\u0284\u0003\u008eG\u0000"+
- "\u027d\u0284\u0003.\u0017\u0000\u027e\u0284\u0003\u0086C\u0000\u027f\u0280"+
- "\u0005d\u0000\u0000\u0280\u0281\u0003z=\u0000\u0281\u0282\u0005e\u0000"+
- "\u0000\u0282\u0284\u0001\u0000\u0000\u0000\u0283\u027b\u0001\u0000\u0000"+
- "\u0000\u0283\u027d\u0001\u0000\u0000\u0000\u0283\u027e\u0001\u0000\u0000"+
- "\u0000\u0283\u027f\u0001\u0000\u0000\u0000\u0284\u028a\u0001\u0000\u0000"+
- "\u0000\u0285\u0286\n\u0001\u0000\u0000\u0286\u0287\u0005=\u0000\u0000"+
- "\u0287\u0289\u0003\n\u0005\u0000\u0288\u0285\u0001\u0000\u0000\u0000\u0289"+
- "\u028c\u0001\u0000\u0000\u0000\u028a\u0288\u0001\u0000\u0000\u0000\u028a"+
- "\u028b\u0001\u0000\u0000\u0000\u028b\u0085\u0001\u0000\u0000\u0000\u028c"+
- "\u028a\u0001\u0000\u0000\u0000\u028d\u028e\u0003\u0088D\u0000\u028e\u029c"+
- "\u0005d\u0000\u0000\u028f\u029d\u0005Z\u0000\u0000\u0290\u0295\u0003z"+
- "=\u0000\u0291\u0292\u0005?\u0000\u0000\u0292\u0294\u0003z=\u0000\u0293"+
- "\u0291\u0001\u0000\u0000\u0000\u0294\u0297\u0001\u0000\u0000\u0000\u0295"+
- "\u0293\u0001\u0000\u0000\u0000\u0295\u0296\u0001\u0000\u0000\u0000\u0296"+
- "\u029a\u0001\u0000\u0000\u0000\u0297\u0295\u0001\u0000\u0000\u0000\u0298"+
- "\u0299\u0005?\u0000\u0000\u0299\u029b\u0003\u008aE\u0000\u029a\u0298\u0001"+
- "\u0000\u0000\u0000\u029a\u029b\u0001\u0000\u0000\u0000\u029b\u029d\u0001"+
- "\u0000\u0000\u0000\u029c\u028f\u0001\u0000\u0000\u0000\u029c\u0290\u0001"+
- "\u0000\u0000\u0000\u029c\u029d\u0001\u0000\u0000\u0000\u029d\u029e\u0001"+
- "\u0000\u0000\u0000\u029e\u029f\u0005e\u0000\u0000\u029f\u0087\u0001\u0000"+
- "\u0000\u0000\u02a0\u02a1\u0003<\u001e\u0000\u02a1\u0089\u0001\u0000\u0000"+
- "\u0000\u02a2\u02a3\u0005]\u0000\u0000\u02a3\u02a8\u0003\u008cF\u0000\u02a4"+
- "\u02a5\u0005?\u0000\u0000\u02a5\u02a7\u0003\u008cF\u0000\u02a6\u02a4\u0001"+
- "\u0000\u0000\u0000\u02a7\u02aa\u0001\u0000\u0000\u0000\u02a8\u02a6\u0001"+
- "\u0000\u0000\u0000\u02a8\u02a9\u0001\u0000\u0000\u0000\u02a9\u02ab\u0001"+
- "\u0000\u0000\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02ab\u02ac\u0005"+
- "^\u0000\u0000\u02ac\u008b\u0001\u0000\u0000\u0000\u02ad\u02ae\u0003\u0098"+
- "L\u0000\u02ae\u02af\u0005>\u0000\u0000\u02af\u02b0\u0003\u008eG\u0000"+
- "\u02b0\u008d\u0001\u0000\u0000\u0000\u02b1\u02dc\u0005I\u0000\u0000\u02b2"+
- "\u02b3\u0003\u0096K\u0000\u02b3\u02b4\u0005f\u0000\u0000\u02b4\u02dc\u0001"+
- "\u0000\u0000\u0000\u02b5\u02dc\u0003\u0094J\u0000\u02b6\u02dc\u0003\u0096"+
- "K\u0000\u02b7\u02dc\u0003\u0090H\u0000\u02b8\u02dc\u00038\u001c\u0000"+
- "\u02b9\u02dc\u0003\u0098L\u0000\u02ba\u02bb\u0005b\u0000\u0000\u02bb\u02c0"+
- "\u0003\u0092I\u0000\u02bc\u02bd\u0005?\u0000\u0000\u02bd\u02bf\u0003\u0092"+
- "I\u0000\u02be\u02bc\u0001\u0000\u0000\u0000\u02bf\u02c2\u0001\u0000\u0000"+
- "\u0000\u02c0\u02be\u0001\u0000\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000"+
- "\u0000\u02c1\u02c3\u0001\u0000\u0000\u0000\u02c2\u02c0\u0001\u0000\u0000"+
- "\u0000\u02c3\u02c4\u0005c\u0000\u0000\u02c4\u02dc\u0001\u0000\u0000\u0000"+
- "\u02c5\u02c6\u0005b\u0000\u0000\u02c6\u02cb\u0003\u0090H\u0000\u02c7\u02c8"+
- "\u0005?\u0000\u0000\u02c8\u02ca\u0003\u0090H\u0000\u02c9\u02c7\u0001\u0000"+
- "\u0000\u0000\u02ca\u02cd\u0001\u0000\u0000\u0000\u02cb\u02c9\u0001\u0000"+
- "\u0000\u0000\u02cb\u02cc\u0001\u0000\u0000\u0000\u02cc\u02ce\u0001\u0000"+
- "\u0000\u0000\u02cd\u02cb\u0001\u0000\u0000\u0000\u02ce\u02cf\u0005c\u0000"+
- "\u0000\u02cf\u02dc\u0001\u0000\u0000\u0000\u02d0\u02d1\u0005b\u0000\u0000"+
- "\u02d1\u02d6\u0003\u0098L\u0000\u02d2\u02d3\u0005?\u0000\u0000\u02d3\u02d5"+
- "\u0003\u0098L\u0000\u02d4\u02d2\u0001\u0000\u0000\u0000\u02d5\u02d8\u0001"+
- "\u0000\u0000\u0000\u02d6\u02d4\u0001\u0000\u0000\u0000\u02d6\u02d7\u0001"+
- "\u0000\u0000\u0000\u02d7\u02d9\u0001\u0000\u0000\u0000\u02d8\u02d6\u0001"+
- "\u0000\u0000\u0000\u02d9\u02da\u0005c\u0000\u0000\u02da\u02dc\u0001\u0000"+
- "\u0000\u0000\u02db\u02b1\u0001\u0000\u0000\u0000\u02db\u02b2\u0001\u0000"+
- "\u0000\u0000\u02db\u02b5\u0001\u0000\u0000\u0000\u02db\u02b6\u0001\u0000"+
- "\u0000\u0000\u02db\u02b7\u0001\u0000\u0000\u0000\u02db\u02b8\u0001\u0000"+
- "\u0000\u0000\u02db\u02b9\u0001\u0000\u0000\u0000\u02db\u02ba\u0001\u0000"+
- "\u0000\u0000\u02db\u02c5\u0001\u0000\u0000\u0000\u02db\u02d0\u0001\u0000"+
- "\u0000\u0000\u02dc\u008f\u0001\u0000\u0000\u0000\u02dd\u02de\u0007\u0006"+
- "\u0000\u0000\u02de\u0091\u0001\u0000\u0000\u0000\u02df\u02e2\u0003\u0094"+
- "J\u0000\u02e0\u02e2\u0003\u0096K\u0000\u02e1\u02df\u0001\u0000\u0000\u0000"+
- "\u02e1\u02e0\u0001\u0000\u0000\u0000\u02e2\u0093\u0001\u0000\u0000\u0000"+
- "\u02e3\u02e5\u0007\u0004\u0000\u0000\u02e4\u02e3\u0001\u0000\u0000\u0000"+
- "\u02e4\u02e5\u0001\u0000\u0000\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000"+
- "\u02e6\u02e7\u00057\u0000\u0000\u02e7\u0095\u0001\u0000\u0000\u0000\u02e8"+
- "\u02ea\u0007\u0004\u0000\u0000\u02e9\u02e8\u0001\u0000\u0000\u0000\u02e9"+
- "\u02ea\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb"+
- "\u02ec\u00056\u0000\u0000\u02ec\u0097\u0001\u0000\u0000\u0000\u02ed\u02ee"+
- "\u00055\u0000\u0000\u02ee\u0099\u0001\u0000\u0000\u0000\u02ef\u02f0\u0007"+
- "\u0007\u0000\u0000\u02f0\u009b\u0001\u0000\u0000\u0000\u02f1\u02f2\u0007"+
- "\b\u0000\u0000\u02f2\u02f3\u0005s\u0000\u0000\u02f3\u02f4\u0003\u009e"+
- "O\u0000\u02f4\u02f5\u0003\u00a0P\u0000\u02f5\u009d\u0001\u0000\u0000\u0000"+
- "\u02f6\u02f7\u0003\u001c\u000e\u0000\u02f7\u009f\u0001\u0000\u0000\u0000"+
- "\u02f8\u02f9\u0005K\u0000\u0000\u02f9\u02fe\u0003\u00a2Q\u0000\u02fa\u02fb"+
- "\u0005?\u0000\u0000\u02fb\u02fd\u0003\u00a2Q\u0000\u02fc\u02fa\u0001\u0000"+
- "\u0000\u0000\u02fd\u0300\u0001\u0000\u0000\u0000\u02fe\u02fc\u0001\u0000"+
- "\u0000\u0000\u02fe\u02ff\u0001\u0000\u0000\u0000\u02ff\u00a1\u0001\u0000"+
- "\u0000\u0000\u0300\u02fe\u0001\u0000\u0000\u0000\u0301\u0302\u0003\u0080"+
- "@\u0000\u0302\u00a3\u0001\u0000\u0000\u0000F\u00af\u00b8\u00d8\u00e7\u00ed"+
- "\u00f6\u00fc\u0109\u010d\u0112\u0118\u011a\u0128\u0130\u0134\u013b\u0141"+
- "\u0148\u0150\u0158\u0160\u0164\u0168\u016d\u0178\u017d\u0181\u018f\u019a"+
- "\u01a8\u01bd\u01c5\u01c8\u01cd\u01da\u01e0\u01e7\u01f2\u0200\u0209\u021a"+
- "\u021f\u0228\u0231\u0239\u023e\u0246\u0248\u024d\u0254\u0259\u025e\u0268"+
- "\u026e\u0276\u0278\u0283\u028a\u0295\u029a\u029c\u02a8\u02c0\u02cb\u02d6"+
- "\u02db\u02e1\u02e4\u02e9\u02fe";
+ "\u0001\u0003\u0003\u0003\u00db\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007"+
+ "\u0001\u0007\u0001\u0007\u0005\u0007\u00e8\b\u0007\n\u0007\f\u0007\u00eb"+
+ "\t\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00f0\b\b\u0001\b\u0001\b\u0001"+
+ "\t\u0001\t\u0001\t\u0005\t\u00f7\b\t\n\t\f\t\u00fa\t\t\u0001\n\u0001\n"+
+ "\u0001\n\u0003\n\u00ff\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f"+
+ "\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0005\r\u010a\b\r\n\r\f\r\u010d"+
+ "\t\r\u0001\r\u0003\r\u0110\b\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
+ "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0003"+
+ "\u000e\u011b\b\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+
+ "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001"+
+ "\u0013\u0001\u0013\u0005\u0013\u0129\b\u0013\n\u0013\f\u0013\u012c\t\u0013"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0003\u0015"+
+ "\u0133\b\u0015\u0001\u0015\u0001\u0015\u0003\u0015\u0137\b\u0015\u0001"+
+ "\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u013c\b\u0016\n\u0016\f\u0016"+
+ "\u013f\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017\u0144\b"+
+ "\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018\u0149\b\u0018\n"+
+ "\u0018\f\u0018\u014c\t\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0005"+
+ "\u0019\u0151\b\u0019\n\u0019\f\u0019\u0154\t\u0019\u0001\u001a\u0001\u001a"+
+ "\u0001\u001a\u0005\u001a\u0159\b\u001a\n\u001a\f\u001a\u015c\t\u001a\u0001"+
+ "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0163"+
+ "\b\u001c\u0001\u001d\u0001\u001d\u0003\u001d\u0167\b\u001d\u0001\u001e"+
+ "\u0001\u001e\u0003\u001e\u016b\b\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+
+ "\u0003\u001f\u0170\b\u001f\u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001"+
+ "!\u0005!\u0179\b!\n!\f!\u017c\t!\u0001\"\u0001\"\u0003\"\u0180\b\"\u0001"+
+ "\"\u0001\"\u0003\"\u0184\b\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001"+
+ "$\u0001%\u0001%\u0001%\u0001%\u0005%\u0190\b%\n%\f%\u0193\t%\u0001&\u0001"+
+ "&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0003\'\u019d\b\'\u0001"+
+ "(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0005"+
+ "*\u01a9\b*\n*\f*\u01ac\t*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001"+
+ ",\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u0001"+
+ "/\u0001/\u0003/\u01c0\b/\u0001/\u0001/\u0001/\u0001/\u0005/\u01c6\b/\n"+
+ "/\f/\u01c9\t/\u0003/\u01cb\b/\u00010\u00010\u00010\u00030\u01d0\b0\u0001"+
+ "0\u00010\u00011\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u0001"+
+ "2\u00032\u01dd\b2\u00013\u00013\u00013\u00013\u00033\u01e3\b3\u00013\u0001"+
+ "3\u00013\u00013\u00013\u00033\u01ea\b3\u00014\u00014\u00014\u00015\u0001"+
+ "5\u00015\u00016\u00046\u01f3\b6\u000b6\f6\u01f4\u00017\u00017\u00017\u0001"+
+ "7\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u0201\b8\n8\f8\u0204"+
+ "\t8\u00019\u00019\u00019\u00019\u00019\u00019\u00039\u020c\b9\u0001:\u0001"+
+ ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001"+
+ "<\u0001<\u0001<\u0001<\u0003<\u021d\b<\u0001=\u0001=\u0001=\u0003=\u0222"+
+ "\b=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0003>\u022b\b>\u0001"+
+ ">\u0001>\u0001>\u0001>\u0001>\u0005>\u0232\b>\n>\f>\u0235\t>\u0001>\u0001"+
+ ">\u0001>\u0001>\u0001>\u0003>\u023c\b>\u0001>\u0001>\u0001>\u0003>\u0241"+
+ "\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0249\b>\n>\f>\u024c"+
+ "\t>\u0001?\u0001?\u0003?\u0250\b?\u0001?\u0001?\u0001?\u0001?\u0001?\u0003"+
+ "?\u0257\b?\u0001?\u0001?\u0001?\u0003?\u025c\b?\u0001@\u0001@\u0001@\u0003"+
+ "@\u0261\b@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0003"+
+ "A\u026b\bA\u0001B\u0001B\u0001B\u0001B\u0003B\u0271\bB\u0001B\u0001B\u0001"+
+ "B\u0001B\u0001B\u0001B\u0005B\u0279\bB\nB\fB\u027c\tB\u0001C\u0001C\u0001"+
+ "C\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u0286\bC\u0001C\u0001C\u0001"+
+ "C\u0005C\u028b\bC\nC\fC\u028e\tC\u0001D\u0001D\u0001D\u0001D\u0001D\u0001"+
+ "D\u0005D\u0296\bD\nD\fD\u0299\tD\u0001D\u0001D\u0003D\u029d\bD\u0003D"+
+ "\u029f\bD\u0001D\u0001D\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0005"+
+ "F\u02a9\bF\nF\fF\u02ac\tF\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001"+
+ "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001H\u0001H\u0005H\u02c1\bH\nH\fH\u02c4\tH\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001H\u0001H\u0005H\u02cc\bH\nH\fH\u02cf\tH\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001H\u0001H\u0005H\u02d7\bH\nH\fH\u02da\tH\u0001H\u0001H\u0003H\u02de"+
+ "\bH\u0001I\u0001I\u0001J\u0001J\u0003J\u02e4\bJ\u0001K\u0003K\u02e7\b"+
+ "K\u0001K\u0001K\u0001L\u0003L\u02ec\bL\u0001L\u0001L\u0001M\u0001M\u0001"+
+ "N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001"+
+ "Q\u0001Q\u0001Q\u0005Q\u02ff\bQ\nQ\fQ\u0302\tQ\u0001R\u0001R\u0001R\u0000"+
+ "\u0005\u0002p|\u0084\u0086S\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+
+ "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+
+ "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+
+ "\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u0000"+
+ "\t\u0002\u000055ll\u0001\u0000fg\u0002\u0000::@@\u0002\u0000CCFF\u0001"+
+ "\u0000XY\u0001\u0000Z\\\u0002\u0000BBOO\u0002\u0000QQSW\u0002\u0000\u0016"+
+ "\u0016\u0018\u0019\u0323\u0000\u00a6\u0001\u0000\u0000\u0000\u0002\u00a9"+
+ "\u0001\u0000\u0000\u0000\u0004\u00ba\u0001\u0000\u0000\u0000\u0006\u00da"+
+ "\u0001\u0000\u0000\u0000\b\u00dc\u0001\u0000\u0000\u0000\n\u00df\u0001"+
+ "\u0000\u0000\u0000\f\u00e1\u0001\u0000\u0000\u0000\u000e\u00e4\u0001\u0000"+
+ "\u0000\u0000\u0010\u00ef\u0001\u0000\u0000\u0000\u0012\u00f3\u0001\u0000"+
+ "\u0000\u0000\u0014\u00fb\u0001\u0000\u0000\u0000\u0016\u0100\u0001\u0000"+
+ "\u0000\u0000\u0018\u0103\u0001\u0000\u0000\u0000\u001a\u0106\u0001\u0000"+
+ "\u0000\u0000\u001c\u011a\u0001\u0000\u0000\u0000\u001e\u011c\u0001\u0000"+
+ "\u0000\u0000 \u011e\u0001\u0000\u0000\u0000\"\u0120\u0001\u0000\u0000"+
+ "\u0000$\u0122\u0001\u0000\u0000\u0000&\u0124\u0001\u0000\u0000\u0000("+
+ "\u012d\u0001\u0000\u0000\u0000*\u0130\u0001\u0000\u0000\u0000,\u0138\u0001"+
+ "\u0000\u0000\u0000.\u0140\u0001\u0000\u0000\u00000\u0145\u0001\u0000\u0000"+
+ "\u00002\u014d\u0001\u0000\u0000\u00004\u0155\u0001\u0000\u0000\u00006"+
+ "\u015d\u0001\u0000\u0000\u00008\u0162\u0001\u0000\u0000\u0000:\u0166\u0001"+
+ "\u0000\u0000\u0000<\u016a\u0001\u0000\u0000\u0000>\u016f\u0001\u0000\u0000"+
+ "\u0000@\u0171\u0001\u0000\u0000\u0000B\u0174\u0001\u0000\u0000\u0000D"+
+ "\u017d\u0001\u0000\u0000\u0000F\u0185\u0001\u0000\u0000\u0000H\u0188\u0001"+
+ "\u0000\u0000\u0000J\u018b\u0001\u0000\u0000\u0000L\u0194\u0001\u0000\u0000"+
+ "\u0000N\u0198\u0001\u0000\u0000\u0000P\u019e\u0001\u0000\u0000\u0000R"+
+ "\u01a2\u0001\u0000\u0000\u0000T\u01a5\u0001\u0000\u0000\u0000V\u01ad\u0001"+
+ "\u0000\u0000\u0000X\u01b1\u0001\u0000\u0000\u0000Z\u01b4\u0001\u0000\u0000"+
+ "\u0000\\\u01b8\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000\u0000"+
+ "`\u01cf\u0001\u0000\u0000\u0000b\u01d3\u0001\u0000\u0000\u0000d\u01d8"+
+ "\u0001\u0000\u0000\u0000f\u01de\u0001\u0000\u0000\u0000h\u01eb\u0001\u0000"+
+ "\u0000\u0000j\u01ee\u0001\u0000\u0000\u0000l\u01f2\u0001\u0000\u0000\u0000"+
+ "n\u01f6\u0001\u0000\u0000\u0000p\u01fa\u0001\u0000\u0000\u0000r\u020b"+
+ "\u0001\u0000\u0000\u0000t\u020d\u0001\u0000\u0000\u0000v\u020f\u0001\u0000"+
+ "\u0000\u0000x\u0216\u0001\u0000\u0000\u0000z\u021e\u0001\u0000\u0000\u0000"+
+ "|\u0240\u0001\u0000\u0000\u0000~\u025b\u0001\u0000\u0000\u0000\u0080\u025d"+
+ "\u0001\u0000\u0000\u0000\u0082\u026a\u0001\u0000\u0000\u0000\u0084\u0270"+
+ "\u0001\u0000\u0000\u0000\u0086\u0285\u0001\u0000\u0000\u0000\u0088\u028f"+
+ "\u0001\u0000\u0000\u0000\u008a\u02a2\u0001\u0000\u0000\u0000\u008c\u02a4"+
+ "\u0001\u0000\u0000\u0000\u008e\u02af\u0001\u0000\u0000\u0000\u0090\u02dd"+
+ "\u0001\u0000\u0000\u0000\u0092\u02df\u0001\u0000\u0000\u0000\u0094\u02e3"+
+ "\u0001\u0000\u0000\u0000\u0096\u02e6\u0001\u0000\u0000\u0000\u0098\u02eb"+
+ "\u0001\u0000\u0000\u0000\u009a\u02ef\u0001\u0000\u0000\u0000\u009c\u02f1"+
+ "\u0001\u0000\u0000\u0000\u009e\u02f3\u0001\u0000\u0000\u0000\u00a0\u02f8"+
+ "\u0001\u0000\u0000\u0000\u00a2\u02fa\u0001\u0000\u0000\u0000\u00a4\u0303"+
+ "\u0001\u0000\u0000\u0000\u00a6\u00a7\u0003\u0002\u0001\u0000\u00a7\u00a8"+
+ "\u0005\u0000\u0000\u0001\u00a8\u0001\u0001\u0000\u0000\u0000\u00a9\u00aa"+
+ "\u0006\u0001\uffff\uffff\u0000\u00aa\u00ab\u0003\u0004\u0002\u0000\u00ab"+
+ "\u00b1\u0001\u0000\u0000\u0000\u00ac\u00ad\n\u0001\u0000\u0000\u00ad\u00ae"+
+ "\u00054\u0000\u0000\u00ae\u00b0\u0003\u0006\u0003\u0000\u00af\u00ac\u0001"+
+ "\u0000\u0000\u0000\u00b0\u00b3\u0001\u0000\u0000\u0000\u00b1\u00af\u0001"+
+ "\u0000\u0000\u0000\u00b1\u00b2\u0001\u0000\u0000\u0000\u00b2\u0003\u0001"+
+ "\u0000\u0000\u0000\u00b3\u00b1\u0001\u0000\u0000\u0000\u00b4\u00bb\u0003"+
+ "X,\u0000\u00b5\u00bb\u0003\u0016\u000b\u0000\u00b6\u00bb\u0003\f\u0006"+
+ "\u0000\u00b7\u00bb\u0003\\.\u0000\u00b8\u00b9\u0004\u0002\u0001\u0000"+
+ "\u00b9\u00bb\u0003\u0018\f\u0000\u00ba\u00b4\u0001\u0000\u0000\u0000\u00ba"+
+ "\u00b5\u0001\u0000\u0000\u0000\u00ba\u00b6\u0001\u0000\u0000\u0000\u00ba"+
+ "\u00b7\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000\u0000\u00bb"+
+ "\u0005\u0001\u0000\u0000\u0000\u00bc\u00db\u0003(\u0014\u0000\u00bd\u00db"+
+ "\u0003\b\u0004\u0000\u00be\u00db\u0003F#\u0000\u00bf\u00db\u0003@ \u0000"+
+ "\u00c0\u00db\u0003*\u0015\u0000\u00c1\u00db\u0003B!\u0000\u00c2\u00db"+
+ "\u0003H$\u0000\u00c3\u00db\u0003J%\u0000\u00c4\u00db\u0003N\'\u0000\u00c5"+
+ "\u00db\u0003P(\u0000\u00c6\u00db\u0003^/\u0000\u00c7\u00db\u0003R)\u0000"+
+ "\u00c8\u00db\u0003\u009eO\u0000\u00c9\u00db\u0003f3\u0000\u00ca\u00cb"+
+ "\u0004\u0003\u0002\u0000\u00cb\u00db\u0003d2\u0000\u00cc\u00cd\u0004\u0003"+
+ "\u0003\u0000\u00cd\u00db\u0003b1\u0000\u00ce\u00cf\u0004\u0003\u0004\u0000"+
+ "\u00cf\u00db\u0003x<\u0000\u00d0\u00d1\u0004\u0003\u0005\u0000\u00d1\u00db"+
+ "\u0003h4\u0000\u00d2\u00d3\u0004\u0003\u0006\u0000\u00d3\u00db\u0003j"+
+ "5\u0000\u00d4\u00d5\u0004\u0003\u0007\u0000\u00d5\u00db\u0003v;\u0000"+
+ "\u00d6\u00d7\u0004\u0003\b\u0000\u00d7\u00db\u0003t:\u0000\u00d8\u00d9"+
+ "\u0004\u0003\t\u0000\u00d9\u00db\u0003z=\u0000\u00da\u00bc\u0001\u0000"+
+ "\u0000\u0000\u00da\u00bd\u0001\u0000\u0000\u0000\u00da\u00be\u0001\u0000"+
+ "\u0000\u0000\u00da\u00bf\u0001\u0000\u0000\u0000\u00da\u00c0\u0001\u0000"+
+ "\u0000\u0000\u00da\u00c1\u0001\u0000\u0000\u0000\u00da\u00c2\u0001\u0000"+
+ "\u0000\u0000\u00da\u00c3\u0001\u0000\u0000\u0000\u00da\u00c4\u0001\u0000"+
+ "\u0000\u0000\u00da\u00c5\u0001\u0000\u0000\u0000\u00da\u00c6\u0001\u0000"+
+ "\u0000\u0000\u00da\u00c7\u0001\u0000\u0000\u0000\u00da\u00c8\u0001\u0000"+
+ "\u0000\u0000\u00da\u00c9\u0001\u0000\u0000\u0000\u00da\u00ca\u0001\u0000"+
+ "\u0000\u0000\u00da\u00cc\u0001\u0000\u0000\u0000\u00da\u00ce\u0001\u0000"+
+ "\u0000\u0000\u00da\u00d0\u0001\u0000\u0000\u0000\u00da\u00d2\u0001\u0000"+
+ "\u0000\u0000\u00da\u00d4\u0001\u0000\u0000\u0000\u00da\u00d6\u0001\u0000"+
+ "\u0000\u0000\u00da\u00d8\u0001\u0000\u0000\u0000\u00db\u0007\u0001\u0000"+
+ "\u0000\u0000\u00dc\u00dd\u0005\u000e\u0000\u0000\u00dd\u00de\u0003|>\u0000"+
+ "\u00de\t\u0001\u0000\u0000\u0000\u00df\u00e0\u00036\u001b\u0000\u00e0"+
+ "\u000b\u0001\u0000\u0000\u0000\u00e1\u00e2\u0005\u000b\u0000\u0000\u00e2"+
+ "\u00e3\u0003\u000e\u0007\u0000\u00e3\r\u0001\u0000\u0000\u0000\u00e4\u00e9"+
+ "\u0003\u0010\b\u0000\u00e5\u00e6\u0005?\u0000\u0000\u00e6\u00e8\u0003"+
+ "\u0010\b\u0000\u00e7\u00e5\u0001\u0000\u0000\u0000\u00e8\u00eb\u0001\u0000"+
+ "\u0000\u0000\u00e9\u00e7\u0001\u0000\u0000\u0000\u00e9\u00ea\u0001\u0000"+
+ "\u0000\u0000\u00ea\u000f\u0001\u0000\u0000\u0000\u00eb\u00e9\u0001\u0000"+
+ "\u0000\u0000\u00ec\u00ed\u00030\u0018\u0000\u00ed\u00ee\u0005;\u0000\u0000"+
+ "\u00ee\u00f0\u0001\u0000\u0000\u0000\u00ef\u00ec\u0001\u0000\u0000\u0000"+
+ "\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000\u0000\u0000"+
+ "\u00f1\u00f2\u0003|>\u0000\u00f2\u0011\u0001\u0000\u0000\u0000\u00f3\u00f8"+
+ "\u0003\u0014\n\u0000\u00f4\u00f5\u0005?\u0000\u0000\u00f5\u00f7\u0003"+
+ "\u0014\n\u0000\u00f6\u00f4\u0001\u0000\u0000\u0000\u00f7\u00fa\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00f6\u0001\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000"+
+ "\u0000\u0000\u00f9\u0013\u0001\u0000\u0000\u0000\u00fa\u00f8\u0001\u0000"+
+ "\u0000\u0000\u00fb\u00fe\u00030\u0018\u0000\u00fc\u00fd\u0005;\u0000\u0000"+
+ "\u00fd\u00ff\u0003|>\u0000\u00fe\u00fc\u0001\u0000\u0000\u0000\u00fe\u00ff"+
+ "\u0001\u0000\u0000\u0000\u00ff\u0015\u0001\u0000\u0000\u0000\u0100\u0101"+
+ "\u0005\u0013\u0000\u0000\u0101\u0102\u0003\u001a\r\u0000\u0102\u0017\u0001"+
+ "\u0000\u0000\u0000\u0103\u0104\u0005\u0014\u0000\u0000\u0104\u0105\u0003"+
+ "\u001a\r\u0000\u0105\u0019\u0001\u0000\u0000\u0000\u0106\u010b\u0003\u001c"+
+ "\u000e\u0000\u0107\u0108\u0005?\u0000\u0000\u0108\u010a\u0003\u001c\u000e"+
+ "\u0000\u0109\u0107\u0001\u0000\u0000\u0000\u010a\u010d\u0001\u0000\u0000"+
+ "\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010b\u010c\u0001\u0000\u0000"+
+ "\u0000\u010c\u010f\u0001\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000"+
+ "\u0000\u010e\u0110\u0003&\u0013\u0000\u010f\u010e\u0001\u0000\u0000\u0000"+
+ "\u010f\u0110\u0001\u0000\u0000\u0000\u0110\u001b\u0001\u0000\u0000\u0000"+
+ "\u0111\u0112\u0003\u001e\u000f\u0000\u0112\u0113\u0005>\u0000\u0000\u0113"+
+ "\u0114\u0003\"\u0011\u0000\u0114\u011b\u0001\u0000\u0000\u0000\u0115\u0116"+
+ "\u0003\"\u0011\u0000\u0116\u0117\u0005=\u0000\u0000\u0117\u0118\u0003"+
+ " \u0010\u0000\u0118\u011b\u0001\u0000\u0000\u0000\u0119\u011b\u0003$\u0012"+
+ "\u0000\u011a\u0111\u0001\u0000\u0000\u0000\u011a\u0115\u0001\u0000\u0000"+
+ "\u0000\u011a\u0119\u0001\u0000\u0000\u0000\u011b\u001d\u0001\u0000\u0000"+
+ "\u0000\u011c\u011d\u0005l\u0000\u0000\u011d\u001f\u0001\u0000\u0000\u0000"+
+ "\u011e\u011f\u0005l\u0000\u0000\u011f!\u0001\u0000\u0000\u0000\u0120\u0121"+
+ "\u0005l\u0000\u0000\u0121#\u0001\u0000\u0000\u0000\u0122\u0123\u0007\u0000"+
+ "\u0000\u0000\u0123%\u0001\u0000\u0000\u0000\u0124\u0125\u0005k\u0000\u0000"+
+ "\u0125\u012a\u0005l\u0000\u0000\u0126\u0127\u0005?\u0000\u0000\u0127\u0129"+
+ "\u0005l\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0129\u012c\u0001"+
+ "\u0000\u0000\u0000\u012a\u0128\u0001\u0000\u0000\u0000\u012a\u012b\u0001"+
+ "\u0000\u0000\u0000\u012b\'\u0001\u0000\u0000\u0000\u012c\u012a\u0001\u0000"+
+ "\u0000\u0000\u012d\u012e\u0005\b\u0000\u0000\u012e\u012f\u0003\u000e\u0007"+
+ "\u0000\u012f)\u0001\u0000\u0000\u0000\u0130\u0132\u0005\r\u0000\u0000"+
+ "\u0131\u0133\u0003,\u0016\u0000\u0132\u0131\u0001\u0000\u0000\u0000\u0132"+
+ "\u0133\u0001\u0000\u0000\u0000\u0133\u0136\u0001\u0000\u0000\u0000\u0134"+
+ "\u0135\u0005<\u0000\u0000\u0135\u0137\u0003\u000e\u0007\u0000\u0136\u0134"+
+ "\u0001\u0000\u0000\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137+\u0001"+
+ "\u0000\u0000\u0000\u0138\u013d\u0003.\u0017\u0000\u0139\u013a\u0005?\u0000"+
+ "\u0000\u013a\u013c\u0003.\u0017\u0000\u013b\u0139\u0001\u0000\u0000\u0000"+
+ "\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000\u0000"+
+ "\u013d\u013e\u0001\u0000\u0000\u0000\u013e-\u0001\u0000\u0000\u0000\u013f"+
+ "\u013d\u0001\u0000\u0000\u0000\u0140\u0143\u0003\u0010\b\u0000\u0141\u0142"+
+ "\u0005\u000e\u0000\u0000\u0142\u0144\u0003|>\u0000\u0143\u0141\u0001\u0000"+
+ "\u0000\u0000\u0143\u0144\u0001\u0000\u0000\u0000\u0144/\u0001\u0000\u0000"+
+ "\u0000\u0145\u014a\u0003>\u001f\u0000\u0146\u0147\u0005A\u0000\u0000\u0147"+
+ "\u0149\u0003>\u001f\u0000\u0148\u0146\u0001\u0000\u0000\u0000\u0149\u014c"+
+ "\u0001\u0000\u0000\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a\u014b"+
+ "\u0001\u0000\u0000\u0000\u014b1\u0001\u0000\u0000\u0000\u014c\u014a\u0001"+
+ "\u0000\u0000\u0000\u014d\u0152\u00038\u001c\u0000\u014e\u014f\u0005A\u0000"+
+ "\u0000\u014f\u0151\u00038\u001c\u0000\u0150\u014e\u0001\u0000\u0000\u0000"+
+ "\u0151\u0154\u0001\u0000\u0000\u0000\u0152\u0150\u0001\u0000\u0000\u0000"+
+ "\u0152\u0153\u0001\u0000\u0000\u0000\u01533\u0001\u0000\u0000\u0000\u0154"+
+ "\u0152\u0001\u0000\u0000\u0000\u0155\u015a\u00032\u0019\u0000\u0156\u0157"+
+ "\u0005?\u0000\u0000\u0157\u0159\u00032\u0019\u0000\u0158\u0156\u0001\u0000"+
+ "\u0000\u0000\u0159\u015c\u0001\u0000\u0000\u0000\u015a\u0158\u0001\u0000"+
+ "\u0000\u0000\u015a\u015b\u0001\u0000\u0000\u0000\u015b5\u0001\u0000\u0000"+
+ "\u0000\u015c\u015a\u0001\u0000\u0000\u0000\u015d\u015e\u0007\u0001\u0000"+
+ "\u0000\u015e7\u0001\u0000\u0000\u0000\u015f\u0163\u0005\u0081\u0000\u0000"+
+ "\u0160\u0163\u0003:\u001d\u0000\u0161\u0163\u0003<\u001e\u0000\u0162\u015f"+
+ "\u0001\u0000\u0000\u0000\u0162\u0160\u0001\u0000\u0000\u0000\u0162\u0161"+
+ "\u0001\u0000\u0000\u0000\u01639\u0001\u0000\u0000\u0000\u0164\u0167\u0005"+
+ "M\u0000\u0000\u0165\u0167\u0005`\u0000\u0000\u0166\u0164\u0001\u0000\u0000"+
+ "\u0000\u0166\u0165\u0001\u0000\u0000\u0000\u0167;\u0001\u0000\u0000\u0000"+
+ "\u0168\u016b\u0005_\u0000\u0000\u0169\u016b\u0005a\u0000\u0000\u016a\u0168"+
+ "\u0001\u0000\u0000\u0000\u016a\u0169\u0001\u0000\u0000\u0000\u016b=\u0001"+
+ "\u0000\u0000\u0000\u016c\u0170\u00036\u001b\u0000\u016d\u0170\u0003:\u001d"+
+ "\u0000\u016e\u0170\u0003<\u001e\u0000\u016f\u016c\u0001\u0000\u0000\u0000"+
+ "\u016f\u016d\u0001\u0000\u0000\u0000\u016f\u016e\u0001\u0000\u0000\u0000"+
+ "\u0170?\u0001\u0000\u0000\u0000\u0171\u0172\u0005\n\u0000\u0000\u0172"+
+ "\u0173\u00056\u0000\u0000\u0173A\u0001\u0000\u0000\u0000\u0174\u0175\u0005"+
+ "\f\u0000\u0000\u0175\u017a\u0003D\"\u0000\u0176\u0177\u0005?\u0000\u0000"+
+ "\u0177\u0179\u0003D\"\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179"+
+ "\u017c\u0001\u0000\u0000\u0000\u017a\u0178\u0001\u0000\u0000\u0000\u017a"+
+ "\u017b\u0001\u0000\u0000\u0000\u017bC\u0001\u0000\u0000\u0000\u017c\u017a"+
+ "\u0001\u0000\u0000\u0000\u017d\u017f\u0003|>\u0000\u017e\u0180\u0007\u0002"+
+ "\u0000\u0000\u017f\u017e\u0001\u0000\u0000\u0000\u017f\u0180\u0001\u0000"+
+ "\u0000\u0000\u0180\u0183\u0001\u0000\u0000\u0000\u0181\u0182\u0005J\u0000"+
+ "\u0000\u0182\u0184\u0007\u0003\u0000\u0000\u0183\u0181\u0001\u0000\u0000"+
+ "\u0000\u0183\u0184\u0001\u0000\u0000\u0000\u0184E\u0001\u0000\u0000\u0000"+
+ "\u0185\u0186\u0005\u001d\u0000\u0000\u0186\u0187\u00034\u001a\u0000\u0187"+
+ "G\u0001\u0000\u0000\u0000\u0188\u0189\u0005\u001c\u0000\u0000\u0189\u018a"+
+ "\u00034\u001a\u0000\u018aI\u0001\u0000\u0000\u0000\u018b\u018c\u0005 "+
+ "\u0000\u0000\u018c\u0191\u0003L&\u0000\u018d\u018e\u0005?\u0000\u0000"+
+ "\u018e\u0190\u0003L&\u0000\u018f\u018d\u0001\u0000\u0000\u0000\u0190\u0193"+
+ "\u0001\u0000\u0000\u0000\u0191\u018f\u0001\u0000\u0000\u0000\u0191\u0192"+
+ "\u0001\u0000\u0000\u0000\u0192K\u0001\u0000\u0000\u0000\u0193\u0191\u0001"+
+ "\u0000\u0000\u0000\u0194\u0195\u00032\u0019\u0000\u0195\u0196\u00059\u0000"+
+ "\u0000\u0196\u0197\u00032\u0019\u0000\u0197M\u0001\u0000\u0000\u0000\u0198"+
+ "\u0199\u0005\u0007\u0000\u0000\u0199\u019a\u0003\u0086C\u0000\u019a\u019c"+
+ "\u0003\u009aM\u0000\u019b\u019d\u0003T*\u0000\u019c\u019b\u0001\u0000"+
+ "\u0000\u0000\u019c\u019d\u0001\u0000\u0000\u0000\u019dO\u0001\u0000\u0000"+
+ "\u0000\u019e\u019f\u0005\t\u0000\u0000\u019f\u01a0\u0003\u0086C\u0000"+
+ "\u01a0\u01a1\u0003\u009aM\u0000\u01a1Q\u0001\u0000\u0000\u0000\u01a2\u01a3"+
+ "\u0005\u001b\u0000\u0000\u01a3\u01a4\u00030\u0018\u0000\u01a4S\u0001\u0000"+
+ "\u0000\u0000\u01a5\u01aa\u0003V+\u0000\u01a6\u01a7\u0005?\u0000\u0000"+
+ "\u01a7\u01a9\u0003V+\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac"+
+ "\u0001\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab"+
+ "\u0001\u0000\u0000\u0000\u01abU\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001"+
+ "\u0000\u0000\u0000\u01ad\u01ae\u00036\u001b\u0000\u01ae\u01af\u0005;\u0000"+
+ "\u0000\u01af\u01b0\u0003\u0090H\u0000\u01b0W\u0001\u0000\u0000\u0000\u01b1"+
+ "\u01b2\u0005\u0006\u0000\u0000\u01b2\u01b3\u0003Z-\u0000\u01b3Y\u0001"+
+ "\u0000\u0000\u0000\u01b4\u01b5\u0005b\u0000\u0000\u01b5\u01b6\u0003\u0002"+
+ "\u0001\u0000\u01b6\u01b7\u0005c\u0000\u0000\u01b7[\u0001\u0000\u0000\u0000"+
+ "\u01b8\u01b9\u0005!\u0000\u0000\u01b9\u01ba\u0005\u0088\u0000\u0000\u01ba"+
+ "]\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005\u0005\u0000\u0000\u01bc\u01bf"+
+ "\u0005&\u0000\u0000\u01bd\u01be\u0005K\u0000\u0000\u01be\u01c0\u00032"+
+ "\u0019\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001\u0000"+
+ "\u0000\u0000\u01c0\u01ca\u0001\u0000\u0000\u0000\u01c1\u01c2\u0005P\u0000"+
+ "\u0000\u01c2\u01c7\u0003`0\u0000\u01c3\u01c4\u0005?\u0000\u0000\u01c4"+
+ "\u01c6\u0003`0\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c6\u01c9\u0001"+
+ "\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000\u0000\u01c7\u01c8\u0001"+
+ "\u0000\u0000\u0000\u01c8\u01cb\u0001\u0000\u0000\u0000\u01c9\u01c7\u0001"+
+ "\u0000\u0000\u0000\u01ca\u01c1\u0001\u0000\u0000\u0000\u01ca\u01cb\u0001"+
+ "\u0000\u0000\u0000\u01cb_\u0001\u0000\u0000\u0000\u01cc\u01cd\u00032\u0019"+
+ "\u0000\u01cd\u01ce\u0005;\u0000\u0000\u01ce\u01d0\u0001\u0000\u0000\u0000"+
+ "\u01cf\u01cc\u0001\u0000\u0000\u0000\u01cf\u01d0\u0001\u0000\u0000\u0000"+
+ "\u01d0\u01d1\u0001\u0000\u0000\u0000\u01d1\u01d2\u00032\u0019\u0000\u01d2"+
+ "a\u0001\u0000\u0000\u0000\u01d3\u01d4\u0005\u001a\u0000\u0000\u01d4\u01d5"+
+ "\u0003\u001c\u000e\u0000\u01d5\u01d6\u0005K\u0000\u0000\u01d6\u01d7\u0003"+
+ "4\u001a\u0000\u01d7c\u0001\u0000\u0000\u0000\u01d8\u01d9\u0005\u0010\u0000"+
+ "\u0000\u01d9\u01dc\u0003,\u0016\u0000\u01da\u01db\u0005<\u0000\u0000\u01db"+
+ "\u01dd\u0003\u000e\u0007\u0000\u01dc\u01da\u0001\u0000\u0000\u0000\u01dc"+
+ "\u01dd\u0001\u0000\u0000\u0000\u01dde\u0001\u0000\u0000\u0000\u01de\u01df"+
+ "\u0005\u0004\u0000\u0000\u01df\u01e2\u00030\u0018\u0000\u01e0\u01e1\u0005"+
+ "K\u0000\u0000\u01e1\u01e3\u00030\u0018\u0000\u01e2\u01e0\u0001\u0000\u0000"+
+ "\u0000\u01e2\u01e3\u0001\u0000\u0000\u0000\u01e3\u01e9\u0001\u0000\u0000"+
+ "\u0000\u01e4\u01e5\u00059\u0000\u0000\u01e5\u01e6\u00030\u0018\u0000\u01e6"+
+ "\u01e7\u0005?\u0000\u0000\u01e7\u01e8\u00030\u0018\u0000\u01e8\u01ea\u0001"+
+ "\u0000\u0000\u0000\u01e9\u01e4\u0001\u0000\u0000\u0000\u01e9\u01ea\u0001"+
+ "\u0000\u0000\u0000\u01eag\u0001\u0000\u0000\u0000\u01eb\u01ec\u0005\u001e"+
+ "\u0000\u0000\u01ec\u01ed\u00034\u001a\u0000\u01edi\u0001\u0000\u0000\u0000"+
+ "\u01ee\u01ef\u0005\u0015\u0000\u0000\u01ef\u01f0\u0003l6\u0000\u01f0k"+
+ "\u0001\u0000\u0000\u0000\u01f1\u01f3\u0003n7\u0000\u01f2\u01f1\u0001\u0000"+
+ "\u0000\u0000\u01f3\u01f4\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001\u0000"+
+ "\u0000\u0000\u01f4\u01f5\u0001\u0000\u0000\u0000\u01f5m\u0001\u0000\u0000"+
+ "\u0000\u01f6\u01f7\u0005d\u0000\u0000\u01f7\u01f8\u0003p8\u0000\u01f8"+
+ "\u01f9\u0005e\u0000\u0000\u01f9o\u0001\u0000\u0000\u0000\u01fa\u01fb\u0006"+
+ "8\uffff\uffff\u0000\u01fb\u01fc\u0003r9\u0000\u01fc\u0202\u0001\u0000"+
+ "\u0000\u0000\u01fd\u01fe\n\u0001\u0000\u0000\u01fe\u01ff\u00054\u0000"+
+ "\u0000\u01ff\u0201\u0003r9\u0000\u0200\u01fd\u0001\u0000\u0000\u0000\u0201"+
+ "\u0204\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000\u0202"+
+ "\u0203\u0001\u0000\u0000\u0000\u0203q\u0001\u0000\u0000\u0000\u0204\u0202"+
+ "\u0001\u0000\u0000\u0000\u0205\u020c\u0003(\u0014\u0000\u0206\u020c\u0003"+
+ "\b\u0004\u0000\u0207\u020c\u0003@ \u0000\u0208\u020c\u0003*\u0015\u0000"+
+ "\u0209\u020c\u0003B!\u0000\u020a\u020c\u0003N\'\u0000\u020b\u0205\u0001"+
+ "\u0000\u0000\u0000\u020b\u0206\u0001\u0000\u0000\u0000\u020b\u0207\u0001"+
+ "\u0000\u0000\u0000\u020b\u0208\u0001\u0000\u0000\u0000\u020b\u0209\u0001"+
+ "\u0000\u0000\u0000\u020b\u020a\u0001\u0000\u0000\u0000\u020cs\u0001\u0000"+
+ "\u0000\u0000\u020d\u020e\u0005\u001f\u0000\u0000\u020eu\u0001\u0000\u0000"+
+ "\u0000\u020f\u0210\u0005\u0011\u0000\u0000\u0210\u0211\u0003\u0090H\u0000"+
+ "\u0211\u0212\u0005K\u0000\u0000\u0212\u0213\u0003\u0012\t\u0000\u0213"+
+ "\u0214\u0005P\u0000\u0000\u0214\u0215\u0003>\u001f\u0000\u0215w\u0001"+
+ "\u0000\u0000\u0000\u0216\u0217\u0005\u000f\u0000\u0000\u0217\u0218\u0003"+
+ "\u0086C\u0000\u0218\u0219\u0005P\u0000\u0000\u0219\u021c\u0003>\u001f"+
+ "\u0000\u021a\u021b\u00059\u0000\u0000\u021b\u021d\u00030\u0018\u0000\u021c"+
+ "\u021a\u0001\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d"+
+ "y\u0001\u0000\u0000\u0000\u021e\u021f\u0005\u0012\u0000\u0000\u021f\u0221"+
+ "\u0003\u0096K\u0000\u0220\u0222\u0003\u0098L\u0000\u0221\u0220\u0001\u0000"+
+ "\u0000\u0000\u0221\u0222\u0001\u0000\u0000\u0000\u0222{\u0001\u0000\u0000"+
+ "\u0000\u0223\u0224\u0006>\uffff\uffff\u0000\u0224\u0225\u0005H\u0000\u0000"+
+ "\u0225\u0241\u0003|>\b\u0226\u0241\u0003\u0082A\u0000\u0227\u0241\u0003"+
+ "~?\u0000\u0228\u022a\u0003\u0082A\u0000\u0229\u022b\u0005H\u0000\u0000"+
+ "\u022a\u0229\u0001\u0000\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000"+
+ "\u022b\u022c\u0001\u0000\u0000\u0000\u022c\u022d\u0005D\u0000\u0000\u022d"+
+ "\u022e\u0005d\u0000\u0000\u022e\u0233\u0003\u0082A\u0000\u022f\u0230\u0005"+
+ "?\u0000\u0000\u0230\u0232\u0003\u0082A\u0000\u0231\u022f\u0001\u0000\u0000"+
+ "\u0000\u0232\u0235\u0001\u0000\u0000\u0000\u0233\u0231\u0001\u0000\u0000"+
+ "\u0000\u0233\u0234\u0001\u0000\u0000\u0000\u0234\u0236\u0001\u0000\u0000"+
+ "\u0000\u0235\u0233\u0001\u0000\u0000\u0000\u0236\u0237\u0005e\u0000\u0000"+
+ "\u0237\u0241\u0001\u0000\u0000\u0000\u0238\u0239\u0003\u0082A\u0000\u0239"+
+ "\u023b\u0005E\u0000\u0000\u023a\u023c\u0005H\u0000\u0000\u023b\u023a\u0001"+
+ "\u0000\u0000\u0000\u023b\u023c\u0001\u0000\u0000\u0000\u023c\u023d\u0001"+
+ "\u0000\u0000\u0000\u023d\u023e\u0005I\u0000\u0000\u023e\u0241\u0001\u0000"+
+ "\u0000\u0000\u023f\u0241\u0003\u0080@\u0000\u0240\u0223\u0001\u0000\u0000"+
+ "\u0000\u0240\u0226\u0001\u0000\u0000\u0000\u0240\u0227\u0001\u0000\u0000"+
+ "\u0000\u0240\u0228\u0001\u0000\u0000\u0000\u0240\u0238\u0001\u0000\u0000"+
+ "\u0000\u0240\u023f\u0001\u0000\u0000\u0000\u0241\u024a\u0001\u0000\u0000"+
+ "\u0000\u0242\u0243\n\u0005\u0000\u0000\u0243\u0244\u00058\u0000\u0000"+
+ "\u0244\u0249\u0003|>\u0006\u0245\u0246\n\u0004\u0000\u0000\u0246\u0247"+
+ "\u0005L\u0000\u0000\u0247\u0249\u0003|>\u0005\u0248\u0242\u0001\u0000"+
+ "\u0000\u0000\u0248\u0245\u0001\u0000\u0000\u0000\u0249\u024c\u0001\u0000"+
+ "\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024a\u024b\u0001\u0000"+
+ "\u0000\u0000\u024b}\u0001\u0000\u0000\u0000\u024c\u024a\u0001\u0000\u0000"+
+ "\u0000\u024d\u024f\u0003\u0082A\u0000\u024e\u0250\u0005H\u0000\u0000\u024f"+
+ "\u024e\u0001\u0000\u0000\u0000\u024f\u0250\u0001\u0000\u0000\u0000\u0250"+
+ "\u0251\u0001\u0000\u0000\u0000\u0251\u0252\u0005G\u0000\u0000\u0252\u0253"+
+ "\u0003\u009aM\u0000\u0253\u025c\u0001\u0000\u0000\u0000\u0254\u0256\u0003"+
+ "\u0082A\u0000\u0255\u0257\u0005H\u0000\u0000\u0256\u0255\u0001\u0000\u0000"+
+ "\u0000\u0256\u0257\u0001\u0000\u0000\u0000\u0257\u0258\u0001\u0000\u0000"+
+ "\u0000\u0258\u0259\u0005N\u0000\u0000\u0259\u025a\u0003\u009aM\u0000\u025a"+
+ "\u025c\u0001\u0000\u0000\u0000\u025b\u024d\u0001\u0000\u0000\u0000\u025b"+
+ "\u0254\u0001\u0000\u0000\u0000\u025c\u007f\u0001\u0000\u0000\u0000\u025d"+
+ "\u0260\u00030\u0018\u0000\u025e\u025f\u0005=\u0000\u0000\u025f\u0261\u0003"+
+ "\n\u0005\u0000\u0260\u025e\u0001\u0000\u0000\u0000\u0260\u0261\u0001\u0000"+
+ "\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000\u0262\u0263\u0005>\u0000"+
+ "\u0000\u0263\u0264\u0003\u0090H\u0000\u0264\u0081\u0001\u0000\u0000\u0000"+
+ "\u0265\u026b\u0003\u0084B\u0000\u0266\u0267\u0003\u0084B\u0000\u0267\u0268"+
+ "\u0003\u009cN\u0000\u0268\u0269\u0003\u0084B\u0000\u0269\u026b\u0001\u0000"+
+ "\u0000\u0000\u026a\u0265\u0001\u0000\u0000\u0000\u026a\u0266\u0001\u0000"+
+ "\u0000\u0000\u026b\u0083\u0001\u0000\u0000\u0000\u026c\u026d\u0006B\uffff"+
+ "\uffff\u0000\u026d\u0271\u0003\u0086C\u0000\u026e\u026f\u0007\u0004\u0000"+
+ "\u0000\u026f\u0271\u0003\u0084B\u0003\u0270\u026c\u0001\u0000\u0000\u0000"+
+ "\u0270\u026e\u0001\u0000\u0000\u0000\u0271\u027a\u0001\u0000\u0000\u0000"+
+ "\u0272\u0273\n\u0002\u0000\u0000\u0273\u0274\u0007\u0005\u0000\u0000\u0274"+
+ "\u0279\u0003\u0084B\u0003\u0275\u0276\n\u0001\u0000\u0000\u0276\u0277"+
+ "\u0007\u0004\u0000\u0000\u0277\u0279\u0003\u0084B\u0002\u0278\u0272\u0001"+
+ "\u0000\u0000\u0000\u0278\u0275\u0001\u0000\u0000\u0000\u0279\u027c\u0001"+
+ "\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027a\u027b\u0001"+
+ "\u0000\u0000\u0000\u027b\u0085\u0001\u0000\u0000\u0000\u027c\u027a\u0001"+
+ "\u0000\u0000\u0000\u027d\u027e\u0006C\uffff\uffff\u0000\u027e\u0286\u0003"+
+ "\u0090H\u0000\u027f\u0286\u00030\u0018\u0000\u0280\u0286\u0003\u0088D"+
+ "\u0000\u0281\u0282\u0005d\u0000\u0000\u0282\u0283\u0003|>\u0000\u0283"+
+ "\u0284\u0005e\u0000\u0000\u0284\u0286\u0001\u0000\u0000\u0000\u0285\u027d"+
+ "\u0001\u0000\u0000\u0000\u0285\u027f\u0001\u0000\u0000\u0000\u0285\u0280"+
+ "\u0001\u0000\u0000\u0000\u0285\u0281\u0001\u0000\u0000\u0000\u0286\u028c"+
+ "\u0001\u0000\u0000\u0000\u0287\u0288\n\u0001\u0000\u0000\u0288\u0289\u0005"+
+ "=\u0000\u0000\u0289\u028b\u0003\n\u0005\u0000\u028a\u0287\u0001\u0000"+
+ "\u0000\u0000\u028b\u028e\u0001\u0000\u0000\u0000\u028c\u028a\u0001\u0000"+
+ "\u0000\u0000\u028c\u028d\u0001\u0000\u0000\u0000\u028d\u0087\u0001\u0000"+
+ "\u0000\u0000\u028e\u028c\u0001\u0000\u0000\u0000\u028f\u0290\u0003\u008a"+
+ "E\u0000\u0290\u029e\u0005d\u0000\u0000\u0291\u029f\u0005Z\u0000\u0000"+
+ "\u0292\u0297\u0003|>\u0000\u0293\u0294\u0005?\u0000\u0000\u0294\u0296"+
+ "\u0003|>\u0000\u0295\u0293\u0001\u0000\u0000\u0000\u0296\u0299\u0001\u0000"+
+ "\u0000\u0000\u0297\u0295\u0001\u0000\u0000\u0000\u0297\u0298\u0001\u0000"+
+ "\u0000\u0000\u0298\u029c\u0001\u0000\u0000\u0000\u0299\u0297\u0001\u0000"+
+ "\u0000\u0000\u029a\u029b\u0005?\u0000\u0000\u029b\u029d\u0003\u008cF\u0000"+
+ "\u029c\u029a\u0001\u0000\u0000\u0000\u029c\u029d\u0001\u0000\u0000\u0000"+
+ "\u029d\u029f\u0001\u0000\u0000\u0000\u029e\u0291\u0001\u0000\u0000\u0000"+
+ "\u029e\u0292\u0001\u0000\u0000\u0000\u029e\u029f\u0001\u0000\u0000\u0000"+
+ "\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005e\u0000\u0000\u02a1"+
+ "\u0089\u0001\u0000\u0000\u0000\u02a2\u02a3\u0003>\u001f\u0000\u02a3\u008b"+
+ "\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005]\u0000\u0000\u02a5\u02aa\u0003"+
+ "\u008eG\u0000\u02a6\u02a7\u0005?\u0000\u0000\u02a7\u02a9\u0003\u008eG"+
+ "\u0000\u02a8\u02a6\u0001\u0000\u0000\u0000\u02a9\u02ac\u0001\u0000\u0000"+
+ "\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000"+
+ "\u0000\u02ab\u02ad\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000"+
+ "\u0000\u02ad\u02ae\u0005^\u0000\u0000\u02ae\u008d\u0001\u0000\u0000\u0000"+
+ "\u02af\u02b0\u0003\u009aM\u0000\u02b0\u02b1\u0005>\u0000\u0000\u02b1\u02b2"+
+ "\u0003\u0090H\u0000\u02b2\u008f\u0001\u0000\u0000\u0000\u02b3\u02de\u0005"+
+ "I\u0000\u0000\u02b4\u02b5\u0003\u0098L\u0000\u02b5\u02b6\u0005f\u0000"+
+ "\u0000\u02b6\u02de\u0001\u0000\u0000\u0000\u02b7\u02de\u0003\u0096K\u0000"+
+ "\u02b8\u02de\u0003\u0098L\u0000\u02b9\u02de\u0003\u0092I\u0000\u02ba\u02de"+
+ "\u0003:\u001d\u0000\u02bb\u02de\u0003\u009aM\u0000\u02bc\u02bd\u0005b"+
+ "\u0000\u0000\u02bd\u02c2\u0003\u0094J\u0000\u02be\u02bf\u0005?\u0000\u0000"+
+ "\u02bf\u02c1\u0003\u0094J\u0000\u02c0\u02be\u0001\u0000\u0000\u0000\u02c1"+
+ "\u02c4\u0001\u0000\u0000\u0000\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2"+
+ "\u02c3\u0001\u0000\u0000\u0000\u02c3\u02c5\u0001\u0000\u0000\u0000\u02c4"+
+ "\u02c2\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005c\u0000\u0000\u02c6\u02de"+
+ "\u0001\u0000\u0000\u0000\u02c7\u02c8\u0005b\u0000\u0000\u02c8\u02cd\u0003"+
+ "\u0092I\u0000\u02c9\u02ca\u0005?\u0000\u0000\u02ca\u02cc\u0003\u0092I"+
+ "\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cc\u02cf\u0001\u0000\u0000"+
+ "\u0000\u02cd\u02cb\u0001\u0000\u0000\u0000\u02cd\u02ce\u0001\u0000\u0000"+
+ "\u0000\u02ce\u02d0\u0001\u0000\u0000\u0000\u02cf\u02cd\u0001\u0000\u0000"+
+ "\u0000\u02d0\u02d1\u0005c\u0000\u0000\u02d1\u02de\u0001\u0000\u0000\u0000"+
+ "\u02d2\u02d3\u0005b\u0000\u0000\u02d3\u02d8\u0003\u009aM\u0000\u02d4\u02d5"+
+ "\u0005?\u0000\u0000\u02d5\u02d7\u0003\u009aM\u0000\u02d6\u02d4\u0001\u0000"+
+ "\u0000\u0000\u02d7\u02da\u0001\u0000\u0000\u0000\u02d8\u02d6\u0001\u0000"+
+ "\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000\u0000\u02d9\u02db\u0001\u0000"+
+ "\u0000\u0000\u02da\u02d8\u0001\u0000\u0000\u0000\u02db\u02dc\u0005c\u0000"+
+ "\u0000\u02dc\u02de\u0001\u0000\u0000\u0000\u02dd\u02b3\u0001\u0000\u0000"+
+ "\u0000\u02dd\u02b4\u0001\u0000\u0000\u0000\u02dd\u02b7\u0001\u0000\u0000"+
+ "\u0000\u02dd\u02b8\u0001\u0000\u0000\u0000\u02dd\u02b9\u0001\u0000\u0000"+
+ "\u0000\u02dd\u02ba\u0001\u0000\u0000\u0000\u02dd\u02bb\u0001\u0000\u0000"+
+ "\u0000\u02dd\u02bc\u0001\u0000\u0000\u0000\u02dd\u02c7\u0001\u0000\u0000"+
+ "\u0000\u02dd\u02d2\u0001\u0000\u0000\u0000\u02de\u0091\u0001\u0000\u0000"+
+ "\u0000\u02df\u02e0\u0007\u0006\u0000\u0000\u02e0\u0093\u0001\u0000\u0000"+
+ "\u0000\u02e1\u02e4\u0003\u0096K\u0000\u02e2\u02e4\u0003\u0098L\u0000\u02e3"+
+ "\u02e1\u0001\u0000\u0000\u0000\u02e3\u02e2\u0001\u0000\u0000\u0000\u02e4"+
+ "\u0095\u0001\u0000\u0000\u0000\u02e5\u02e7\u0007\u0004\u0000\u0000\u02e6"+
+ "\u02e5\u0001\u0000\u0000\u0000\u02e6\u02e7\u0001\u0000\u0000\u0000\u02e7"+
+ "\u02e8\u0001\u0000\u0000\u0000\u02e8\u02e9\u00057\u0000\u0000\u02e9\u0097"+
+ "\u0001\u0000\u0000\u0000\u02ea\u02ec\u0007\u0004\u0000\u0000\u02eb\u02ea"+
+ "\u0001\u0000\u0000\u0000\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec\u02ed"+
+ "\u0001\u0000\u0000\u0000\u02ed\u02ee\u00056\u0000\u0000\u02ee\u0099\u0001"+
+ "\u0000\u0000\u0000\u02ef\u02f0\u00055\u0000\u0000\u02f0\u009b\u0001\u0000"+
+ "\u0000\u0000\u02f1\u02f2\u0007\u0007\u0000\u0000\u02f2\u009d\u0001\u0000"+
+ "\u0000\u0000\u02f3\u02f4\u0007\b\u0000\u0000\u02f4\u02f5\u0005s\u0000"+
+ "\u0000\u02f5\u02f6\u0003\u00a0P\u0000\u02f6\u02f7\u0003\u00a2Q\u0000\u02f7"+
+ "\u009f\u0001\u0000\u0000\u0000\u02f8\u02f9\u0003\u001c\u000e\u0000\u02f9"+
+ "\u00a1\u0001\u0000\u0000\u0000\u02fa\u02fb\u0005K\u0000\u0000\u02fb\u0300"+
+ "\u0003\u00a4R\u0000\u02fc\u02fd\u0005?\u0000\u0000\u02fd\u02ff\u0003\u00a4"+
+ "R\u0000\u02fe\u02fc\u0001\u0000\u0000\u0000\u02ff\u0302\u0001\u0000\u0000"+
+ "\u0000\u0300\u02fe\u0001\u0000\u0000\u0000\u0300\u0301\u0001\u0000\u0000"+
+ "\u0000\u0301\u00a3\u0001\u0000\u0000\u0000\u0302\u0300\u0001\u0000\u0000"+
+ "\u0000\u0303\u0304\u0003\u0082A\u0000\u0304\u00a5\u0001\u0000\u0000\u0000"+
+ "D\u00b1\u00ba\u00da\u00e9\u00ef\u00f8\u00fe\u010b\u010f\u011a\u012a\u0132"+
+ "\u0136\u013d\u0143\u014a\u0152\u015a\u0162\u0166\u016a\u016f\u017a\u017f"+
+ "\u0183\u0191\u019c\u01aa\u01bf\u01c7\u01ca\u01cf\u01dc\u01e2\u01e9\u01f4"+
+ "\u0202\u020b\u021c\u0221\u022a\u0233\u023b\u0240\u0248\u024a\u024f\u0256"+
+ "\u025b\u0260\u026a\u0270\u0278\u027a\u0285\u028c\u0297\u029c\u029e\u02aa"+
+ "\u02c2\u02cd\u02d8\u02dd\u02e3\u02e6\u02eb\u0300";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
index 49d2fa9d47784..0cd51b1939b67 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
@@ -236,6 +236,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitSelectorString(EsqlBaseParser.SelectorStringContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
index bcd916c94f52d..570ffaa0b063e 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
@@ -146,6 +146,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitSelectorString(EsqlBaseParser.SelectorStringContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
index d681ce6b60a23..260a44ca332c1 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
@@ -201,6 +201,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitSelectorString(EsqlBaseParser.SelectorStringContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}.
+ * @param ctx the parse tree
+ */
+ void enterUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}.
+ * @param ctx the parse tree
+ */
+ void exitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx);
/**
* Enter a parse tree produced by {@link EsqlBaseParser#indexString}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
index cf9a47846ba83..aba575c6fa339 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
@@ -129,6 +129,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitSelectorString(EsqlBaseParser.SelectorStringContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx);
/**
* Visit a parse tree produced by {@link EsqlBaseParser#indexString}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java
index aeca4a1aac9c9..91b8606c40307 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java
@@ -58,10 +58,8 @@ protected static String quoteIdString(String unquotedString) {
public String visitClusterString(EsqlBaseParser.ClusterStringContext ctx) {
if (ctx == null) {
return null;
- } else if (ctx.UNQUOTED_SOURCE() != null) {
- return ctx.UNQUOTED_SOURCE().getText();
} else {
- return unquote(ctx.QUOTED_STRING().getText());
+ return ctx.UNQUOTED_SOURCE().getText();
}
}
@@ -78,10 +76,8 @@ public String visitIndexString(IndexStringContext ctx) {
public String visitSelectorString(EsqlBaseParser.SelectorStringContext ctx) {
if (ctx == null) {
return null;
- } else if (ctx.UNQUOTED_SOURCE() != null) {
- return ctx.UNQUOTED_SOURCE().getText();
} else {
- return unquote(ctx.QUOTED_STRING().getText());
+ return ctx.UNQUOTED_SOURCE().getText();
}
}
@@ -89,7 +85,7 @@ public String visitIndexPattern(List ctx) {
List patterns = new ArrayList<>(ctx.size());
Holder hasSeenStar = new Holder<>(false);
ctx.forEach(c -> {
- String indexPattern = visitIndexString(c.indexString());
+ String indexPattern = c.unquotedIndexString() != null ? c.unquotedIndexString().getText() : visitIndexString(c.indexString());
String clusterString = visitClusterString(c.clusterString());
String selectorString = visitSelectorString(c.selectorString());
// skip validating index on remote cluster, because the behavior of remote cluster is not consistent with local cluster
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java
index 8e594c96d84af..fd63c7a80ddf5 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java
@@ -80,18 +80,23 @@ public static String randomIndexPattern(Feature... features) {
index.insert(0, "-");
}
+ boolean requiresQuote = false;
var pattern = index.toString();
if (pattern.contains("|")) {
- pattern = quote(pattern);
+ requiresQuote = true;
}
- pattern = maybeQuote(pattern);
if (canAdd(Features.CROSS_CLUSTER, features)) {
- var cluster = maybeQuote(randomIdentifier());
- pattern = maybeQuote(cluster + ":" + pattern);
+ var cluster = randomIdentifier();
+ pattern = cluster + ":" + pattern;
} else if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled() && canAdd(Features.INDEX_SELECTOR, features)) {
- pattern = maybeQuote(pattern + "::" + randomFrom(IndexComponentSelector.values()).getKey());
+ pattern = pattern + "::" + randomFrom(IndexComponentSelector.values()).getKey();
}
+
+ if (requiresQuote) {
+ pattern = quote(pattern);
+ }
+
return pattern;
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index 173b79744d572..7e7c5b698d7f9 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -483,7 +483,13 @@ public void testStringAsIndexPattern() {
assertStringAsIndexPattern("`backtick`,``multiple`back``ticks```", command + " `backtick`, ``multiple`back``ticks```");
assertStringAsIndexPattern("test,metadata,metaata,.metadata", command + " test,\"metadata\", metaata, .metadata");
assertStringAsIndexPattern(".dot", command + " .dot");
- assertStringAsIndexPattern("cluster:index|pattern", command + " cluster:\"index|pattern\"");
+ String lineNumber = command.equals("FROM") ? "line 1:14: " : "line 1:12: ";
+ expectErrorWithLineNumber(
+ command + " cluster:\"index|pattern\"",
+ " cluster:\"index|pattern\"",
+ lineNumber,
+ "mismatched input '\"index|pattern\"' expecting UNQUOTED_SOURCE"
+ );
assertStringAsIndexPattern("*:index|pattern", command + " \"*:index|pattern\"");
clusterAndIndexAsIndexPattern(command, "cluster:index");
clusterAndIndexAsIndexPattern(command, "cluster:.index");
@@ -496,13 +502,37 @@ public void testStringAsIndexPattern() {
if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled()) {
assertStringAsIndexPattern("foo::data", command + " foo::data");
assertStringAsIndexPattern("foo::failures", command + " foo::failures");
- assertStringAsIndexPattern("cluster:foo::failures", command + " cluster:\"foo::failures\"");
- assertStringAsIndexPattern("*,-foo::data", command + " *, \"-foo\"::data");
+ expectErrorWithLineNumber(
+ command + " cluster:\"foo::data\"",
+ " cluster:\"foo::data\"",
+ lineNumber,
+ "mismatched input '\"foo::data\"' expecting UNQUOTED_SOURCE"
+ );
+ expectErrorWithLineNumber(
+ command + " cluster:\"foo::failures\"",
+ " cluster:\"foo::failures\"",
+ lineNumber,
+ "mismatched input '\"foo::failures\"' expecting UNQUOTED_SOURCE"
+ );
+ lineNumber = command.equals("FROM") ? "line 1:15: " : "line 1:13: ";
+ expectErrorWithLineNumber(
+ command + " *, \"-foo\"::data",
+ " *, \"-foo\"::data",
+ lineNumber,
+ "mismatched input '::' expecting {, '|', ',', 'metadata'}"
+ );
assertStringAsIndexPattern("*,-foo::data", command + " *, \"-foo::data\"");
assertStringAsIndexPattern("*::data", command + " *::data");
+ lineNumber = command.equals("FROM") ? "line 1:79: " : "line 1:77: ";
+ expectErrorWithLineNumber(
+ command + " \"::data,\"::failures",
+ " \"::data,\"::failures",
+ lineNumber,
+ "mismatched input '::' expecting {, '|', ',', 'metadata'}"
+ );
assertStringAsIndexPattern(
"::data,::failures",
- command + " ::data, \"\"::failures"
+ command + " ::data, \"::failures\""
);
}
}
@@ -595,8 +625,19 @@ public void testInvalidCharacterInIndexPattern() {
expectDoubleColonErrorWithLineNumber(command, "cluster:foo::data", parseLineNumber + 11);
expectDoubleColonErrorWithLineNumber(command, "cluster:foo::failures", parseLineNumber + 11);
- expectDoubleColonErrorWithLineNumber(command, "cluster:\"foo\"::data", parseLineNumber + 13);
- expectDoubleColonErrorWithLineNumber(command, "cluster:\"foo\"::failures", parseLineNumber + 13);
+ // Index pattern cannot be quoted if cluster string is present.
+ expectErrorWithLineNumber(
+ command,
+ "cluster:\"foo\"::data",
+ "line 1:14: ",
+ "mismatched input '\"foo\"' expecting UNQUOTED_SOURCE"
+ );
+ expectErrorWithLineNumber(
+ command,
+ "cluster:\"foo\"::failures",
+ "line 1:14: ",
+ "mismatched input '\"foo\"' expecting UNQUOTED_SOURCE"
+ );
// TODO: Edge case that will be invalidated in follow up (https://github.com/elastic/elasticsearch/issues/122651)
// expectDoubleColonErrorWithLineNumber(command, "\"cluster:foo\"::data", parseLineNumber + 13);
@@ -641,8 +682,12 @@ public void testInvalidCharacterInIndexPattern() {
"Invalid usage of :: separator"
);
- // TODO: Edge case that will be invalidated in follow up (https://github.com/elastic/elasticsearch/issues/122651)
- expectDoubleColonErrorWithLineNumber(command, "cluster:\"index,index2\"::failures", parseLineNumber + 22);
+ expectErrorWithLineNumber(
+ command,
+ "cluster:\"index,index2\"::failures",
+ "line 1:14: ",
+ "mismatched input '\"index,index2\"' expecting UNQUOTED_SOURCE"
+ );
}
}
@@ -669,12 +714,11 @@ public void testInvalidCharacterInIndexPattern() {
"-index",
"must not start with '_', '-', or '+'"
);
- expectInvalidIndexNameErrorWithLineNumber(
+ expectErrorWithLineNumber(
command,
"indexpattern, \"--index\"::data",
- lineNumber,
- "-index",
- "must not start with '_', '-', or '+'"
+ "line 1:29: ",
+ "mismatched input '::' expecting {, '|', ',', 'metadata'}"
);
expectInvalidIndexNameErrorWithLineNumber(
command,
@@ -709,7 +753,12 @@ public void testInvalidCharacterInIndexPattern() {
clustersAndIndices(command, "*", "-<--logstash-{now/M{yyyy.MM}}>::data");
clustersAndIndices(command, "index*", "-<--logstash#-{now/M{yyyy.MM}}>::data");
// Throw on invalid date math
- expectDateMathErrorWithLineNumber(command, "*, \"-<-logstash-{now/D}>\"::data", lineNumber, dateMathError);
+ expectDateMathErrorWithLineNumber(
+ command,
+ "*, \"-<-logstash-{now/D}>\"::data",
+ "line 1:31: ",
+ "mismatched input '::' expecting {, '|', ',', 'metadata'}"
+ );
expectDateMathErrorWithLineNumber(command, "*, -<-logstash-{now/D}>::data", lineNumber, dateMathError);
// Check that invalid selectors throw (they're resolved first in /_search, and always validated)
expectInvalidIndexNameErrorWithLineNumber(
@@ -2450,7 +2499,7 @@ public void testInvalidAlias() {
}
public void testInvalidRemoteClusterPattern() {
- expectError("from \"rem:ote\":index", "cluster string [rem:ote] must not contain ':'");
+ expectError("from \"rem:ote\":index", "mismatched input ':' expecting {, '|', ',', 'metadata'}");
}
private LogicalPlan unresolvedRelation(String index) {
@@ -3174,7 +3223,7 @@ public void testInvalidJoinPatterns() {
joinPattern = unquoteIndexPattern(joinPattern);
expectError(
"FROM " + randomIndexPatterns(without(CROSS_CLUSTER)) + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(),
- "extraneous input ':' expecting {QUOTED_STRING, UNQUOTED_SOURCE}"
+ "extraneous input ':' expecting UNQUOTED_SOURCE"
);
}
{
From 2cabfcc3fc3edd22196391fcbe0c8a6920149078 Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Wed, 4 Jun 2025 22:05:50 +0100
Subject: [PATCH 3/8] Auto generate parser files
---
.../xpack/esql/parser/EsqlBaseParser.interp | 2 +-
.../xpack/esql/parser/EsqlBaseParser.java | 898 +++++++++---------
2 files changed, 456 insertions(+), 444 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
index dc247284f8232..70c8cdf8dcd0a 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
@@ -369,4 +369,4 @@ joinPredicate
atn:
-[4, 1, 139, 774, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 176, 8, 1, 10, 1, 12, 1, 179, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 187, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 219, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 232, 8, 7, 10, 7, 12, 7, 235, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 255, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 266, 8, 13, 10, 13, 12, 13, 269, 9, 13, 1, 13, 3, 13, 272, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 283, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 297, 8, 19, 10, 19, 12, 19, 300, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 307, 8, 21, 1, 21, 1, 21, 3, 21, 311, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 316, 8, 22, 10, 22, 12, 22, 319, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 324, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 329, 8, 24, 10, 24, 12, 24, 332, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 337, 8, 25, 10, 25, 12, 25, 340, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 345, 8, 26, 10, 26, 12, 26, 348, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 355, 8, 28, 1, 29, 1, 29, 3, 29, 359, 8, 29, 1, 30, 1, 30, 3, 30, 363, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 368, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 377, 8, 33, 10, 33, 12, 33, 380, 9, 33, 1, 34, 1, 34, 3, 34, 384, 8, 34, 1, 34, 1, 34, 3, 34, 388, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 400, 8, 37, 10, 37, 12, 37, 403, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 413, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 5, 42, 425, 8, 42, 10, 42, 12, 42, 428, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 454, 8, 47, 10, 47, 12, 47, 457, 9, 47, 3, 47, 459, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 464, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 477, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 483, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 490, 8, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 499, 8, 54, 11, 54, 12, 54, 500, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 513, 8, 56, 10, 56, 12, 56, 516, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 524, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 541, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 546, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 555, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 562, 8, 62, 10, 62, 12, 62, 565, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 572, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 577, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 585, 8, 62, 10, 62, 12, 62, 588, 9, 62, 1, 63, 1, 63, 3, 63, 592, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 599, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 604, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 609, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 619, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 625, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 633, 8, 66, 10, 66, 12, 66, 636, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 646, 8, 67, 1, 67, 1, 67, 1, 67, 5, 67, 651, 8, 67, 10, 67, 12, 67, 654, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 662, 8, 68, 10, 68, 12, 68, 665, 9, 68, 1, 68, 1, 68, 3, 68, 669, 8, 68, 3, 68, 671, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 681, 8, 70, 10, 70, 12, 70, 684, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 705, 8, 72, 10, 72, 12, 72, 708, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 716, 8, 72, 10, 72, 12, 72, 719, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 727, 8, 72, 10, 72, 12, 72, 730, 9, 72, 1, 72, 1, 72, 3, 72, 734, 8, 72, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 740, 8, 74, 1, 75, 3, 75, 743, 8, 75, 1, 75, 1, 75, 1, 76, 3, 76, 748, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 767, 8, 81, 10, 81, 12, 81, 770, 9, 81, 1, 82, 1, 82, 1, 82, 0, 5, 2, 112, 124, 132, 134, 83, 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, 0, 9, 2, 0, 53, 53, 108, 108, 1, 0, 102, 103, 2, 0, 58, 58, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 88, 89, 1, 0, 90, 92, 2, 0, 66, 66, 79, 79, 2, 0, 81, 81, 83, 87, 2, 0, 22, 22, 24, 25, 803, 0, 166, 1, 0, 0, 0, 2, 169, 1, 0, 0, 0, 4, 186, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 8, 220, 1, 0, 0, 0, 10, 223, 1, 0, 0, 0, 12, 225, 1, 0, 0, 0, 14, 228, 1, 0, 0, 0, 16, 239, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 251, 1, 0, 0, 0, 22, 256, 1, 0, 0, 0, 24, 259, 1, 0, 0, 0, 26, 262, 1, 0, 0, 0, 28, 282, 1, 0, 0, 0, 30, 284, 1, 0, 0, 0, 32, 286, 1, 0, 0, 0, 34, 288, 1, 0, 0, 0, 36, 290, 1, 0, 0, 0, 38, 292, 1, 0, 0, 0, 40, 301, 1, 0, 0, 0, 42, 304, 1, 0, 0, 0, 44, 312, 1, 0, 0, 0, 46, 320, 1, 0, 0, 0, 48, 325, 1, 0, 0, 0, 50, 333, 1, 0, 0, 0, 52, 341, 1, 0, 0, 0, 54, 349, 1, 0, 0, 0, 56, 354, 1, 0, 0, 0, 58, 358, 1, 0, 0, 0, 60, 362, 1, 0, 0, 0, 62, 367, 1, 0, 0, 0, 64, 369, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 381, 1, 0, 0, 0, 70, 389, 1, 0, 0, 0, 72, 392, 1, 0, 0, 0, 74, 395, 1, 0, 0, 0, 76, 404, 1, 0, 0, 0, 78, 408, 1, 0, 0, 0, 80, 414, 1, 0, 0, 0, 82, 418, 1, 0, 0, 0, 84, 421, 1, 0, 0, 0, 86, 429, 1, 0, 0, 0, 88, 433, 1, 0, 0, 0, 90, 436, 1, 0, 0, 0, 92, 440, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 463, 1, 0, 0, 0, 98, 467, 1, 0, 0, 0, 100, 472, 1, 0, 0, 0, 102, 478, 1, 0, 0, 0, 104, 491, 1, 0, 0, 0, 106, 494, 1, 0, 0, 0, 108, 498, 1, 0, 0, 0, 110, 502, 1, 0, 0, 0, 112, 506, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 527, 1, 0, 0, 0, 120, 534, 1, 0, 0, 0, 122, 542, 1, 0, 0, 0, 124, 576, 1, 0, 0, 0, 126, 603, 1, 0, 0, 0, 128, 605, 1, 0, 0, 0, 130, 618, 1, 0, 0, 0, 132, 624, 1, 0, 0, 0, 134, 645, 1, 0, 0, 0, 136, 655, 1, 0, 0, 0, 138, 674, 1, 0, 0, 0, 140, 676, 1, 0, 0, 0, 142, 687, 1, 0, 0, 0, 144, 733, 1, 0, 0, 0, 146, 735, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 742, 1, 0, 0, 0, 152, 747, 1, 0, 0, 0, 154, 751, 1, 0, 0, 0, 156, 753, 1, 0, 0, 0, 158, 755, 1, 0, 0, 0, 160, 760, 1, 0, 0, 0, 162, 762, 1, 0, 0, 0, 164, 771, 1, 0, 0, 0, 166, 167, 3, 2, 1, 0, 167, 168, 5, 0, 0, 1, 168, 1, 1, 0, 0, 0, 169, 170, 6, 1, -1, 0, 170, 171, 3, 4, 2, 0, 171, 177, 1, 0, 0, 0, 172, 173, 10, 1, 0, 0, 173, 174, 5, 52, 0, 0, 174, 176, 3, 6, 3, 0, 175, 172, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 187, 3, 88, 44, 0, 181, 187, 3, 22, 11, 0, 182, 187, 3, 12, 6, 0, 183, 187, 3, 92, 46, 0, 184, 185, 4, 2, 1, 0, 185, 187, 3, 24, 12, 0, 186, 180, 1, 0, 0, 0, 186, 181, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 183, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 5, 1, 0, 0, 0, 188, 219, 3, 40, 20, 0, 189, 219, 3, 8, 4, 0, 190, 219, 3, 70, 35, 0, 191, 219, 3, 64, 32, 0, 192, 219, 3, 42, 21, 0, 193, 219, 3, 66, 33, 0, 194, 219, 3, 72, 36, 0, 195, 219, 3, 74, 37, 0, 196, 219, 3, 78, 39, 0, 197, 219, 3, 80, 40, 0, 198, 219, 3, 94, 47, 0, 199, 219, 3, 82, 41, 0, 200, 219, 3, 158, 79, 0, 201, 219, 3, 102, 51, 0, 202, 203, 4, 3, 2, 0, 203, 219, 3, 100, 50, 0, 204, 205, 4, 3, 3, 0, 205, 219, 3, 98, 49, 0, 206, 207, 4, 3, 4, 0, 207, 219, 3, 120, 60, 0, 208, 209, 4, 3, 5, 0, 209, 219, 3, 104, 52, 0, 210, 211, 4, 3, 6, 0, 211, 219, 3, 106, 53, 0, 212, 213, 4, 3, 7, 0, 213, 219, 3, 118, 59, 0, 214, 215, 4, 3, 8, 0, 215, 219, 3, 116, 58, 0, 216, 217, 4, 3, 9, 0, 217, 219, 3, 122, 61, 0, 218, 188, 1, 0, 0, 0, 218, 189, 1, 0, 0, 0, 218, 190, 1, 0, 0, 0, 218, 191, 1, 0, 0, 0, 218, 192, 1, 0, 0, 0, 218, 193, 1, 0, 0, 0, 218, 194, 1, 0, 0, 0, 218, 195, 1, 0, 0, 0, 218, 196, 1, 0, 0, 0, 218, 197, 1, 0, 0, 0, 218, 198, 1, 0, 0, 0, 218, 199, 1, 0, 0, 0, 218, 200, 1, 0, 0, 0, 218, 201, 1, 0, 0, 0, 218, 202, 1, 0, 0, 0, 218, 204, 1, 0, 0, 0, 218, 206, 1, 0, 0, 0, 218, 208, 1, 0, 0, 0, 218, 210, 1, 0, 0, 0, 218, 212, 1, 0, 0, 0, 218, 214, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 7, 1, 0, 0, 0, 220, 221, 5, 14, 0, 0, 221, 222, 3, 124, 62, 0, 222, 9, 1, 0, 0, 0, 223, 224, 3, 54, 27, 0, 224, 11, 1, 0, 0, 0, 225, 226, 5, 11, 0, 0, 226, 227, 3, 14, 7, 0, 227, 13, 1, 0, 0, 0, 228, 233, 3, 16, 8, 0, 229, 230, 5, 63, 0, 0, 230, 232, 3, 16, 8, 0, 231, 229, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 15, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 48, 24, 0, 237, 238, 5, 59, 0, 0, 238, 240, 1, 0, 0, 0, 239, 236, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 124, 62, 0, 242, 17, 1, 0, 0, 0, 243, 248, 3, 20, 10, 0, 244, 245, 5, 63, 0, 0, 245, 247, 3, 20, 10, 0, 246, 244, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 19, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 254, 3, 48, 24, 0, 252, 253, 5, 59, 0, 0, 253, 255, 3, 124, 62, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 21, 1, 0, 0, 0, 256, 257, 5, 19, 0, 0, 257, 258, 3, 26, 13, 0, 258, 23, 1, 0, 0, 0, 259, 260, 5, 20, 0, 0, 260, 261, 3, 26, 13, 0, 261, 25, 1, 0, 0, 0, 262, 267, 3, 28, 14, 0, 263, 264, 5, 63, 0, 0, 264, 266, 3, 28, 14, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 272, 3, 38, 19, 0, 271, 270, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 27, 1, 0, 0, 0, 273, 274, 3, 30, 15, 0, 274, 275, 5, 62, 0, 0, 275, 276, 3, 34, 17, 0, 276, 283, 1, 0, 0, 0, 277, 278, 3, 34, 17, 0, 278, 279, 5, 61, 0, 0, 279, 280, 3, 32, 16, 0, 280, 283, 1, 0, 0, 0, 281, 283, 3, 36, 18, 0, 282, 273, 1, 0, 0, 0, 282, 277, 1, 0, 0, 0, 282, 281, 1, 0, 0, 0, 283, 29, 1, 0, 0, 0, 284, 285, 5, 108, 0, 0, 285, 31, 1, 0, 0, 0, 286, 287, 5, 108, 0, 0, 287, 33, 1, 0, 0, 0, 288, 289, 5, 108, 0, 0, 289, 35, 1, 0, 0, 0, 290, 291, 7, 0, 0, 0, 291, 37, 1, 0, 0, 0, 292, 293, 5, 107, 0, 0, 293, 298, 5, 108, 0, 0, 294, 295, 5, 63, 0, 0, 295, 297, 5, 108, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 39, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 303, 3, 14, 7, 0, 303, 41, 1, 0, 0, 0, 304, 306, 5, 13, 0, 0, 305, 307, 3, 44, 22, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 60, 0, 0, 309, 311, 3, 14, 7, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 43, 1, 0, 0, 0, 312, 317, 3, 46, 23, 0, 313, 314, 5, 63, 0, 0, 314, 316, 3, 46, 23, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 45, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 323, 3, 16, 8, 0, 321, 322, 5, 14, 0, 0, 322, 324, 3, 124, 62, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 330, 3, 62, 31, 0, 326, 327, 5, 65, 0, 0, 327, 329, 3, 62, 31, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 49, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 338, 3, 56, 28, 0, 334, 335, 5, 65, 0, 0, 335, 337, 3, 56, 28, 0, 336, 334, 1, 0, 0, 0, 337, 340, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 51, 1, 0, 0, 0, 340, 338, 1, 0, 0, 0, 341, 346, 3, 50, 25, 0, 342, 343, 5, 63, 0, 0, 343, 345, 3, 50, 25, 0, 344, 342, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 53, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 350, 7, 1, 0, 0, 350, 55, 1, 0, 0, 0, 351, 355, 5, 129, 0, 0, 352, 355, 3, 58, 29, 0, 353, 355, 3, 60, 30, 0, 354, 351, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 353, 1, 0, 0, 0, 355, 57, 1, 0, 0, 0, 356, 359, 5, 77, 0, 0, 357, 359, 5, 96, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 59, 1, 0, 0, 0, 360, 363, 5, 95, 0, 0, 361, 363, 5, 97, 0, 0, 362, 360, 1, 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 61, 1, 0, 0, 0, 364, 368, 3, 54, 27, 0, 365, 368, 3, 58, 29, 0, 366, 368, 3, 60, 30, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 63, 1, 0, 0, 0, 369, 370, 5, 10, 0, 0, 370, 371, 5, 54, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 12, 0, 0, 373, 378, 3, 68, 34, 0, 374, 375, 5, 63, 0, 0, 375, 377, 3, 68, 34, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 67, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 383, 3, 124, 62, 0, 382, 384, 7, 2, 0, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 386, 5, 74, 0, 0, 386, 388, 7, 3, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 69, 1, 0, 0, 0, 389, 390, 5, 29, 0, 0, 390, 391, 3, 52, 26, 0, 391, 71, 1, 0, 0, 0, 392, 393, 5, 28, 0, 0, 393, 394, 3, 52, 26, 0, 394, 73, 1, 0, 0, 0, 395, 396, 5, 32, 0, 0, 396, 401, 3, 76, 38, 0, 397, 398, 5, 63, 0, 0, 398, 400, 3, 76, 38, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 75, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 57, 0, 0, 406, 407, 3, 50, 25, 0, 407, 77, 1, 0, 0, 0, 408, 409, 5, 7, 0, 0, 409, 410, 3, 134, 67, 0, 410, 412, 3, 154, 77, 0, 411, 413, 3, 84, 42, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 79, 1, 0, 0, 0, 414, 415, 5, 9, 0, 0, 415, 416, 3, 134, 67, 0, 416, 417, 3, 154, 77, 0, 417, 81, 1, 0, 0, 0, 418, 419, 5, 27, 0, 0, 419, 420, 3, 48, 24, 0, 420, 83, 1, 0, 0, 0, 421, 426, 3, 86, 43, 0, 422, 423, 5, 63, 0, 0, 423, 425, 3, 86, 43, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 85, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 3, 54, 27, 0, 430, 431, 5, 59, 0, 0, 431, 432, 3, 144, 72, 0, 432, 87, 1, 0, 0, 0, 433, 434, 5, 6, 0, 0, 434, 435, 3, 90, 45, 0, 435, 89, 1, 0, 0, 0, 436, 437, 5, 98, 0, 0, 437, 438, 3, 2, 1, 0, 438, 439, 5, 99, 0, 0, 439, 91, 1, 0, 0, 0, 440, 441, 5, 33, 0, 0, 441, 442, 5, 136, 0, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, 444, 447, 5, 38, 0, 0, 445, 446, 5, 75, 0, 0, 446, 448, 3, 50, 25, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 458, 1, 0, 0, 0, 449, 450, 5, 80, 0, 0, 450, 455, 3, 96, 48, 0, 451, 452, 5, 63, 0, 0, 452, 454, 3, 96, 48, 0, 453, 451, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 449, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 95, 1, 0, 0, 0, 460, 461, 3, 50, 25, 0, 461, 462, 5, 59, 0, 0, 462, 464, 1, 0, 0, 0, 463, 460, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 3, 50, 25, 0, 466, 97, 1, 0, 0, 0, 467, 468, 5, 26, 0, 0, 468, 469, 3, 28, 14, 0, 469, 470, 5, 75, 0, 0, 470, 471, 3, 52, 26, 0, 471, 99, 1, 0, 0, 0, 472, 473, 5, 16, 0, 0, 473, 476, 3, 44, 22, 0, 474, 475, 5, 60, 0, 0, 475, 477, 3, 14, 7, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 101, 1, 0, 0, 0, 478, 479, 5, 4, 0, 0, 479, 482, 3, 48, 24, 0, 480, 481, 5, 75, 0, 0, 481, 483, 3, 48, 24, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 489, 1, 0, 0, 0, 484, 485, 5, 57, 0, 0, 485, 486, 3, 48, 24, 0, 486, 487, 5, 63, 0, 0, 487, 488, 3, 48, 24, 0, 488, 490, 1, 0, 0, 0, 489, 484, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 103, 1, 0, 0, 0, 491, 492, 5, 30, 0, 0, 492, 493, 3, 52, 26, 0, 493, 105, 1, 0, 0, 0, 494, 495, 5, 21, 0, 0, 495, 496, 3, 108, 54, 0, 496, 107, 1, 0, 0, 0, 497, 499, 3, 110, 55, 0, 498, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 109, 1, 0, 0, 0, 502, 503, 5, 100, 0, 0, 503, 504, 3, 112, 56, 0, 504, 505, 5, 101, 0, 0, 505, 111, 1, 0, 0, 0, 506, 507, 6, 56, -1, 0, 507, 508, 3, 114, 57, 0, 508, 514, 1, 0, 0, 0, 509, 510, 10, 1, 0, 0, 510, 511, 5, 52, 0, 0, 511, 513, 3, 114, 57, 0, 512, 509, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 113, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 524, 3, 40, 20, 0, 518, 524, 3, 8, 4, 0, 519, 524, 3, 64, 32, 0, 520, 524, 3, 42, 21, 0, 521, 524, 3, 66, 33, 0, 522, 524, 3, 78, 39, 0, 523, 517, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 523, 519, 1, 0, 0, 0, 523, 520, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 522, 1, 0, 0, 0, 524, 115, 1, 0, 0, 0, 525, 526, 5, 31, 0, 0, 526, 117, 1, 0, 0, 0, 527, 528, 5, 17, 0, 0, 528, 529, 3, 144, 72, 0, 529, 530, 5, 75, 0, 0, 530, 531, 3, 18, 9, 0, 531, 532, 5, 80, 0, 0, 532, 533, 3, 62, 31, 0, 533, 119, 1, 0, 0, 0, 534, 535, 5, 15, 0, 0, 535, 536, 3, 134, 67, 0, 536, 537, 5, 80, 0, 0, 537, 540, 3, 62, 31, 0, 538, 539, 5, 57, 0, 0, 539, 541, 3, 48, 24, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 121, 1, 0, 0, 0, 542, 543, 5, 18, 0, 0, 543, 545, 3, 150, 75, 0, 544, 546, 3, 152, 76, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 123, 1, 0, 0, 0, 547, 548, 6, 62, -1, 0, 548, 549, 5, 72, 0, 0, 549, 577, 3, 124, 62, 8, 550, 577, 3, 130, 65, 0, 551, 577, 3, 126, 63, 0, 552, 554, 3, 130, 65, 0, 553, 555, 5, 72, 0, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 5, 68, 0, 0, 557, 558, 5, 100, 0, 0, 558, 563, 3, 130, 65, 0, 559, 560, 5, 63, 0, 0, 560, 562, 3, 130, 65, 0, 561, 559, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 566, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 567, 5, 101, 0, 0, 567, 577, 1, 0, 0, 0, 568, 569, 3, 130, 65, 0, 569, 571, 5, 69, 0, 0, 570, 572, 5, 72, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 5, 73, 0, 0, 574, 577, 1, 0, 0, 0, 575, 577, 3, 128, 64, 0, 576, 547, 1, 0, 0, 0, 576, 550, 1, 0, 0, 0, 576, 551, 1, 0, 0, 0, 576, 552, 1, 0, 0, 0, 576, 568, 1, 0, 0, 0, 576, 575, 1, 0, 0, 0, 577, 586, 1, 0, 0, 0, 578, 579, 10, 5, 0, 0, 579, 580, 5, 56, 0, 0, 580, 585, 3, 124, 62, 6, 581, 582, 10, 4, 0, 0, 582, 583, 5, 76, 0, 0, 583, 585, 3, 124, 62, 5, 584, 578, 1, 0, 0, 0, 584, 581, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 125, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 591, 3, 130, 65, 0, 590, 592, 5, 72, 0, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 71, 0, 0, 594, 595, 3, 154, 77, 0, 595, 604, 1, 0, 0, 0, 596, 598, 3, 130, 65, 0, 597, 599, 5, 72, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 5, 78, 0, 0, 601, 602, 3, 154, 77, 0, 602, 604, 1, 0, 0, 0, 603, 589, 1, 0, 0, 0, 603, 596, 1, 0, 0, 0, 604, 127, 1, 0, 0, 0, 605, 608, 3, 48, 24, 0, 606, 607, 5, 61, 0, 0, 607, 609, 3, 10, 5, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 62, 0, 0, 611, 612, 3, 144, 72, 0, 612, 129, 1, 0, 0, 0, 613, 619, 3, 132, 66, 0, 614, 615, 3, 132, 66, 0, 615, 616, 3, 156, 78, 0, 616, 617, 3, 132, 66, 0, 617, 619, 1, 0, 0, 0, 618, 613, 1, 0, 0, 0, 618, 614, 1, 0, 0, 0, 619, 131, 1, 0, 0, 0, 620, 621, 6, 66, -1, 0, 621, 625, 3, 134, 67, 0, 622, 623, 7, 4, 0, 0, 623, 625, 3, 132, 66, 3, 624, 620, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 634, 1, 0, 0, 0, 626, 627, 10, 2, 0, 0, 627, 628, 7, 5, 0, 0, 628, 633, 3, 132, 66, 3, 629, 630, 10, 1, 0, 0, 630, 631, 7, 4, 0, 0, 631, 633, 3, 132, 66, 2, 632, 626, 1, 0, 0, 0, 632, 629, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 133, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 637, 638, 6, 67, -1, 0, 638, 646, 3, 144, 72, 0, 639, 646, 3, 48, 24, 0, 640, 646, 3, 136, 68, 0, 641, 642, 5, 100, 0, 0, 642, 643, 3, 124, 62, 0, 643, 644, 5, 101, 0, 0, 644, 646, 1, 0, 0, 0, 645, 637, 1, 0, 0, 0, 645, 639, 1, 0, 0, 0, 645, 640, 1, 0, 0, 0, 645, 641, 1, 0, 0, 0, 646, 652, 1, 0, 0, 0, 647, 648, 10, 1, 0, 0, 648, 649, 5, 61, 0, 0, 649, 651, 3, 10, 5, 0, 650, 647, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 135, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 656, 3, 138, 69, 0, 656, 670, 5, 100, 0, 0, 657, 671, 5, 90, 0, 0, 658, 663, 3, 124, 62, 0, 659, 660, 5, 63, 0, 0, 660, 662, 3, 124, 62, 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 668, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 667, 5, 63, 0, 0, 667, 669, 3, 140, 70, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 657, 1, 0, 0, 0, 670, 658, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 101, 0, 0, 673, 137, 1, 0, 0, 0, 674, 675, 3, 62, 31, 0, 675, 139, 1, 0, 0, 0, 676, 677, 5, 93, 0, 0, 677, 682, 3, 142, 71, 0, 678, 679, 5, 63, 0, 0, 679, 681, 3, 142, 71, 0, 680, 678, 1, 0, 0, 0, 681, 684, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 685, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 685, 686, 5, 94, 0, 0, 686, 141, 1, 0, 0, 0, 687, 688, 3, 154, 77, 0, 688, 689, 5, 62, 0, 0, 689, 690, 3, 144, 72, 0, 690, 143, 1, 0, 0, 0, 691, 734, 5, 73, 0, 0, 692, 693, 3, 152, 76, 0, 693, 694, 5, 102, 0, 0, 694, 734, 1, 0, 0, 0, 695, 734, 3, 150, 75, 0, 696, 734, 3, 152, 76, 0, 697, 734, 3, 146, 73, 0, 698, 734, 3, 58, 29, 0, 699, 734, 3, 154, 77, 0, 700, 701, 5, 98, 0, 0, 701, 706, 3, 148, 74, 0, 702, 703, 5, 63, 0, 0, 703, 705, 3, 148, 74, 0, 704, 702, 1, 0, 0, 0, 705, 708, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 709, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 710, 5, 99, 0, 0, 710, 734, 1, 0, 0, 0, 711, 712, 5, 98, 0, 0, 712, 717, 3, 146, 73, 0, 713, 714, 5, 63, 0, 0, 714, 716, 3, 146, 73, 0, 715, 713, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 720, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 721, 5, 99, 0, 0, 721, 734, 1, 0, 0, 0, 722, 723, 5, 98, 0, 0, 723, 728, 3, 154, 77, 0, 724, 725, 5, 63, 0, 0, 725, 727, 3, 154, 77, 0, 726, 724, 1, 0, 0, 0, 727, 730, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 732, 5, 99, 0, 0, 732, 734, 1, 0, 0, 0, 733, 691, 1, 0, 0, 0, 733, 692, 1, 0, 0, 0, 733, 695, 1, 0, 0, 0, 733, 696, 1, 0, 0, 0, 733, 697, 1, 0, 0, 0, 733, 698, 1, 0, 0, 0, 733, 699, 1, 0, 0, 0, 733, 700, 1, 0, 0, 0, 733, 711, 1, 0, 0, 0, 733, 722, 1, 0, 0, 0, 734, 145, 1, 0, 0, 0, 735, 736, 7, 6, 0, 0, 736, 147, 1, 0, 0, 0, 737, 740, 3, 150, 75, 0, 738, 740, 3, 152, 76, 0, 739, 737, 1, 0, 0, 0, 739, 738, 1, 0, 0, 0, 740, 149, 1, 0, 0, 0, 741, 743, 7, 4, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 5, 55, 0, 0, 745, 151, 1, 0, 0, 0, 746, 748, 7, 4, 0, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 54, 0, 0, 750, 153, 1, 0, 0, 0, 751, 752, 5, 53, 0, 0, 752, 155, 1, 0, 0, 0, 753, 754, 7, 7, 0, 0, 754, 157, 1, 0, 0, 0, 755, 756, 7, 8, 0, 0, 756, 757, 5, 115, 0, 0, 757, 758, 3, 160, 80, 0, 758, 759, 3, 162, 81, 0, 759, 159, 1, 0, 0, 0, 760, 761, 3, 28, 14, 0, 761, 161, 1, 0, 0, 0, 762, 763, 5, 75, 0, 0, 763, 768, 3, 164, 82, 0, 764, 765, 5, 63, 0, 0, 765, 767, 3, 164, 82, 0, 766, 764, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 163, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 3, 130, 65, 0, 772, 165, 1, 0, 0, 0, 68, 177, 186, 218, 233, 239, 248, 254, 267, 271, 282, 298, 306, 310, 317, 323, 330, 338, 346, 354, 358, 362, 367, 378, 383, 387, 401, 412, 426, 447, 455, 458, 463, 476, 482, 489, 500, 514, 523, 540, 545, 554, 563, 571, 576, 584, 586, 591, 598, 603, 608, 618, 624, 632, 634, 645, 652, 663, 668, 670, 682, 706, 717, 728, 733, 739, 742, 747, 768]
\ No newline at end of file
+[4, 1, 139, 775, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 176, 8, 1, 10, 1, 12, 1, 179, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 187, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 219, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 232, 8, 7, 10, 7, 12, 7, 235, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 255, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 266, 8, 13, 10, 13, 12, 13, 269, 9, 13, 1, 13, 3, 13, 272, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 283, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 297, 8, 19, 10, 19, 12, 19, 300, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 307, 8, 21, 1, 21, 1, 21, 3, 21, 311, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 316, 8, 22, 10, 22, 12, 22, 319, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 324, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 329, 8, 24, 10, 24, 12, 24, 332, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 337, 8, 25, 10, 25, 12, 25, 340, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 345, 8, 26, 10, 26, 12, 26, 348, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 355, 8, 28, 1, 29, 1, 29, 3, 29, 359, 8, 29, 1, 30, 1, 30, 3, 30, 363, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 368, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 377, 8, 33, 10, 33, 12, 33, 380, 9, 33, 1, 34, 1, 34, 3, 34, 384, 8, 34, 1, 34, 1, 34, 3, 34, 388, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 400, 8, 37, 10, 37, 12, 37, 403, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 413, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 5, 42, 425, 8, 42, 10, 42, 12, 42, 428, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 454, 8, 47, 10, 47, 12, 47, 457, 9, 47, 3, 47, 459, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 464, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 477, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 483, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 490, 8, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 499, 8, 54, 11, 54, 12, 54, 500, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 513, 8, 56, 10, 56, 12, 56, 516, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 524, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 534, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 542, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 547, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 556, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 563, 8, 62, 10, 62, 12, 62, 566, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 573, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 578, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 586, 8, 62, 10, 62, 12, 62, 589, 9, 62, 1, 63, 1, 63, 3, 63, 593, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 600, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 605, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 610, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 620, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 626, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 634, 8, 66, 10, 66, 12, 66, 637, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 647, 8, 67, 1, 67, 1, 67, 1, 67, 5, 67, 652, 8, 67, 10, 67, 12, 67, 655, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 663, 8, 68, 10, 68, 12, 68, 666, 9, 68, 1, 68, 1, 68, 3, 68, 670, 8, 68, 3, 68, 672, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 682, 8, 70, 10, 70, 12, 70, 685, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 706, 8, 72, 10, 72, 12, 72, 709, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 717, 8, 72, 10, 72, 12, 72, 720, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 728, 8, 72, 10, 72, 12, 72, 731, 9, 72, 1, 72, 1, 72, 3, 72, 735, 8, 72, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 741, 8, 74, 1, 75, 3, 75, 744, 8, 75, 1, 75, 1, 75, 1, 76, 3, 76, 749, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 768, 8, 81, 10, 81, 12, 81, 771, 9, 81, 1, 82, 1, 82, 1, 82, 0, 5, 2, 112, 124, 132, 134, 83, 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, 0, 9, 2, 0, 53, 53, 108, 108, 1, 0, 102, 103, 2, 0, 58, 58, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 88, 89, 1, 0, 90, 92, 2, 0, 66, 66, 79, 79, 2, 0, 81, 81, 83, 87, 2, 0, 22, 22, 24, 25, 805, 0, 166, 1, 0, 0, 0, 2, 169, 1, 0, 0, 0, 4, 186, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 8, 220, 1, 0, 0, 0, 10, 223, 1, 0, 0, 0, 12, 225, 1, 0, 0, 0, 14, 228, 1, 0, 0, 0, 16, 239, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 251, 1, 0, 0, 0, 22, 256, 1, 0, 0, 0, 24, 259, 1, 0, 0, 0, 26, 262, 1, 0, 0, 0, 28, 282, 1, 0, 0, 0, 30, 284, 1, 0, 0, 0, 32, 286, 1, 0, 0, 0, 34, 288, 1, 0, 0, 0, 36, 290, 1, 0, 0, 0, 38, 292, 1, 0, 0, 0, 40, 301, 1, 0, 0, 0, 42, 304, 1, 0, 0, 0, 44, 312, 1, 0, 0, 0, 46, 320, 1, 0, 0, 0, 48, 325, 1, 0, 0, 0, 50, 333, 1, 0, 0, 0, 52, 341, 1, 0, 0, 0, 54, 349, 1, 0, 0, 0, 56, 354, 1, 0, 0, 0, 58, 358, 1, 0, 0, 0, 60, 362, 1, 0, 0, 0, 62, 367, 1, 0, 0, 0, 64, 369, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 381, 1, 0, 0, 0, 70, 389, 1, 0, 0, 0, 72, 392, 1, 0, 0, 0, 74, 395, 1, 0, 0, 0, 76, 404, 1, 0, 0, 0, 78, 408, 1, 0, 0, 0, 80, 414, 1, 0, 0, 0, 82, 418, 1, 0, 0, 0, 84, 421, 1, 0, 0, 0, 86, 429, 1, 0, 0, 0, 88, 433, 1, 0, 0, 0, 90, 436, 1, 0, 0, 0, 92, 440, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 463, 1, 0, 0, 0, 98, 467, 1, 0, 0, 0, 100, 472, 1, 0, 0, 0, 102, 478, 1, 0, 0, 0, 104, 491, 1, 0, 0, 0, 106, 494, 1, 0, 0, 0, 108, 498, 1, 0, 0, 0, 110, 502, 1, 0, 0, 0, 112, 506, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 527, 1, 0, 0, 0, 120, 535, 1, 0, 0, 0, 122, 543, 1, 0, 0, 0, 124, 577, 1, 0, 0, 0, 126, 604, 1, 0, 0, 0, 128, 606, 1, 0, 0, 0, 130, 619, 1, 0, 0, 0, 132, 625, 1, 0, 0, 0, 134, 646, 1, 0, 0, 0, 136, 656, 1, 0, 0, 0, 138, 675, 1, 0, 0, 0, 140, 677, 1, 0, 0, 0, 142, 688, 1, 0, 0, 0, 144, 734, 1, 0, 0, 0, 146, 736, 1, 0, 0, 0, 148, 740, 1, 0, 0, 0, 150, 743, 1, 0, 0, 0, 152, 748, 1, 0, 0, 0, 154, 752, 1, 0, 0, 0, 156, 754, 1, 0, 0, 0, 158, 756, 1, 0, 0, 0, 160, 761, 1, 0, 0, 0, 162, 763, 1, 0, 0, 0, 164, 772, 1, 0, 0, 0, 166, 167, 3, 2, 1, 0, 167, 168, 5, 0, 0, 1, 168, 1, 1, 0, 0, 0, 169, 170, 6, 1, -1, 0, 170, 171, 3, 4, 2, 0, 171, 177, 1, 0, 0, 0, 172, 173, 10, 1, 0, 0, 173, 174, 5, 52, 0, 0, 174, 176, 3, 6, 3, 0, 175, 172, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 187, 3, 88, 44, 0, 181, 187, 3, 22, 11, 0, 182, 187, 3, 12, 6, 0, 183, 187, 3, 92, 46, 0, 184, 185, 4, 2, 1, 0, 185, 187, 3, 24, 12, 0, 186, 180, 1, 0, 0, 0, 186, 181, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 183, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 5, 1, 0, 0, 0, 188, 219, 3, 40, 20, 0, 189, 219, 3, 8, 4, 0, 190, 219, 3, 70, 35, 0, 191, 219, 3, 64, 32, 0, 192, 219, 3, 42, 21, 0, 193, 219, 3, 66, 33, 0, 194, 219, 3, 72, 36, 0, 195, 219, 3, 74, 37, 0, 196, 219, 3, 78, 39, 0, 197, 219, 3, 80, 40, 0, 198, 219, 3, 94, 47, 0, 199, 219, 3, 82, 41, 0, 200, 219, 3, 158, 79, 0, 201, 219, 3, 102, 51, 0, 202, 203, 4, 3, 2, 0, 203, 219, 3, 100, 50, 0, 204, 205, 4, 3, 3, 0, 205, 219, 3, 98, 49, 0, 206, 207, 4, 3, 4, 0, 207, 219, 3, 120, 60, 0, 208, 209, 4, 3, 5, 0, 209, 219, 3, 104, 52, 0, 210, 211, 4, 3, 6, 0, 211, 219, 3, 106, 53, 0, 212, 213, 4, 3, 7, 0, 213, 219, 3, 118, 59, 0, 214, 215, 4, 3, 8, 0, 215, 219, 3, 116, 58, 0, 216, 217, 4, 3, 9, 0, 217, 219, 3, 122, 61, 0, 218, 188, 1, 0, 0, 0, 218, 189, 1, 0, 0, 0, 218, 190, 1, 0, 0, 0, 218, 191, 1, 0, 0, 0, 218, 192, 1, 0, 0, 0, 218, 193, 1, 0, 0, 0, 218, 194, 1, 0, 0, 0, 218, 195, 1, 0, 0, 0, 218, 196, 1, 0, 0, 0, 218, 197, 1, 0, 0, 0, 218, 198, 1, 0, 0, 0, 218, 199, 1, 0, 0, 0, 218, 200, 1, 0, 0, 0, 218, 201, 1, 0, 0, 0, 218, 202, 1, 0, 0, 0, 218, 204, 1, 0, 0, 0, 218, 206, 1, 0, 0, 0, 218, 208, 1, 0, 0, 0, 218, 210, 1, 0, 0, 0, 218, 212, 1, 0, 0, 0, 218, 214, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 7, 1, 0, 0, 0, 220, 221, 5, 14, 0, 0, 221, 222, 3, 124, 62, 0, 222, 9, 1, 0, 0, 0, 223, 224, 3, 54, 27, 0, 224, 11, 1, 0, 0, 0, 225, 226, 5, 11, 0, 0, 226, 227, 3, 14, 7, 0, 227, 13, 1, 0, 0, 0, 228, 233, 3, 16, 8, 0, 229, 230, 5, 63, 0, 0, 230, 232, 3, 16, 8, 0, 231, 229, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 15, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 48, 24, 0, 237, 238, 5, 59, 0, 0, 238, 240, 1, 0, 0, 0, 239, 236, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 124, 62, 0, 242, 17, 1, 0, 0, 0, 243, 248, 3, 20, 10, 0, 244, 245, 5, 63, 0, 0, 245, 247, 3, 20, 10, 0, 246, 244, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 19, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 254, 3, 48, 24, 0, 252, 253, 5, 59, 0, 0, 253, 255, 3, 124, 62, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 21, 1, 0, 0, 0, 256, 257, 5, 19, 0, 0, 257, 258, 3, 26, 13, 0, 258, 23, 1, 0, 0, 0, 259, 260, 5, 20, 0, 0, 260, 261, 3, 26, 13, 0, 261, 25, 1, 0, 0, 0, 262, 267, 3, 28, 14, 0, 263, 264, 5, 63, 0, 0, 264, 266, 3, 28, 14, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 272, 3, 38, 19, 0, 271, 270, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 27, 1, 0, 0, 0, 273, 274, 3, 30, 15, 0, 274, 275, 5, 62, 0, 0, 275, 276, 3, 34, 17, 0, 276, 283, 1, 0, 0, 0, 277, 278, 3, 34, 17, 0, 278, 279, 5, 61, 0, 0, 279, 280, 3, 32, 16, 0, 280, 283, 1, 0, 0, 0, 281, 283, 3, 36, 18, 0, 282, 273, 1, 0, 0, 0, 282, 277, 1, 0, 0, 0, 282, 281, 1, 0, 0, 0, 283, 29, 1, 0, 0, 0, 284, 285, 5, 108, 0, 0, 285, 31, 1, 0, 0, 0, 286, 287, 5, 108, 0, 0, 287, 33, 1, 0, 0, 0, 288, 289, 5, 108, 0, 0, 289, 35, 1, 0, 0, 0, 290, 291, 7, 0, 0, 0, 291, 37, 1, 0, 0, 0, 292, 293, 5, 107, 0, 0, 293, 298, 5, 108, 0, 0, 294, 295, 5, 63, 0, 0, 295, 297, 5, 108, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 39, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 303, 3, 14, 7, 0, 303, 41, 1, 0, 0, 0, 304, 306, 5, 13, 0, 0, 305, 307, 3, 44, 22, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 60, 0, 0, 309, 311, 3, 14, 7, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 43, 1, 0, 0, 0, 312, 317, 3, 46, 23, 0, 313, 314, 5, 63, 0, 0, 314, 316, 3, 46, 23, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 45, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 323, 3, 16, 8, 0, 321, 322, 5, 14, 0, 0, 322, 324, 3, 124, 62, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 330, 3, 62, 31, 0, 326, 327, 5, 65, 0, 0, 327, 329, 3, 62, 31, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 49, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 338, 3, 56, 28, 0, 334, 335, 5, 65, 0, 0, 335, 337, 3, 56, 28, 0, 336, 334, 1, 0, 0, 0, 337, 340, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 51, 1, 0, 0, 0, 340, 338, 1, 0, 0, 0, 341, 346, 3, 50, 25, 0, 342, 343, 5, 63, 0, 0, 343, 345, 3, 50, 25, 0, 344, 342, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 53, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 350, 7, 1, 0, 0, 350, 55, 1, 0, 0, 0, 351, 355, 5, 129, 0, 0, 352, 355, 3, 58, 29, 0, 353, 355, 3, 60, 30, 0, 354, 351, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 353, 1, 0, 0, 0, 355, 57, 1, 0, 0, 0, 356, 359, 5, 77, 0, 0, 357, 359, 5, 96, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 59, 1, 0, 0, 0, 360, 363, 5, 95, 0, 0, 361, 363, 5, 97, 0, 0, 362, 360, 1, 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 61, 1, 0, 0, 0, 364, 368, 3, 54, 27, 0, 365, 368, 3, 58, 29, 0, 366, 368, 3, 60, 30, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 63, 1, 0, 0, 0, 369, 370, 5, 10, 0, 0, 370, 371, 3, 144, 72, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 12, 0, 0, 373, 378, 3, 68, 34, 0, 374, 375, 5, 63, 0, 0, 375, 377, 3, 68, 34, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 67, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 383, 3, 124, 62, 0, 382, 384, 7, 2, 0, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 386, 5, 74, 0, 0, 386, 388, 7, 3, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 69, 1, 0, 0, 0, 389, 390, 5, 29, 0, 0, 390, 391, 3, 52, 26, 0, 391, 71, 1, 0, 0, 0, 392, 393, 5, 28, 0, 0, 393, 394, 3, 52, 26, 0, 394, 73, 1, 0, 0, 0, 395, 396, 5, 32, 0, 0, 396, 401, 3, 76, 38, 0, 397, 398, 5, 63, 0, 0, 398, 400, 3, 76, 38, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 75, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 57, 0, 0, 406, 407, 3, 50, 25, 0, 407, 77, 1, 0, 0, 0, 408, 409, 5, 7, 0, 0, 409, 410, 3, 134, 67, 0, 410, 412, 3, 154, 77, 0, 411, 413, 3, 84, 42, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 79, 1, 0, 0, 0, 414, 415, 5, 9, 0, 0, 415, 416, 3, 134, 67, 0, 416, 417, 3, 154, 77, 0, 417, 81, 1, 0, 0, 0, 418, 419, 5, 27, 0, 0, 419, 420, 3, 48, 24, 0, 420, 83, 1, 0, 0, 0, 421, 426, 3, 86, 43, 0, 422, 423, 5, 63, 0, 0, 423, 425, 3, 86, 43, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 85, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 3, 54, 27, 0, 430, 431, 5, 59, 0, 0, 431, 432, 3, 144, 72, 0, 432, 87, 1, 0, 0, 0, 433, 434, 5, 6, 0, 0, 434, 435, 3, 90, 45, 0, 435, 89, 1, 0, 0, 0, 436, 437, 5, 98, 0, 0, 437, 438, 3, 2, 1, 0, 438, 439, 5, 99, 0, 0, 439, 91, 1, 0, 0, 0, 440, 441, 5, 33, 0, 0, 441, 442, 5, 136, 0, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, 444, 447, 5, 38, 0, 0, 445, 446, 5, 75, 0, 0, 446, 448, 3, 50, 25, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 458, 1, 0, 0, 0, 449, 450, 5, 80, 0, 0, 450, 455, 3, 96, 48, 0, 451, 452, 5, 63, 0, 0, 452, 454, 3, 96, 48, 0, 453, 451, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 449, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 95, 1, 0, 0, 0, 460, 461, 3, 50, 25, 0, 461, 462, 5, 59, 0, 0, 462, 464, 1, 0, 0, 0, 463, 460, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 3, 50, 25, 0, 466, 97, 1, 0, 0, 0, 467, 468, 5, 26, 0, 0, 468, 469, 3, 28, 14, 0, 469, 470, 5, 75, 0, 0, 470, 471, 3, 52, 26, 0, 471, 99, 1, 0, 0, 0, 472, 473, 5, 16, 0, 0, 473, 476, 3, 44, 22, 0, 474, 475, 5, 60, 0, 0, 475, 477, 3, 14, 7, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 101, 1, 0, 0, 0, 478, 479, 5, 4, 0, 0, 479, 482, 3, 48, 24, 0, 480, 481, 5, 75, 0, 0, 481, 483, 3, 48, 24, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 489, 1, 0, 0, 0, 484, 485, 5, 57, 0, 0, 485, 486, 3, 48, 24, 0, 486, 487, 5, 63, 0, 0, 487, 488, 3, 48, 24, 0, 488, 490, 1, 0, 0, 0, 489, 484, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 103, 1, 0, 0, 0, 491, 492, 5, 30, 0, 0, 492, 493, 3, 52, 26, 0, 493, 105, 1, 0, 0, 0, 494, 495, 5, 21, 0, 0, 495, 496, 3, 108, 54, 0, 496, 107, 1, 0, 0, 0, 497, 499, 3, 110, 55, 0, 498, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 109, 1, 0, 0, 0, 502, 503, 5, 100, 0, 0, 503, 504, 3, 112, 56, 0, 504, 505, 5, 101, 0, 0, 505, 111, 1, 0, 0, 0, 506, 507, 6, 56, -1, 0, 507, 508, 3, 114, 57, 0, 508, 514, 1, 0, 0, 0, 509, 510, 10, 1, 0, 0, 510, 511, 5, 52, 0, 0, 511, 513, 3, 114, 57, 0, 512, 509, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 113, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 524, 3, 40, 20, 0, 518, 524, 3, 8, 4, 0, 519, 524, 3, 64, 32, 0, 520, 524, 3, 42, 21, 0, 521, 524, 3, 66, 33, 0, 522, 524, 3, 78, 39, 0, 523, 517, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 523, 519, 1, 0, 0, 0, 523, 520, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 522, 1, 0, 0, 0, 524, 115, 1, 0, 0, 0, 525, 526, 5, 31, 0, 0, 526, 117, 1, 0, 0, 0, 527, 528, 5, 17, 0, 0, 528, 529, 3, 144, 72, 0, 529, 530, 5, 75, 0, 0, 530, 533, 3, 18, 9, 0, 531, 532, 5, 80, 0, 0, 532, 534, 3, 62, 31, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 119, 1, 0, 0, 0, 535, 536, 5, 15, 0, 0, 536, 537, 3, 134, 67, 0, 537, 538, 5, 80, 0, 0, 538, 541, 3, 62, 31, 0, 539, 540, 5, 57, 0, 0, 540, 542, 3, 48, 24, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 121, 1, 0, 0, 0, 543, 544, 5, 18, 0, 0, 544, 546, 3, 150, 75, 0, 545, 547, 3, 152, 76, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 123, 1, 0, 0, 0, 548, 549, 6, 62, -1, 0, 549, 550, 5, 72, 0, 0, 550, 578, 3, 124, 62, 8, 551, 578, 3, 130, 65, 0, 552, 578, 3, 126, 63, 0, 553, 555, 3, 130, 65, 0, 554, 556, 5, 72, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 5, 68, 0, 0, 558, 559, 5, 100, 0, 0, 559, 564, 3, 130, 65, 0, 560, 561, 5, 63, 0, 0, 561, 563, 3, 130, 65, 0, 562, 560, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 567, 1, 0, 0, 0, 566, 564, 1, 0, 0, 0, 567, 568, 5, 101, 0, 0, 568, 578, 1, 0, 0, 0, 569, 570, 3, 130, 65, 0, 570, 572, 5, 69, 0, 0, 571, 573, 5, 72, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 5, 73, 0, 0, 575, 578, 1, 0, 0, 0, 576, 578, 3, 128, 64, 0, 577, 548, 1, 0, 0, 0, 577, 551, 1, 0, 0, 0, 577, 552, 1, 0, 0, 0, 577, 553, 1, 0, 0, 0, 577, 569, 1, 0, 0, 0, 577, 576, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 580, 10, 5, 0, 0, 580, 581, 5, 56, 0, 0, 581, 586, 3, 124, 62, 6, 582, 583, 10, 4, 0, 0, 583, 584, 5, 76, 0, 0, 584, 586, 3, 124, 62, 5, 585, 579, 1, 0, 0, 0, 585, 582, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 125, 1, 0, 0, 0, 589, 587, 1, 0, 0, 0, 590, 592, 3, 130, 65, 0, 591, 593, 5, 72, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 5, 71, 0, 0, 595, 596, 3, 154, 77, 0, 596, 605, 1, 0, 0, 0, 597, 599, 3, 130, 65, 0, 598, 600, 5, 72, 0, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 78, 0, 0, 602, 603, 3, 154, 77, 0, 603, 605, 1, 0, 0, 0, 604, 590, 1, 0, 0, 0, 604, 597, 1, 0, 0, 0, 605, 127, 1, 0, 0, 0, 606, 609, 3, 48, 24, 0, 607, 608, 5, 61, 0, 0, 608, 610, 3, 10, 5, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 62, 0, 0, 612, 613, 3, 144, 72, 0, 613, 129, 1, 0, 0, 0, 614, 620, 3, 132, 66, 0, 615, 616, 3, 132, 66, 0, 616, 617, 3, 156, 78, 0, 617, 618, 3, 132, 66, 0, 618, 620, 1, 0, 0, 0, 619, 614, 1, 0, 0, 0, 619, 615, 1, 0, 0, 0, 620, 131, 1, 0, 0, 0, 621, 622, 6, 66, -1, 0, 622, 626, 3, 134, 67, 0, 623, 624, 7, 4, 0, 0, 624, 626, 3, 132, 66, 3, 625, 621, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 635, 1, 0, 0, 0, 627, 628, 10, 2, 0, 0, 628, 629, 7, 5, 0, 0, 629, 634, 3, 132, 66, 3, 630, 631, 10, 1, 0, 0, 631, 632, 7, 4, 0, 0, 632, 634, 3, 132, 66, 2, 633, 627, 1, 0, 0, 0, 633, 630, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 133, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 6, 67, -1, 0, 639, 647, 3, 144, 72, 0, 640, 647, 3, 48, 24, 0, 641, 647, 3, 136, 68, 0, 642, 643, 5, 100, 0, 0, 643, 644, 3, 124, 62, 0, 644, 645, 5, 101, 0, 0, 645, 647, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 640, 1, 0, 0, 0, 646, 641, 1, 0, 0, 0, 646, 642, 1, 0, 0, 0, 647, 653, 1, 0, 0, 0, 648, 649, 10, 1, 0, 0, 649, 650, 5, 61, 0, 0, 650, 652, 3, 10, 5, 0, 651, 648, 1, 0, 0, 0, 652, 655, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 135, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 657, 3, 138, 69, 0, 657, 671, 5, 100, 0, 0, 658, 672, 5, 90, 0, 0, 659, 664, 3, 124, 62, 0, 660, 661, 5, 63, 0, 0, 661, 663, 3, 124, 62, 0, 662, 660, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 669, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 668, 5, 63, 0, 0, 668, 670, 3, 140, 70, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 658, 1, 0, 0, 0, 671, 659, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 101, 0, 0, 674, 137, 1, 0, 0, 0, 675, 676, 3, 62, 31, 0, 676, 139, 1, 0, 0, 0, 677, 678, 5, 93, 0, 0, 678, 683, 3, 142, 71, 0, 679, 680, 5, 63, 0, 0, 680, 682, 3, 142, 71, 0, 681, 679, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 94, 0, 0, 687, 141, 1, 0, 0, 0, 688, 689, 3, 154, 77, 0, 689, 690, 5, 62, 0, 0, 690, 691, 3, 144, 72, 0, 691, 143, 1, 0, 0, 0, 692, 735, 5, 73, 0, 0, 693, 694, 3, 152, 76, 0, 694, 695, 5, 102, 0, 0, 695, 735, 1, 0, 0, 0, 696, 735, 3, 150, 75, 0, 697, 735, 3, 152, 76, 0, 698, 735, 3, 146, 73, 0, 699, 735, 3, 58, 29, 0, 700, 735, 3, 154, 77, 0, 701, 702, 5, 98, 0, 0, 702, 707, 3, 148, 74, 0, 703, 704, 5, 63, 0, 0, 704, 706, 3, 148, 74, 0, 705, 703, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 710, 711, 5, 99, 0, 0, 711, 735, 1, 0, 0, 0, 712, 713, 5, 98, 0, 0, 713, 718, 3, 146, 73, 0, 714, 715, 5, 63, 0, 0, 715, 717, 3, 146, 73, 0, 716, 714, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 721, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 721, 722, 5, 99, 0, 0, 722, 735, 1, 0, 0, 0, 723, 724, 5, 98, 0, 0, 724, 729, 3, 154, 77, 0, 725, 726, 5, 63, 0, 0, 726, 728, 3, 154, 77, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 5, 99, 0, 0, 733, 735, 1, 0, 0, 0, 734, 692, 1, 0, 0, 0, 734, 693, 1, 0, 0, 0, 734, 696, 1, 0, 0, 0, 734, 697, 1, 0, 0, 0, 734, 698, 1, 0, 0, 0, 734, 699, 1, 0, 0, 0, 734, 700, 1, 0, 0, 0, 734, 701, 1, 0, 0, 0, 734, 712, 1, 0, 0, 0, 734, 723, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 737, 7, 6, 0, 0, 737, 147, 1, 0, 0, 0, 738, 741, 3, 150, 75, 0, 739, 741, 3, 152, 76, 0, 740, 738, 1, 0, 0, 0, 740, 739, 1, 0, 0, 0, 741, 149, 1, 0, 0, 0, 742, 744, 7, 4, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 55, 0, 0, 746, 151, 1, 0, 0, 0, 747, 749, 7, 4, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 5, 54, 0, 0, 751, 153, 1, 0, 0, 0, 752, 753, 5, 53, 0, 0, 753, 155, 1, 0, 0, 0, 754, 755, 7, 7, 0, 0, 755, 157, 1, 0, 0, 0, 756, 757, 7, 8, 0, 0, 757, 758, 5, 115, 0, 0, 758, 759, 3, 160, 80, 0, 759, 760, 3, 162, 81, 0, 760, 159, 1, 0, 0, 0, 761, 762, 3, 28, 14, 0, 762, 161, 1, 0, 0, 0, 763, 764, 5, 75, 0, 0, 764, 769, 3, 164, 82, 0, 765, 766, 5, 63, 0, 0, 766, 768, 3, 164, 82, 0, 767, 765, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 163, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 773, 3, 130, 65, 0, 773, 165, 1, 0, 0, 0, 69, 177, 186, 218, 233, 239, 248, 254, 267, 271, 282, 298, 306, 310, 317, 323, 330, 338, 346, 354, 358, 362, 367, 378, 383, 387, 401, 412, 426, 447, 455, 458, 463, 476, 482, 489, 500, 514, 523, 533, 541, 546, 555, 564, 572, 577, 585, 587, 592, 599, 604, 609, 619, 625, 633, 635, 646, 653, 664, 669, 671, 683, 707, 718, 729, 734, 740, 743, 748, 769]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
index 2ec81224d48ea..d26d05cb3e942 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
@@ -1078,27 +1078,29 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankFieldsContext rerankFields() throws RecognitionException {
RerankFieldsContext _localctx = new RerankFieldsContext(_ctx, getState());
enterRule(_localctx, 18, RULE_rerankFields);
- int _la;
try {
+ int _alt;
enterOuterAlt(_localctx, 1);
{
setState(243);
rerankField();
setState(248);
_errHandler.sync(this);
- _la = _input.LA(1);
- while (_la==COMMA) {
- {
- {
- setState(244);
- match(COMMA);
- setState(245);
- rerankField();
- }
+ _alt = getInterpreter().adaptivePredict(_input,5,_ctx);
+ while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
+ if ( _alt==1 ) {
+ {
+ {
+ setState(244);
+ match(COMMA);
+ setState(245);
+ rerankField();
+ }
+ }
}
setState(250);
_errHandler.sync(this);
- _la = _input.LA(1);
+ _alt = getInterpreter().adaptivePredict(_input,5,_ctx);
}
}
}
@@ -1145,7 +1147,6 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankFieldContext rerankField() throws RecognitionException {
RerankFieldContext _localctx = new RerankFieldContext(_ctx, getState());
enterRule(_localctx, 20, RULE_rerankField);
- int _la;
try {
enterOuterAlt(_localctx, 1);
{
@@ -1153,16 +1154,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
qualifiedName();
setState(254);
_errHandler.sync(this);
- _la = _input.LA(1);
- if (_la==ASSIGN) {
+ switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
+ case 1:
{
setState(252);
match(ASSIGN);
setState(253);
booleanExpression(0);
}
+ break;
}
-
}
}
catch (RecognitionException re) {
@@ -2567,7 +2568,9 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
@SuppressWarnings("CheckReturnValue")
public static class LimitCommandContext extends ParserRuleContext {
public TerminalNode LIMIT() { return getToken(EsqlBaseParser.LIMIT, 0); }
- public TerminalNode INTEGER_LITERAL() { return getToken(EsqlBaseParser.INTEGER_LITERAL, 0); }
+ public ConstantContext constant() {
+ return getRuleContext(ConstantContext.class,0);
+ }
@SuppressWarnings("this-escape")
public LimitCommandContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -2597,7 +2600,7 @@ public final LimitCommandContext limitCommand() throws RecognitionException {
setState(369);
match(LIMIT);
setState(370);
- match(INTEGER_LITERAL);
+ constant();
}
}
catch (RecognitionException re) {
@@ -4346,10 +4349,10 @@ public static class RerankCommandContext extends ParserRuleContext {
public RerankFieldsContext rerankFields() {
return getRuleContext(RerankFieldsContext.class,0);
}
- public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); }
public ConstantContext constant() {
return getRuleContext(ConstantContext.class,0);
}
+ public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); }
public IdentifierOrParameterContext identifierOrParameter() {
return getRuleContext(IdentifierOrParameterContext.class,0);
}
@@ -4387,10 +4390,18 @@ public final RerankCommandContext rerankCommand() throws RecognitionException {
match(ON);
setState(530);
rerankFields();
- setState(531);
- match(WITH);
- setState(532);
- ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
+ setState(533);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
+ case 1:
+ {
+ setState(531);
+ match(WITH);
+ setState(532);
+ ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
+ }
+ break;
+ }
}
}
catch (RecognitionException re) {
@@ -4447,22 +4458,22 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(534);
- match(DEV_COMPLETION);
setState(535);
- ((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
+ match(DEV_COMPLETION);
setState(536);
- match(WITH);
+ ((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
setState(537);
+ match(WITH);
+ setState(538);
((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
- setState(540);
+ setState(541);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
case 1:
{
- setState(538);
- match(AS);
setState(539);
+ match(AS);
+ setState(540);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
}
break;
@@ -4517,16 +4528,16 @@ public final SampleCommandContext sampleCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(542);
- match(DEV_SAMPLE);
setState(543);
+ match(DEV_SAMPLE);
+ setState(544);
((SampleCommandContext)_localctx).probability = decimalValue();
- setState(545);
+ setState(546);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(544);
+ setState(545);
((SampleCommandContext)_localctx).seed = integerValue();
}
break;
@@ -4745,18 +4756,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(576);
+ setState(577);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) {
case 1:
{
_localctx = new LogicalNotContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(548);
- match(NOT);
setState(549);
+ match(NOT);
+ setState(550);
booleanExpression(8);
}
break;
@@ -4765,7 +4776,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(550);
+ setState(551);
valueExpression();
}
break;
@@ -4774,7 +4785,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(551);
+ setState(552);
regexBooleanExpression();
}
break;
@@ -4783,41 +4794,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(552);
+ setState(553);
valueExpression();
- setState(554);
+ setState(555);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(553);
+ setState(554);
match(NOT);
}
}
- setState(556);
- match(IN);
setState(557);
- match(LP);
+ match(IN);
setState(558);
+ match(LP);
+ setState(559);
valueExpression();
- setState(563);
+ setState(564);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(559);
- match(COMMA);
setState(560);
+ match(COMMA);
+ setState(561);
valueExpression();
}
}
- setState(565);
+ setState(566);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(566);
+ setState(567);
match(RP);
}
break;
@@ -4826,21 +4837,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(568);
- valueExpression();
setState(569);
+ valueExpression();
+ setState(570);
match(IS);
- setState(571);
+ setState(572);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(570);
+ setState(571);
match(NOT);
}
}
- setState(573);
+ setState(574);
match(NULL);
}
break;
@@ -4849,33 +4860,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(575);
+ setState(576);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(586);
+ setState(587);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(584);
+ setState(585);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
case 1:
{
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(578);
- if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
setState(579);
- ((LogicalBinaryContext)_localctx).operator = match(AND);
+ if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
setState(580);
+ ((LogicalBinaryContext)_localctx).operator = match(AND);
+ setState(581);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -4884,20 +4895,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(581);
- if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
setState(582);
- ((LogicalBinaryContext)_localctx).operator = match(OR);
+ if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
setState(583);
+ ((LogicalBinaryContext)_localctx).operator = match(OR);
+ setState(584);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(588);
+ setState(589);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
}
}
}
@@ -4950,48 +4961,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
enterRule(_localctx, 126, RULE_regexBooleanExpression);
int _la;
try {
- setState(603);
+ setState(604);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(589);
+ setState(590);
valueExpression();
- setState(591);
+ setState(592);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(590);
+ setState(591);
match(NOT);
}
}
- setState(593);
- ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE);
setState(594);
+ ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE);
+ setState(595);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(596);
+ setState(597);
valueExpression();
- setState(598);
+ setState(599);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(597);
+ setState(598);
match(NOT);
}
}
- setState(600);
- ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE);
setState(601);
+ ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE);
+ setState(602);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
@@ -5051,23 +5062,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(605);
+ setState(606);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(608);
+ setState(609);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(606);
- match(CAST_OP);
setState(607);
+ match(CAST_OP);
+ setState(608);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(610);
- match(COLON);
setState(611);
+ match(COLON);
+ setState(612);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -5151,14 +5162,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
enterRule(_localctx, 130, RULE_valueExpression);
try {
- setState(618);
+ setState(619);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(613);
+ setState(614);
operatorExpression(0);
}
break;
@@ -5166,11 +5177,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(614);
- ((ComparisonContext)_localctx).left = operatorExpression(0);
setState(615);
- comparisonOperator();
+ ((ComparisonContext)_localctx).left = operatorExpression(0);
setState(616);
+ comparisonOperator();
+ setState(617);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -5295,16 +5306,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(624);
+ setState(625);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
case 1:
{
_localctx = new OperatorExpressionDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(621);
+ setState(622);
primaryExpression(0);
}
break;
@@ -5313,7 +5324,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(622);
+ setState(623);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -5324,31 +5335,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(623);
+ setState(624);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(634);
+ setState(635);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(632);
+ setState(633);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(626);
- if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
setState(627);
+ if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
+ setState(628);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & 7L) != 0)) ) {
@@ -5359,7 +5370,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(628);
+ setState(629);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -5368,9 +5379,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(629);
- if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
setState(630);
+ if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
+ setState(631);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -5381,16 +5392,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(631);
+ setState(632);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(636);
+ setState(637);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
}
}
}
@@ -5546,16 +5557,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(645);
+ setState(646);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) {
case 1:
{
_localctx = new ConstantDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(638);
+ setState(639);
constant();
}
break;
@@ -5564,7 +5575,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(639);
+ setState(640);
qualifiedName();
}
break;
@@ -5573,7 +5584,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(640);
+ setState(641);
functionExpression();
}
break;
@@ -5582,19 +5593,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(641);
- match(LP);
setState(642);
- booleanExpression(0);
+ match(LP);
setState(643);
+ booleanExpression(0);
+ setState(644);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(652);
+ setState(653);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -5603,18 +5614,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(647);
- if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
setState(648);
- match(CAST_OP);
+ if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
setState(649);
+ match(CAST_OP);
+ setState(650);
dataType();
}
}
}
- setState(654);
+ setState(655);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
}
}
}
@@ -5678,16 +5689,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(655);
- functionName();
setState(656);
+ functionName();
+ setState(657);
match(LP);
- setState(670);
+ setState(671);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(657);
+ setState(658);
match(ASTERISK);
}
break;
@@ -5710,34 +5721,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(658);
+ setState(659);
booleanExpression(0);
- setState(663);
+ setState(664);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(659);
- match(COMMA);
setState(660);
+ match(COMMA);
+ setState(661);
booleanExpression(0);
}
}
}
- setState(665);
+ setState(666);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,56,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
}
- setState(668);
+ setState(669);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(666);
- match(COMMA);
setState(667);
+ match(COMMA);
+ setState(668);
mapExpression();
}
}
@@ -5750,7 +5761,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(672);
+ setState(673);
match(RP);
}
}
@@ -5796,7 +5807,7 @@ public final FunctionNameContext functionName() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(674);
+ setState(675);
identifierOrParameter();
}
}
@@ -5852,27 +5863,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(676);
- match(LEFT_BRACES);
setState(677);
+ match(LEFT_BRACES);
+ setState(678);
entryExpression();
- setState(682);
+ setState(683);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(678);
- match(COMMA);
setState(679);
+ match(COMMA);
+ setState(680);
entryExpression();
}
}
- setState(684);
+ setState(685);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(685);
+ setState(686);
match(RIGHT_BRACES);
}
}
@@ -5924,11 +5935,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(687);
- ((EntryExpressionContext)_localctx).key = string();
setState(688);
- match(COLON);
+ ((EntryExpressionContext)_localctx).key = string();
setState(689);
+ match(COLON);
+ setState(690);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -6199,14 +6210,14 @@ public final ConstantContext constant() throws RecognitionException {
enterRule(_localctx, 144, RULE_constant);
int _la;
try {
- setState(733);
+ setState(734);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(691);
+ setState(692);
match(NULL);
}
break;
@@ -6214,9 +6225,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(692);
- integerValue();
setState(693);
+ integerValue();
+ setState(694);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -6224,7 +6235,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(695);
+ setState(696);
decimalValue();
}
break;
@@ -6232,7 +6243,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(696);
+ setState(697);
integerValue();
}
break;
@@ -6240,7 +6251,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(697);
+ setState(698);
booleanValue();
}
break;
@@ -6248,7 +6259,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(698);
+ setState(699);
parameter();
}
break;
@@ -6256,7 +6267,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(699);
+ setState(700);
string();
}
break;
@@ -6264,27 +6275,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(700);
- match(OPENING_BRACKET);
setState(701);
+ match(OPENING_BRACKET);
+ setState(702);
numericValue();
- setState(706);
+ setState(707);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(702);
- match(COMMA);
setState(703);
+ match(COMMA);
+ setState(704);
numericValue();
}
}
- setState(708);
+ setState(709);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(709);
+ setState(710);
match(CLOSING_BRACKET);
}
break;
@@ -6292,27 +6303,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(711);
- match(OPENING_BRACKET);
setState(712);
+ match(OPENING_BRACKET);
+ setState(713);
booleanValue();
- setState(717);
+ setState(718);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(713);
- match(COMMA);
setState(714);
+ match(COMMA);
+ setState(715);
booleanValue();
}
}
- setState(719);
+ setState(720);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(720);
+ setState(721);
match(CLOSING_BRACKET);
}
break;
@@ -6320,27 +6331,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(722);
- match(OPENING_BRACKET);
setState(723);
+ match(OPENING_BRACKET);
+ setState(724);
string();
- setState(728);
+ setState(729);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(724);
- match(COMMA);
setState(725);
+ match(COMMA);
+ setState(726);
string();
}
}
- setState(730);
+ setState(731);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(731);
+ setState(732);
match(CLOSING_BRACKET);
}
break;
@@ -6388,7 +6399,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(735);
+ setState(736);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -6443,20 +6454,20 @@ public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
enterRule(_localctx, 148, RULE_numericValue);
try {
- setState(739);
+ setState(740);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(737);
+ setState(738);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(738);
+ setState(739);
integerValue();
}
break;
@@ -6505,12 +6516,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(742);
+ setState(743);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(741);
+ setState(742);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -6523,7 +6534,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(744);
+ setState(745);
match(DECIMAL_LITERAL);
}
}
@@ -6570,12 +6581,12 @@ public final IntegerValueContext integerValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(747);
+ setState(748);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(746);
+ setState(747);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -6588,7 +6599,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(749);
+ setState(750);
match(INTEGER_LITERAL);
}
}
@@ -6632,7 +6643,7 @@ public final StringContext string() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(751);
+ setState(752);
match(QUOTED_STRING);
}
}
@@ -6682,7 +6693,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(753);
+ setState(754);
_la = _input.LA(1);
if ( !(((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -6745,7 +6756,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(755);
+ setState(756);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 54525952L) != 0)) ) {
@@ -6756,11 +6767,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(756);
- match(JOIN);
setState(757);
- joinTarget();
+ match(JOIN);
setState(758);
+ joinTarget();
+ setState(759);
joinCondition();
}
}
@@ -6807,7 +6818,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(760);
+ setState(761);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6862,27 +6873,27 @@ public final JoinConditionContext joinCondition() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(762);
- match(ON);
setState(763);
+ match(ON);
+ setState(764);
joinPredicate();
- setState(768);
+ setState(769);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,67,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(764);
- match(COMMA);
setState(765);
+ match(COMMA);
+ setState(766);
joinPredicate();
}
}
}
- setState(770);
+ setState(771);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,67,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
}
}
}
@@ -6928,7 +6939,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(771);
+ setState(772);
valueExpression();
}
}
@@ -7031,7 +7042,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
}
public static final String _serializedATN =
- "\u0004\u0001\u008b\u0306\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008b\u0307\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
"\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+
"\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+
"\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+
@@ -7099,98 +7110,98 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"5\u00015\u00016\u00046\u01f3\b6\u000b6\f6\u01f4\u00017\u00017\u00017\u0001"+
"7\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u0201\b8\n8\f8\u0204"+
"\t8\u00019\u00019\u00019\u00019\u00019\u00019\u00039\u020c\b9\u0001:\u0001"+
- ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001"+
- "<\u0001<\u0001<\u0001<\u0003<\u021d\b<\u0001=\u0001=\u0001=\u0003=\u0222"+
- "\b=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0003>\u022b\b>\u0001"+
- ">\u0001>\u0001>\u0001>\u0001>\u0005>\u0232\b>\n>\f>\u0235\t>\u0001>\u0001"+
- ">\u0001>\u0001>\u0001>\u0003>\u023c\b>\u0001>\u0001>\u0001>\u0003>\u0241"+
- "\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0249\b>\n>\f>\u024c"+
- "\t>\u0001?\u0001?\u0003?\u0250\b?\u0001?\u0001?\u0001?\u0001?\u0001?\u0003"+
- "?\u0257\b?\u0001?\u0001?\u0001?\u0003?\u025c\b?\u0001@\u0001@\u0001@\u0003"+
- "@\u0261\b@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0003"+
- "A\u026b\bA\u0001B\u0001B\u0001B\u0001B\u0003B\u0271\bB\u0001B\u0001B\u0001"+
- "B\u0001B\u0001B\u0001B\u0005B\u0279\bB\nB\fB\u027c\tB\u0001C\u0001C\u0001"+
- "C\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u0286\bC\u0001C\u0001C\u0001"+
- "C\u0005C\u028b\bC\nC\fC\u028e\tC\u0001D\u0001D\u0001D\u0001D\u0001D\u0001"+
- "D\u0005D\u0296\bD\nD\fD\u0299\tD\u0001D\u0001D\u0003D\u029d\bD\u0003D"+
- "\u029f\bD\u0001D\u0001D\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0005"+
- "F\u02a9\bF\nF\fF\u02ac\tF\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001"+
- "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001"+
- "H\u0001H\u0001H\u0005H\u02c1\bH\nH\fH\u02c4\tH\u0001H\u0001H\u0001H\u0001"+
- "H\u0001H\u0001H\u0005H\u02cc\bH\nH\fH\u02cf\tH\u0001H\u0001H\u0001H\u0001"+
- "H\u0001H\u0001H\u0005H\u02d7\bH\nH\fH\u02da\tH\u0001H\u0001H\u0003H\u02de"+
- "\bH\u0001I\u0001I\u0001J\u0001J\u0003J\u02e4\bJ\u0001K\u0003K\u02e7\b"+
- "K\u0001K\u0001K\u0001L\u0003L\u02ec\bL\u0001L\u0001L\u0001M\u0001M\u0001"+
- "N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001"+
- "Q\u0001Q\u0001Q\u0005Q\u02ff\bQ\nQ\fQ\u0302\tQ\u0001R\u0001R\u0001R\u0000"+
- "\u0005\u0002p|\u0084\u0086S\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+
- "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+
- "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+
- "\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u0000"+
- "\t\u0002\u000055ll\u0001\u0000fg\u0002\u0000::@@\u0002\u0000CCFF\u0001"+
- "\u0000XY\u0001\u0000Z\\\u0002\u0000BBOO\u0002\u0000QQSW\u0002\u0000\u0016"+
- "\u0016\u0018\u0019\u0323\u0000\u00a6\u0001\u0000\u0000\u0000\u0002\u00a9"+
- "\u0001\u0000\u0000\u0000\u0004\u00ba\u0001\u0000\u0000\u0000\u0006\u00da"+
- "\u0001\u0000\u0000\u0000\b\u00dc\u0001\u0000\u0000\u0000\n\u00df\u0001"+
- "\u0000\u0000\u0000\f\u00e1\u0001\u0000\u0000\u0000\u000e\u00e4\u0001\u0000"+
- "\u0000\u0000\u0010\u00ef\u0001\u0000\u0000\u0000\u0012\u00f3\u0001\u0000"+
- "\u0000\u0000\u0014\u00fb\u0001\u0000\u0000\u0000\u0016\u0100\u0001\u0000"+
- "\u0000\u0000\u0018\u0103\u0001\u0000\u0000\u0000\u001a\u0106\u0001\u0000"+
- "\u0000\u0000\u001c\u011a\u0001\u0000\u0000\u0000\u001e\u011c\u0001\u0000"+
- "\u0000\u0000 \u011e\u0001\u0000\u0000\u0000\"\u0120\u0001\u0000\u0000"+
- "\u0000$\u0122\u0001\u0000\u0000\u0000&\u0124\u0001\u0000\u0000\u0000("+
- "\u012d\u0001\u0000\u0000\u0000*\u0130\u0001\u0000\u0000\u0000,\u0138\u0001"+
- "\u0000\u0000\u0000.\u0140\u0001\u0000\u0000\u00000\u0145\u0001\u0000\u0000"+
- "\u00002\u014d\u0001\u0000\u0000\u00004\u0155\u0001\u0000\u0000\u00006"+
- "\u015d\u0001\u0000\u0000\u00008\u0162\u0001\u0000\u0000\u0000:\u0166\u0001"+
- "\u0000\u0000\u0000<\u016a\u0001\u0000\u0000\u0000>\u016f\u0001\u0000\u0000"+
- "\u0000@\u0171\u0001\u0000\u0000\u0000B\u0174\u0001\u0000\u0000\u0000D"+
- "\u017d\u0001\u0000\u0000\u0000F\u0185\u0001\u0000\u0000\u0000H\u0188\u0001"+
- "\u0000\u0000\u0000J\u018b\u0001\u0000\u0000\u0000L\u0194\u0001\u0000\u0000"+
- "\u0000N\u0198\u0001\u0000\u0000\u0000P\u019e\u0001\u0000\u0000\u0000R"+
- "\u01a2\u0001\u0000\u0000\u0000T\u01a5\u0001\u0000\u0000\u0000V\u01ad\u0001"+
- "\u0000\u0000\u0000X\u01b1\u0001\u0000\u0000\u0000Z\u01b4\u0001\u0000\u0000"+
- "\u0000\\\u01b8\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000\u0000"+
- "`\u01cf\u0001\u0000\u0000\u0000b\u01d3\u0001\u0000\u0000\u0000d\u01d8"+
- "\u0001\u0000\u0000\u0000f\u01de\u0001\u0000\u0000\u0000h\u01eb\u0001\u0000"+
- "\u0000\u0000j\u01ee\u0001\u0000\u0000\u0000l\u01f2\u0001\u0000\u0000\u0000"+
- "n\u01f6\u0001\u0000\u0000\u0000p\u01fa\u0001\u0000\u0000\u0000r\u020b"+
- "\u0001\u0000\u0000\u0000t\u020d\u0001\u0000\u0000\u0000v\u020f\u0001\u0000"+
- "\u0000\u0000x\u0216\u0001\u0000\u0000\u0000z\u021e\u0001\u0000\u0000\u0000"+
- "|\u0240\u0001\u0000\u0000\u0000~\u025b\u0001\u0000\u0000\u0000\u0080\u025d"+
- "\u0001\u0000\u0000\u0000\u0082\u026a\u0001\u0000\u0000\u0000\u0084\u0270"+
- "\u0001\u0000\u0000\u0000\u0086\u0285\u0001\u0000\u0000\u0000\u0088\u028f"+
- "\u0001\u0000\u0000\u0000\u008a\u02a2\u0001\u0000\u0000\u0000\u008c\u02a4"+
- "\u0001\u0000\u0000\u0000\u008e\u02af\u0001\u0000\u0000\u0000\u0090\u02dd"+
- "\u0001\u0000\u0000\u0000\u0092\u02df\u0001\u0000\u0000\u0000\u0094\u02e3"+
- "\u0001\u0000\u0000\u0000\u0096\u02e6\u0001\u0000\u0000\u0000\u0098\u02eb"+
- "\u0001\u0000\u0000\u0000\u009a\u02ef\u0001\u0000\u0000\u0000\u009c\u02f1"+
- "\u0001\u0000\u0000\u0000\u009e\u02f3\u0001\u0000\u0000\u0000\u00a0\u02f8"+
- "\u0001\u0000\u0000\u0000\u00a2\u02fa\u0001\u0000\u0000\u0000\u00a4\u0303"+
- "\u0001\u0000\u0000\u0000\u00a6\u00a7\u0003\u0002\u0001\u0000\u00a7\u00a8"+
- "\u0005\u0000\u0000\u0001\u00a8\u0001\u0001\u0000\u0000\u0000\u00a9\u00aa"+
- "\u0006\u0001\uffff\uffff\u0000\u00aa\u00ab\u0003\u0004\u0002\u0000\u00ab"+
- "\u00b1\u0001\u0000\u0000\u0000\u00ac\u00ad\n\u0001\u0000\u0000\u00ad\u00ae"+
- "\u00054\u0000\u0000\u00ae\u00b0\u0003\u0006\u0003\u0000\u00af\u00ac\u0001"+
- "\u0000\u0000\u0000\u00b0\u00b3\u0001\u0000\u0000\u0000\u00b1\u00af\u0001"+
- "\u0000\u0000\u0000\u00b1\u00b2\u0001\u0000\u0000\u0000\u00b2\u0003\u0001"+
- "\u0000\u0000\u0000\u00b3\u00b1\u0001\u0000\u0000\u0000\u00b4\u00bb\u0003"+
- "X,\u0000\u00b5\u00bb\u0003\u0016\u000b\u0000\u00b6\u00bb\u0003\f\u0006"+
- "\u0000\u00b7\u00bb\u0003\\.\u0000\u00b8\u00b9\u0004\u0002\u0001\u0000"+
- "\u00b9\u00bb\u0003\u0018\f\u0000\u00ba\u00b4\u0001\u0000\u0000\u0000\u00ba"+
- "\u00b5\u0001\u0000\u0000\u0000\u00ba\u00b6\u0001\u0000\u0000\u0000\u00ba"+
- "\u00b7\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000\u0000\u00bb"+
- "\u0005\u0001\u0000\u0000\u0000\u00bc\u00db\u0003(\u0014\u0000\u00bd\u00db"+
- "\u0003\b\u0004\u0000\u00be\u00db\u0003F#\u0000\u00bf\u00db\u0003@ \u0000"+
- "\u00c0\u00db\u0003*\u0015\u0000\u00c1\u00db\u0003B!\u0000\u00c2\u00db"+
- "\u0003H$\u0000\u00c3\u00db\u0003J%\u0000\u00c4\u00db\u0003N\'\u0000\u00c5"+
- "\u00db\u0003P(\u0000\u00c6\u00db\u0003^/\u0000\u00c7\u00db\u0003R)\u0000"+
- "\u00c8\u00db\u0003\u009eO\u0000\u00c9\u00db\u0003f3\u0000\u00ca\u00cb"+
- "\u0004\u0003\u0002\u0000\u00cb\u00db\u0003d2\u0000\u00cc\u00cd\u0004\u0003"+
- "\u0003\u0000\u00cd\u00db\u0003b1\u0000\u00ce\u00cf\u0004\u0003\u0004\u0000"+
- "\u00cf\u00db\u0003x<\u0000\u00d0\u00d1\u0004\u0003\u0005\u0000\u00d1\u00db"+
- "\u0003h4\u0000\u00d2\u00d3\u0004\u0003\u0006\u0000\u00d3\u00db\u0003j"+
- "5\u0000\u00d4\u00d5\u0004\u0003\u0007\u0000\u00d5\u00db\u0003v;\u0000"+
+ ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0003;\u0216\b;\u0001<\u0001"+
+ "<\u0001<\u0001<\u0001<\u0001<\u0003<\u021e\b<\u0001=\u0001=\u0001=\u0003"+
+ "=\u0223\b=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0003>\u022c"+
+ "\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0233\b>\n>\f>\u0236\t>"+
+ "\u0001>\u0001>\u0001>\u0001>\u0001>\u0003>\u023d\b>\u0001>\u0001>\u0001"+
+ ">\u0003>\u0242\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u024a"+
+ "\b>\n>\f>\u024d\t>\u0001?\u0001?\u0003?\u0251\b?\u0001?\u0001?\u0001?"+
+ "\u0001?\u0001?\u0003?\u0258\b?\u0001?\u0001?\u0001?\u0003?\u025d\b?\u0001"+
+ "@\u0001@\u0001@\u0003@\u0262\b@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001"+
+ "A\u0001A\u0001A\u0003A\u026c\bA\u0001B\u0001B\u0001B\u0001B\u0003B\u0272"+
+ "\bB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u027a\bB\nB\fB\u027d"+
+ "\tB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u0287"+
+ "\bC\u0001C\u0001C\u0001C\u0005C\u028c\bC\nC\fC\u028f\tC\u0001D\u0001D"+
+ "\u0001D\u0001D\u0001D\u0001D\u0005D\u0297\bD\nD\fD\u029a\tD\u0001D\u0001"+
+ "D\u0003D\u029e\bD\u0003D\u02a0\bD\u0001D\u0001D\u0001E\u0001E\u0001F\u0001"+
+ "F\u0001F\u0001F\u0005F\u02aa\bF\nF\fF\u02ad\tF\u0001F\u0001F\u0001G\u0001"+
+ "G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005H\u02c2\bH\nH\fH\u02c5\tH\u0001"+
+ "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005H\u02cd\bH\nH\fH\u02d0\tH\u0001"+
+ "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005H\u02d8\bH\nH\fH\u02db\tH\u0001"+
+ "H\u0001H\u0003H\u02df\bH\u0001I\u0001I\u0001J\u0001J\u0003J\u02e5\bJ\u0001"+
+ "K\u0003K\u02e8\bK\u0001K\u0001K\u0001L\u0003L\u02ed\bL\u0001L\u0001L\u0001"+
+ "M\u0001M\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001O\u0001P\u0001"+
+ "P\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u0300\bQ\nQ\fQ\u0303\tQ\u0001R\u0001"+
+ "R\u0001R\u0000\u0005\u0002p|\u0084\u0086S\u0000\u0002\u0004\u0006\b\n"+
+ "\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0246"+
+ "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a"+
+ "\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2"+
+ "\u00a4\u0000\t\u0002\u000055ll\u0001\u0000fg\u0002\u0000::@@\u0002\u0000"+
+ "CCFF\u0001\u0000XY\u0001\u0000Z\\\u0002\u0000BBOO\u0002\u0000QQSW\u0002"+
+ "\u0000\u0016\u0016\u0018\u0019\u0325\u0000\u00a6\u0001\u0000\u0000\u0000"+
+ "\u0002\u00a9\u0001\u0000\u0000\u0000\u0004\u00ba\u0001\u0000\u0000\u0000"+
+ "\u0006\u00da\u0001\u0000\u0000\u0000\b\u00dc\u0001\u0000\u0000\u0000\n"+
+ "\u00df\u0001\u0000\u0000\u0000\f\u00e1\u0001\u0000\u0000\u0000\u000e\u00e4"+
+ "\u0001\u0000\u0000\u0000\u0010\u00ef\u0001\u0000\u0000\u0000\u0012\u00f3"+
+ "\u0001\u0000\u0000\u0000\u0014\u00fb\u0001\u0000\u0000\u0000\u0016\u0100"+
+ "\u0001\u0000\u0000\u0000\u0018\u0103\u0001\u0000\u0000\u0000\u001a\u0106"+
+ "\u0001\u0000\u0000\u0000\u001c\u011a\u0001\u0000\u0000\u0000\u001e\u011c"+
+ "\u0001\u0000\u0000\u0000 \u011e\u0001\u0000\u0000\u0000\"\u0120\u0001"+
+ "\u0000\u0000\u0000$\u0122\u0001\u0000\u0000\u0000&\u0124\u0001\u0000\u0000"+
+ "\u0000(\u012d\u0001\u0000\u0000\u0000*\u0130\u0001\u0000\u0000\u0000,"+
+ "\u0138\u0001\u0000\u0000\u0000.\u0140\u0001\u0000\u0000\u00000\u0145\u0001"+
+ "\u0000\u0000\u00002\u014d\u0001\u0000\u0000\u00004\u0155\u0001\u0000\u0000"+
+ "\u00006\u015d\u0001\u0000\u0000\u00008\u0162\u0001\u0000\u0000\u0000:"+
+ "\u0166\u0001\u0000\u0000\u0000<\u016a\u0001\u0000\u0000\u0000>\u016f\u0001"+
+ "\u0000\u0000\u0000@\u0171\u0001\u0000\u0000\u0000B\u0174\u0001\u0000\u0000"+
+ "\u0000D\u017d\u0001\u0000\u0000\u0000F\u0185\u0001\u0000\u0000\u0000H"+
+ "\u0188\u0001\u0000\u0000\u0000J\u018b\u0001\u0000\u0000\u0000L\u0194\u0001"+
+ "\u0000\u0000\u0000N\u0198\u0001\u0000\u0000\u0000P\u019e\u0001\u0000\u0000"+
+ "\u0000R\u01a2\u0001\u0000\u0000\u0000T\u01a5\u0001\u0000\u0000\u0000V"+
+ "\u01ad\u0001\u0000\u0000\u0000X\u01b1\u0001\u0000\u0000\u0000Z\u01b4\u0001"+
+ "\u0000\u0000\u0000\\\u01b8\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000"+
+ "\u0000\u0000`\u01cf\u0001\u0000\u0000\u0000b\u01d3\u0001\u0000\u0000\u0000"+
+ "d\u01d8\u0001\u0000\u0000\u0000f\u01de\u0001\u0000\u0000\u0000h\u01eb"+
+ "\u0001\u0000\u0000\u0000j\u01ee\u0001\u0000\u0000\u0000l\u01f2\u0001\u0000"+
+ "\u0000\u0000n\u01f6\u0001\u0000\u0000\u0000p\u01fa\u0001\u0000\u0000\u0000"+
+ "r\u020b\u0001\u0000\u0000\u0000t\u020d\u0001\u0000\u0000\u0000v\u020f"+
+ "\u0001\u0000\u0000\u0000x\u0217\u0001\u0000\u0000\u0000z\u021f\u0001\u0000"+
+ "\u0000\u0000|\u0241\u0001\u0000\u0000\u0000~\u025c\u0001\u0000\u0000\u0000"+
+ "\u0080\u025e\u0001\u0000\u0000\u0000\u0082\u026b\u0001\u0000\u0000\u0000"+
+ "\u0084\u0271\u0001\u0000\u0000\u0000\u0086\u0286\u0001\u0000\u0000\u0000"+
+ "\u0088\u0290\u0001\u0000\u0000\u0000\u008a\u02a3\u0001\u0000\u0000\u0000"+
+ "\u008c\u02a5\u0001\u0000\u0000\u0000\u008e\u02b0\u0001\u0000\u0000\u0000"+
+ "\u0090\u02de\u0001\u0000\u0000\u0000\u0092\u02e0\u0001\u0000\u0000\u0000"+
+ "\u0094\u02e4\u0001\u0000\u0000\u0000\u0096\u02e7\u0001\u0000\u0000\u0000"+
+ "\u0098\u02ec\u0001\u0000\u0000\u0000\u009a\u02f0\u0001\u0000\u0000\u0000"+
+ "\u009c\u02f2\u0001\u0000\u0000\u0000\u009e\u02f4\u0001\u0000\u0000\u0000"+
+ "\u00a0\u02f9\u0001\u0000\u0000\u0000\u00a2\u02fb\u0001\u0000\u0000\u0000"+
+ "\u00a4\u0304\u0001\u0000\u0000\u0000\u00a6\u00a7\u0003\u0002\u0001\u0000"+
+ "\u00a7\u00a8\u0005\u0000\u0000\u0001\u00a8\u0001\u0001\u0000\u0000\u0000"+
+ "\u00a9\u00aa\u0006\u0001\uffff\uffff\u0000\u00aa\u00ab\u0003\u0004\u0002"+
+ "\u0000\u00ab\u00b1\u0001\u0000\u0000\u0000\u00ac\u00ad\n\u0001\u0000\u0000"+
+ "\u00ad\u00ae\u00054\u0000\u0000\u00ae\u00b0\u0003\u0006\u0003\u0000\u00af"+
+ "\u00ac\u0001\u0000\u0000\u0000\u00b0\u00b3\u0001\u0000\u0000\u0000\u00b1"+
+ "\u00af\u0001\u0000\u0000\u0000\u00b1\u00b2\u0001\u0000\u0000\u0000\u00b2"+
+ "\u0003\u0001\u0000\u0000\u0000\u00b3\u00b1\u0001\u0000\u0000\u0000\u00b4"+
+ "\u00bb\u0003X,\u0000\u00b5\u00bb\u0003\u0016\u000b\u0000\u00b6\u00bb\u0003"+
+ "\f\u0006\u0000\u00b7\u00bb\u0003\\.\u0000\u00b8\u00b9\u0004\u0002\u0001"+
+ "\u0000\u00b9\u00bb\u0003\u0018\f\u0000\u00ba\u00b4\u0001\u0000\u0000\u0000"+
+ "\u00ba\u00b5\u0001\u0000\u0000\u0000\u00ba\u00b6\u0001\u0000\u0000\u0000"+
+ "\u00ba\u00b7\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000\u0000"+
+ "\u00bb\u0005\u0001\u0000\u0000\u0000\u00bc\u00db\u0003(\u0014\u0000\u00bd"+
+ "\u00db\u0003\b\u0004\u0000\u00be\u00db\u0003F#\u0000\u00bf\u00db\u0003"+
+ "@ \u0000\u00c0\u00db\u0003*\u0015\u0000\u00c1\u00db\u0003B!\u0000\u00c2"+
+ "\u00db\u0003H$\u0000\u00c3\u00db\u0003J%\u0000\u00c4\u00db\u0003N\'\u0000"+
+ "\u00c5\u00db\u0003P(\u0000\u00c6\u00db\u0003^/\u0000\u00c7\u00db\u0003"+
+ "R)\u0000\u00c8\u00db\u0003\u009eO\u0000\u00c9\u00db\u0003f3\u0000\u00ca"+
+ "\u00cb\u0004\u0003\u0002\u0000\u00cb\u00db\u0003d2\u0000\u00cc\u00cd\u0004"+
+ "\u0003\u0003\u0000\u00cd\u00db\u0003b1\u0000\u00ce\u00cf\u0004\u0003\u0004"+
+ "\u0000\u00cf\u00db\u0003x<\u0000\u00d0\u00d1\u0004\u0003\u0005\u0000\u00d1"+
+ "\u00db\u0003h4\u0000\u00d2\u00d3\u0004\u0003\u0006\u0000\u00d3\u00db\u0003"+
+ "j5\u0000\u00d4\u00d5\u0004\u0003\u0007\u0000\u00d5\u00db\u0003v;\u0000"+
"\u00d6\u00d7\u0004\u0003\b\u0000\u00d7\u00db\u0003t:\u0000\u00d8\u00d9"+
"\u0004\u0003\t\u0000\u00d9\u00db\u0003z=\u0000\u00da\u00bc\u0001\u0000"+
"\u0000\u0000\u00da\u00bd\u0001\u0000\u0000\u0000\u00da\u00be\u0001\u0000"+
@@ -7284,7 +7295,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"\u0000\u016e\u0170\u0003<\u001e\u0000\u016f\u016c\u0001\u0000\u0000\u0000"+
"\u016f\u016d\u0001\u0000\u0000\u0000\u016f\u016e\u0001\u0000\u0000\u0000"+
"\u0170?\u0001\u0000\u0000\u0000\u0171\u0172\u0005\n\u0000\u0000\u0172"+
- "\u0173\u00056\u0000\u0000\u0173A\u0001\u0000\u0000\u0000\u0174\u0175\u0005"+
+ "\u0173\u0003\u0090H\u0000\u0173A\u0001\u0000\u0000\u0000\u0174\u0175\u0005"+
"\f\u0000\u0000\u0175\u017a\u0003D\"\u0000\u0176\u0177\u0005?\u0000\u0000"+
"\u0177\u0179\u0003D\"\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179"+
"\u017c\u0001\u0000\u0000\u0000\u017a\u0178\u0001\u0000\u0000\u0000\u017a"+
@@ -7365,147 +7376,148 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"\u0000\u0000\u0000\u020b\u020a\u0001\u0000\u0000\u0000\u020cs\u0001\u0000"+
"\u0000\u0000\u020d\u020e\u0005\u001f\u0000\u0000\u020eu\u0001\u0000\u0000"+
"\u0000\u020f\u0210\u0005\u0011\u0000\u0000\u0210\u0211\u0003\u0090H\u0000"+
- "\u0211\u0212\u0005K\u0000\u0000\u0212\u0213\u0003\u0012\t\u0000\u0213"+
- "\u0214\u0005P\u0000\u0000\u0214\u0215\u0003>\u001f\u0000\u0215w\u0001"+
- "\u0000\u0000\u0000\u0216\u0217\u0005\u000f\u0000\u0000\u0217\u0218\u0003"+
- "\u0086C\u0000\u0218\u0219\u0005P\u0000\u0000\u0219\u021c\u0003>\u001f"+
- "\u0000\u021a\u021b\u00059\u0000\u0000\u021b\u021d\u00030\u0018\u0000\u021c"+
- "\u021a\u0001\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d"+
- "y\u0001\u0000\u0000\u0000\u021e\u021f\u0005\u0012\u0000\u0000\u021f\u0221"+
- "\u0003\u0096K\u0000\u0220\u0222\u0003\u0098L\u0000\u0221\u0220\u0001\u0000"+
- "\u0000\u0000\u0221\u0222\u0001\u0000\u0000\u0000\u0222{\u0001\u0000\u0000"+
- "\u0000\u0223\u0224\u0006>\uffff\uffff\u0000\u0224\u0225\u0005H\u0000\u0000"+
- "\u0225\u0241\u0003|>\b\u0226\u0241\u0003\u0082A\u0000\u0227\u0241\u0003"+
- "~?\u0000\u0228\u022a\u0003\u0082A\u0000\u0229\u022b\u0005H\u0000\u0000"+
- "\u022a\u0229\u0001\u0000\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000"+
- "\u022b\u022c\u0001\u0000\u0000\u0000\u022c\u022d\u0005D\u0000\u0000\u022d"+
- "\u022e\u0005d\u0000\u0000\u022e\u0233\u0003\u0082A\u0000\u022f\u0230\u0005"+
- "?\u0000\u0000\u0230\u0232\u0003\u0082A\u0000\u0231\u022f\u0001\u0000\u0000"+
- "\u0000\u0232\u0235\u0001\u0000\u0000\u0000\u0233\u0231\u0001\u0000\u0000"+
- "\u0000\u0233\u0234\u0001\u0000\u0000\u0000\u0234\u0236\u0001\u0000\u0000"+
- "\u0000\u0235\u0233\u0001\u0000\u0000\u0000\u0236\u0237\u0005e\u0000\u0000"+
- "\u0237\u0241\u0001\u0000\u0000\u0000\u0238\u0239\u0003\u0082A\u0000\u0239"+
- "\u023b\u0005E\u0000\u0000\u023a\u023c\u0005H\u0000\u0000\u023b\u023a\u0001"+
- "\u0000\u0000\u0000\u023b\u023c\u0001\u0000\u0000\u0000\u023c\u023d\u0001"+
- "\u0000\u0000\u0000\u023d\u023e\u0005I\u0000\u0000\u023e\u0241\u0001\u0000"+
- "\u0000\u0000\u023f\u0241\u0003\u0080@\u0000\u0240\u0223\u0001\u0000\u0000"+
- "\u0000\u0240\u0226\u0001\u0000\u0000\u0000\u0240\u0227\u0001\u0000\u0000"+
- "\u0000\u0240\u0228\u0001\u0000\u0000\u0000\u0240\u0238\u0001\u0000\u0000"+
- "\u0000\u0240\u023f\u0001\u0000\u0000\u0000\u0241\u024a\u0001\u0000\u0000"+
- "\u0000\u0242\u0243\n\u0005\u0000\u0000\u0243\u0244\u00058\u0000\u0000"+
- "\u0244\u0249\u0003|>\u0006\u0245\u0246\n\u0004\u0000\u0000\u0246\u0247"+
- "\u0005L\u0000\u0000\u0247\u0249\u0003|>\u0005\u0248\u0242\u0001\u0000"+
- "\u0000\u0000\u0248\u0245\u0001\u0000\u0000\u0000\u0249\u024c\u0001\u0000"+
- "\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024a\u024b\u0001\u0000"+
- "\u0000\u0000\u024b}\u0001\u0000\u0000\u0000\u024c\u024a\u0001\u0000\u0000"+
- "\u0000\u024d\u024f\u0003\u0082A\u0000\u024e\u0250\u0005H\u0000\u0000\u024f"+
- "\u024e\u0001\u0000\u0000\u0000\u024f\u0250\u0001\u0000\u0000\u0000\u0250"+
- "\u0251\u0001\u0000\u0000\u0000\u0251\u0252\u0005G\u0000\u0000\u0252\u0253"+
- "\u0003\u009aM\u0000\u0253\u025c\u0001\u0000\u0000\u0000\u0254\u0256\u0003"+
- "\u0082A\u0000\u0255\u0257\u0005H\u0000\u0000\u0256\u0255\u0001\u0000\u0000"+
- "\u0000\u0256\u0257\u0001\u0000\u0000\u0000\u0257\u0258\u0001\u0000\u0000"+
- "\u0000\u0258\u0259\u0005N\u0000\u0000\u0259\u025a\u0003\u009aM\u0000\u025a"+
- "\u025c\u0001\u0000\u0000\u0000\u025b\u024d\u0001\u0000\u0000\u0000\u025b"+
- "\u0254\u0001\u0000\u0000\u0000\u025c\u007f\u0001\u0000\u0000\u0000\u025d"+
- "\u0260\u00030\u0018\u0000\u025e\u025f\u0005=\u0000\u0000\u025f\u0261\u0003"+
- "\n\u0005\u0000\u0260\u025e\u0001\u0000\u0000\u0000\u0260\u0261\u0001\u0000"+
- "\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000\u0262\u0263\u0005>\u0000"+
- "\u0000\u0263\u0264\u0003\u0090H\u0000\u0264\u0081\u0001\u0000\u0000\u0000"+
- "\u0265\u026b\u0003\u0084B\u0000\u0266\u0267\u0003\u0084B\u0000\u0267\u0268"+
- "\u0003\u009cN\u0000\u0268\u0269\u0003\u0084B\u0000\u0269\u026b\u0001\u0000"+
- "\u0000\u0000\u026a\u0265\u0001\u0000\u0000\u0000\u026a\u0266\u0001\u0000"+
- "\u0000\u0000\u026b\u0083\u0001\u0000\u0000\u0000\u026c\u026d\u0006B\uffff"+
- "\uffff\u0000\u026d\u0271\u0003\u0086C\u0000\u026e\u026f\u0007\u0004\u0000"+
- "\u0000\u026f\u0271\u0003\u0084B\u0003\u0270\u026c\u0001\u0000\u0000\u0000"+
- "\u0270\u026e\u0001\u0000\u0000\u0000\u0271\u027a\u0001\u0000\u0000\u0000"+
- "\u0272\u0273\n\u0002\u0000\u0000\u0273\u0274\u0007\u0005\u0000\u0000\u0274"+
- "\u0279\u0003\u0084B\u0003\u0275\u0276\n\u0001\u0000\u0000\u0276\u0277"+
- "\u0007\u0004\u0000\u0000\u0277\u0279\u0003\u0084B\u0002\u0278\u0272\u0001"+
- "\u0000\u0000\u0000\u0278\u0275\u0001\u0000\u0000\u0000\u0279\u027c\u0001"+
- "\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027a\u027b\u0001"+
- "\u0000\u0000\u0000\u027b\u0085\u0001\u0000\u0000\u0000\u027c\u027a\u0001"+
- "\u0000\u0000\u0000\u027d\u027e\u0006C\uffff\uffff\u0000\u027e\u0286\u0003"+
- "\u0090H\u0000\u027f\u0286\u00030\u0018\u0000\u0280\u0286\u0003\u0088D"+
- "\u0000\u0281\u0282\u0005d\u0000\u0000\u0282\u0283\u0003|>\u0000\u0283"+
- "\u0284\u0005e\u0000\u0000\u0284\u0286\u0001\u0000\u0000\u0000\u0285\u027d"+
- "\u0001\u0000\u0000\u0000\u0285\u027f\u0001\u0000\u0000\u0000\u0285\u0280"+
- "\u0001\u0000\u0000\u0000\u0285\u0281\u0001\u0000\u0000\u0000\u0286\u028c"+
- "\u0001\u0000\u0000\u0000\u0287\u0288\n\u0001\u0000\u0000\u0288\u0289\u0005"+
- "=\u0000\u0000\u0289\u028b\u0003\n\u0005\u0000\u028a\u0287\u0001\u0000"+
- "\u0000\u0000\u028b\u028e\u0001\u0000\u0000\u0000\u028c\u028a\u0001\u0000"+
- "\u0000\u0000\u028c\u028d\u0001\u0000\u0000\u0000\u028d\u0087\u0001\u0000"+
- "\u0000\u0000\u028e\u028c\u0001\u0000\u0000\u0000\u028f\u0290\u0003\u008a"+
- "E\u0000\u0290\u029e\u0005d\u0000\u0000\u0291\u029f\u0005Z\u0000\u0000"+
- "\u0292\u0297\u0003|>\u0000\u0293\u0294\u0005?\u0000\u0000\u0294\u0296"+
- "\u0003|>\u0000\u0295\u0293\u0001\u0000\u0000\u0000\u0296\u0299\u0001\u0000"+
- "\u0000\u0000\u0297\u0295\u0001\u0000\u0000\u0000\u0297\u0298\u0001\u0000"+
- "\u0000\u0000\u0298\u029c\u0001\u0000\u0000\u0000\u0299\u0297\u0001\u0000"+
- "\u0000\u0000\u029a\u029b\u0005?\u0000\u0000\u029b\u029d\u0003\u008cF\u0000"+
- "\u029c\u029a\u0001\u0000\u0000\u0000\u029c\u029d\u0001\u0000\u0000\u0000"+
- "\u029d\u029f\u0001\u0000\u0000\u0000\u029e\u0291\u0001\u0000\u0000\u0000"+
- "\u029e\u0292\u0001\u0000\u0000\u0000\u029e\u029f\u0001\u0000\u0000\u0000"+
- "\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005e\u0000\u0000\u02a1"+
- "\u0089\u0001\u0000\u0000\u0000\u02a2\u02a3\u0003>\u001f\u0000\u02a3\u008b"+
- "\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005]\u0000\u0000\u02a5\u02aa\u0003"+
- "\u008eG\u0000\u02a6\u02a7\u0005?\u0000\u0000\u02a7\u02a9\u0003\u008eG"+
- "\u0000\u02a8\u02a6\u0001\u0000\u0000\u0000\u02a9\u02ac\u0001\u0000\u0000"+
- "\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000"+
- "\u0000\u02ab\u02ad\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000"+
- "\u0000\u02ad\u02ae\u0005^\u0000\u0000\u02ae\u008d\u0001\u0000\u0000\u0000"+
- "\u02af\u02b0\u0003\u009aM\u0000\u02b0\u02b1\u0005>\u0000\u0000\u02b1\u02b2"+
- "\u0003\u0090H\u0000\u02b2\u008f\u0001\u0000\u0000\u0000\u02b3\u02de\u0005"+
- "I\u0000\u0000\u02b4\u02b5\u0003\u0098L\u0000\u02b5\u02b6\u0005f\u0000"+
- "\u0000\u02b6\u02de\u0001\u0000\u0000\u0000\u02b7\u02de\u0003\u0096K\u0000"+
- "\u02b8\u02de\u0003\u0098L\u0000\u02b9\u02de\u0003\u0092I\u0000\u02ba\u02de"+
- "\u0003:\u001d\u0000\u02bb\u02de\u0003\u009aM\u0000\u02bc\u02bd\u0005b"+
- "\u0000\u0000\u02bd\u02c2\u0003\u0094J\u0000\u02be\u02bf\u0005?\u0000\u0000"+
- "\u02bf\u02c1\u0003\u0094J\u0000\u02c0\u02be\u0001\u0000\u0000\u0000\u02c1"+
- "\u02c4\u0001\u0000\u0000\u0000\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2"+
- "\u02c3\u0001\u0000\u0000\u0000\u02c3\u02c5\u0001\u0000\u0000\u0000\u02c4"+
- "\u02c2\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005c\u0000\u0000\u02c6\u02de"+
- "\u0001\u0000\u0000\u0000\u02c7\u02c8\u0005b\u0000\u0000\u02c8\u02cd\u0003"+
- "\u0092I\u0000\u02c9\u02ca\u0005?\u0000\u0000\u02ca\u02cc\u0003\u0092I"+
- "\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cc\u02cf\u0001\u0000\u0000"+
- "\u0000\u02cd\u02cb\u0001\u0000\u0000\u0000\u02cd\u02ce\u0001\u0000\u0000"+
- "\u0000\u02ce\u02d0\u0001\u0000\u0000\u0000\u02cf\u02cd\u0001\u0000\u0000"+
- "\u0000\u02d0\u02d1\u0005c\u0000\u0000\u02d1\u02de\u0001\u0000\u0000\u0000"+
- "\u02d2\u02d3\u0005b\u0000\u0000\u02d3\u02d8\u0003\u009aM\u0000\u02d4\u02d5"+
- "\u0005?\u0000\u0000\u02d5\u02d7\u0003\u009aM\u0000\u02d6\u02d4\u0001\u0000"+
- "\u0000\u0000\u02d7\u02da\u0001\u0000\u0000\u0000\u02d8\u02d6\u0001\u0000"+
- "\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000\u0000\u02d9\u02db\u0001\u0000"+
- "\u0000\u0000\u02da\u02d8\u0001\u0000\u0000\u0000\u02db\u02dc\u0005c\u0000"+
- "\u0000\u02dc\u02de\u0001\u0000\u0000\u0000\u02dd\u02b3\u0001\u0000\u0000"+
- "\u0000\u02dd\u02b4\u0001\u0000\u0000\u0000\u02dd\u02b7\u0001\u0000\u0000"+
- "\u0000\u02dd\u02b8\u0001\u0000\u0000\u0000\u02dd\u02b9\u0001\u0000\u0000"+
- "\u0000\u02dd\u02ba\u0001\u0000\u0000\u0000\u02dd\u02bb\u0001\u0000\u0000"+
- "\u0000\u02dd\u02bc\u0001\u0000\u0000\u0000\u02dd\u02c7\u0001\u0000\u0000"+
- "\u0000\u02dd\u02d2\u0001\u0000\u0000\u0000\u02de\u0091\u0001\u0000\u0000"+
- "\u0000\u02df\u02e0\u0007\u0006\u0000\u0000\u02e0\u0093\u0001\u0000\u0000"+
- "\u0000\u02e1\u02e4\u0003\u0096K\u0000\u02e2\u02e4\u0003\u0098L\u0000\u02e3"+
- "\u02e1\u0001\u0000\u0000\u0000\u02e3\u02e2\u0001\u0000\u0000\u0000\u02e4"+
- "\u0095\u0001\u0000\u0000\u0000\u02e5\u02e7\u0007\u0004\u0000\u0000\u02e6"+
- "\u02e5\u0001\u0000\u0000\u0000\u02e6\u02e7\u0001\u0000\u0000\u0000\u02e7"+
- "\u02e8\u0001\u0000\u0000\u0000\u02e8\u02e9\u00057\u0000\u0000\u02e9\u0097"+
- "\u0001\u0000\u0000\u0000\u02ea\u02ec\u0007\u0004\u0000\u0000\u02eb\u02ea"+
- "\u0001\u0000\u0000\u0000\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec\u02ed"+
- "\u0001\u0000\u0000\u0000\u02ed\u02ee\u00056\u0000\u0000\u02ee\u0099\u0001"+
- "\u0000\u0000\u0000\u02ef\u02f0\u00055\u0000\u0000\u02f0\u009b\u0001\u0000"+
- "\u0000\u0000\u02f1\u02f2\u0007\u0007\u0000\u0000\u02f2\u009d\u0001\u0000"+
- "\u0000\u0000\u02f3\u02f4\u0007\b\u0000\u0000\u02f4\u02f5\u0005s\u0000"+
- "\u0000\u02f5\u02f6\u0003\u00a0P\u0000\u02f6\u02f7\u0003\u00a2Q\u0000\u02f7"+
- "\u009f\u0001\u0000\u0000\u0000\u02f8\u02f9\u0003\u001c\u000e\u0000\u02f9"+
- "\u00a1\u0001\u0000\u0000\u0000\u02fa\u02fb\u0005K\u0000\u0000\u02fb\u0300"+
- "\u0003\u00a4R\u0000\u02fc\u02fd\u0005?\u0000\u0000\u02fd\u02ff\u0003\u00a4"+
- "R\u0000\u02fe\u02fc\u0001\u0000\u0000\u0000\u02ff\u0302\u0001\u0000\u0000"+
- "\u0000\u0300\u02fe\u0001\u0000\u0000\u0000\u0300\u0301\u0001\u0000\u0000"+
- "\u0000\u0301\u00a3\u0001\u0000\u0000\u0000\u0302\u0300\u0001\u0000\u0000"+
- "\u0000\u0303\u0304\u0003\u0082A\u0000\u0304\u00a5\u0001\u0000\u0000\u0000"+
- "D\u00b1\u00ba\u00da\u00e9\u00ef\u00f8\u00fe\u010b\u010f\u011a\u012a\u0132"+
+ "\u0211\u0212\u0005K\u0000\u0000\u0212\u0215\u0003\u0012\t\u0000\u0213"+
+ "\u0214\u0005P\u0000\u0000\u0214\u0216\u0003>\u001f\u0000\u0215\u0213\u0001"+
+ "\u0000\u0000\u0000\u0215\u0216\u0001\u0000\u0000\u0000\u0216w\u0001\u0000"+
+ "\u0000\u0000\u0217\u0218\u0005\u000f\u0000\u0000\u0218\u0219\u0003\u0086"+
+ "C\u0000\u0219\u021a\u0005P\u0000\u0000\u021a\u021d\u0003>\u001f\u0000"+
+ "\u021b\u021c\u00059\u0000\u0000\u021c\u021e\u00030\u0018\u0000\u021d\u021b"+
+ "\u0001\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021ey\u0001"+
+ "\u0000\u0000\u0000\u021f\u0220\u0005\u0012\u0000\u0000\u0220\u0222\u0003"+
+ "\u0096K\u0000\u0221\u0223\u0003\u0098L\u0000\u0222\u0221\u0001\u0000\u0000"+
+ "\u0000\u0222\u0223\u0001\u0000\u0000\u0000\u0223{\u0001\u0000\u0000\u0000"+
+ "\u0224\u0225\u0006>\uffff\uffff\u0000\u0225\u0226\u0005H\u0000\u0000\u0226"+
+ "\u0242\u0003|>\b\u0227\u0242\u0003\u0082A\u0000\u0228\u0242\u0003~?\u0000"+
+ "\u0229\u022b\u0003\u0082A\u0000\u022a\u022c\u0005H\u0000\u0000\u022b\u022a"+
+ "\u0001\u0000\u0000\u0000\u022b\u022c\u0001\u0000\u0000\u0000\u022c\u022d"+
+ "\u0001\u0000\u0000\u0000\u022d\u022e\u0005D\u0000\u0000\u022e\u022f\u0005"+
+ "d\u0000\u0000\u022f\u0234\u0003\u0082A\u0000\u0230\u0231\u0005?\u0000"+
+ "\u0000\u0231\u0233\u0003\u0082A\u0000\u0232\u0230\u0001\u0000\u0000\u0000"+
+ "\u0233\u0236\u0001\u0000\u0000\u0000\u0234\u0232\u0001\u0000\u0000\u0000"+
+ "\u0234\u0235\u0001\u0000\u0000\u0000\u0235\u0237\u0001\u0000\u0000\u0000"+
+ "\u0236\u0234\u0001\u0000\u0000\u0000\u0237\u0238\u0005e\u0000\u0000\u0238"+
+ "\u0242\u0001\u0000\u0000\u0000\u0239\u023a\u0003\u0082A\u0000\u023a\u023c"+
+ "\u0005E\u0000\u0000\u023b\u023d\u0005H\u0000\u0000\u023c\u023b\u0001\u0000"+
+ "\u0000\u0000\u023c\u023d\u0001\u0000\u0000\u0000\u023d\u023e\u0001\u0000"+
+ "\u0000\u0000\u023e\u023f\u0005I\u0000\u0000\u023f\u0242\u0001\u0000\u0000"+
+ "\u0000\u0240\u0242\u0003\u0080@\u0000\u0241\u0224\u0001\u0000\u0000\u0000"+
+ "\u0241\u0227\u0001\u0000\u0000\u0000\u0241\u0228\u0001\u0000\u0000\u0000"+
+ "\u0241\u0229\u0001\u0000\u0000\u0000\u0241\u0239\u0001\u0000\u0000\u0000"+
+ "\u0241\u0240\u0001\u0000\u0000\u0000\u0242\u024b\u0001\u0000\u0000\u0000"+
+ "\u0243\u0244\n\u0005\u0000\u0000\u0244\u0245\u00058\u0000\u0000\u0245"+
+ "\u024a\u0003|>\u0006\u0246\u0247\n\u0004\u0000\u0000\u0247\u0248\u0005"+
+ "L\u0000\u0000\u0248\u024a\u0003|>\u0005\u0249\u0243\u0001\u0000\u0000"+
+ "\u0000\u0249\u0246\u0001\u0000\u0000\u0000\u024a\u024d\u0001\u0000\u0000"+
+ "\u0000\u024b\u0249\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000"+
+ "\u0000\u024c}\u0001\u0000\u0000\u0000\u024d\u024b\u0001\u0000\u0000\u0000"+
+ "\u024e\u0250\u0003\u0082A\u0000\u024f\u0251\u0005H\u0000\u0000\u0250\u024f"+
+ "\u0001\u0000\u0000\u0000\u0250\u0251\u0001\u0000\u0000\u0000\u0251\u0252"+
+ "\u0001\u0000\u0000\u0000\u0252\u0253\u0005G\u0000\u0000\u0253\u0254\u0003"+
+ "\u009aM\u0000\u0254\u025d\u0001\u0000\u0000\u0000\u0255\u0257\u0003\u0082"+
+ "A\u0000\u0256\u0258\u0005H\u0000\u0000\u0257\u0256\u0001\u0000\u0000\u0000"+
+ "\u0257\u0258\u0001\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000\u0000"+
+ "\u0259\u025a\u0005N\u0000\u0000\u025a\u025b\u0003\u009aM\u0000\u025b\u025d"+
+ "\u0001\u0000\u0000\u0000\u025c\u024e\u0001\u0000\u0000\u0000\u025c\u0255"+
+ "\u0001\u0000\u0000\u0000\u025d\u007f\u0001\u0000\u0000\u0000\u025e\u0261"+
+ "\u00030\u0018\u0000\u025f\u0260\u0005=\u0000\u0000\u0260\u0262\u0003\n"+
+ "\u0005\u0000\u0261\u025f\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000"+
+ "\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0264\u0005>\u0000"+
+ "\u0000\u0264\u0265\u0003\u0090H\u0000\u0265\u0081\u0001\u0000\u0000\u0000"+
+ "\u0266\u026c\u0003\u0084B\u0000\u0267\u0268\u0003\u0084B\u0000\u0268\u0269"+
+ "\u0003\u009cN\u0000\u0269\u026a\u0003\u0084B\u0000\u026a\u026c\u0001\u0000"+
+ "\u0000\u0000\u026b\u0266\u0001\u0000\u0000\u0000\u026b\u0267\u0001\u0000"+
+ "\u0000\u0000\u026c\u0083\u0001\u0000\u0000\u0000\u026d\u026e\u0006B\uffff"+
+ "\uffff\u0000\u026e\u0272\u0003\u0086C\u0000\u026f\u0270\u0007\u0004\u0000"+
+ "\u0000\u0270\u0272\u0003\u0084B\u0003\u0271\u026d\u0001\u0000\u0000\u0000"+
+ "\u0271\u026f\u0001\u0000\u0000\u0000\u0272\u027b\u0001\u0000\u0000\u0000"+
+ "\u0273\u0274\n\u0002\u0000\u0000\u0274\u0275\u0007\u0005\u0000\u0000\u0275"+
+ "\u027a\u0003\u0084B\u0003\u0276\u0277\n\u0001\u0000\u0000\u0277\u0278"+
+ "\u0007\u0004\u0000\u0000\u0278\u027a\u0003\u0084B\u0002\u0279\u0273\u0001"+
+ "\u0000\u0000\u0000\u0279\u0276\u0001\u0000\u0000\u0000\u027a\u027d\u0001"+
+ "\u0000\u0000\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001"+
+ "\u0000\u0000\u0000\u027c\u0085\u0001\u0000\u0000\u0000\u027d\u027b\u0001"+
+ "\u0000\u0000\u0000\u027e\u027f\u0006C\uffff\uffff\u0000\u027f\u0287\u0003"+
+ "\u0090H\u0000\u0280\u0287\u00030\u0018\u0000\u0281\u0287\u0003\u0088D"+
+ "\u0000\u0282\u0283\u0005d\u0000\u0000\u0283\u0284\u0003|>\u0000\u0284"+
+ "\u0285\u0005e\u0000\u0000\u0285\u0287\u0001\u0000\u0000\u0000\u0286\u027e"+
+ "\u0001\u0000\u0000\u0000\u0286\u0280\u0001\u0000\u0000\u0000\u0286\u0281"+
+ "\u0001\u0000\u0000\u0000\u0286\u0282\u0001\u0000\u0000\u0000\u0287\u028d"+
+ "\u0001\u0000\u0000\u0000\u0288\u0289\n\u0001\u0000\u0000\u0289\u028a\u0005"+
+ "=\u0000\u0000\u028a\u028c\u0003\n\u0005\u0000\u028b\u0288\u0001\u0000"+
+ "\u0000\u0000\u028c\u028f\u0001\u0000\u0000\u0000\u028d\u028b\u0001\u0000"+
+ "\u0000\u0000\u028d\u028e\u0001\u0000\u0000\u0000\u028e\u0087\u0001\u0000"+
+ "\u0000\u0000\u028f\u028d\u0001\u0000\u0000\u0000\u0290\u0291\u0003\u008a"+
+ "E\u0000\u0291\u029f\u0005d\u0000\u0000\u0292\u02a0\u0005Z\u0000\u0000"+
+ "\u0293\u0298\u0003|>\u0000\u0294\u0295\u0005?\u0000\u0000\u0295\u0297"+
+ "\u0003|>\u0000\u0296\u0294\u0001\u0000\u0000\u0000\u0297\u029a\u0001\u0000"+
+ "\u0000\u0000\u0298\u0296\u0001\u0000\u0000\u0000\u0298\u0299\u0001\u0000"+
+ "\u0000\u0000\u0299\u029d\u0001\u0000\u0000\u0000\u029a\u0298\u0001\u0000"+
+ "\u0000\u0000\u029b\u029c\u0005?\u0000\u0000\u029c\u029e\u0003\u008cF\u0000"+
+ "\u029d\u029b\u0001\u0000\u0000\u0000\u029d\u029e\u0001\u0000\u0000\u0000"+
+ "\u029e\u02a0\u0001\u0000\u0000\u0000\u029f\u0292\u0001\u0000\u0000\u0000"+
+ "\u029f\u0293\u0001\u0000\u0000\u0000\u029f\u02a0\u0001\u0000\u0000\u0000"+
+ "\u02a0\u02a1\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005e\u0000\u0000\u02a2"+
+ "\u0089\u0001\u0000\u0000\u0000\u02a3\u02a4\u0003>\u001f\u0000\u02a4\u008b"+
+ "\u0001\u0000\u0000\u0000\u02a5\u02a6\u0005]\u0000\u0000\u02a6\u02ab\u0003"+
+ "\u008eG\u0000\u02a7\u02a8\u0005?\u0000\u0000\u02a8\u02aa\u0003\u008eG"+
+ "\u0000\u02a9\u02a7\u0001\u0000\u0000\u0000\u02aa\u02ad\u0001\u0000\u0000"+
+ "\u0000\u02ab\u02a9\u0001\u0000\u0000\u0000\u02ab\u02ac\u0001\u0000\u0000"+
+ "\u0000\u02ac\u02ae\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001\u0000\u0000"+
+ "\u0000\u02ae\u02af\u0005^\u0000\u0000\u02af\u008d\u0001\u0000\u0000\u0000"+
+ "\u02b0\u02b1\u0003\u009aM\u0000\u02b1\u02b2\u0005>\u0000\u0000\u02b2\u02b3"+
+ "\u0003\u0090H\u0000\u02b3\u008f\u0001\u0000\u0000\u0000\u02b4\u02df\u0005"+
+ "I\u0000\u0000\u02b5\u02b6\u0003\u0098L\u0000\u02b6\u02b7\u0005f\u0000"+
+ "\u0000\u02b7\u02df\u0001\u0000\u0000\u0000\u02b8\u02df\u0003\u0096K\u0000"+
+ "\u02b9\u02df\u0003\u0098L\u0000\u02ba\u02df\u0003\u0092I\u0000\u02bb\u02df"+
+ "\u0003:\u001d\u0000\u02bc\u02df\u0003\u009aM\u0000\u02bd\u02be\u0005b"+
+ "\u0000\u0000\u02be\u02c3\u0003\u0094J\u0000\u02bf\u02c0\u0005?\u0000\u0000"+
+ "\u02c0\u02c2\u0003\u0094J\u0000\u02c1\u02bf\u0001\u0000\u0000\u0000\u02c2"+
+ "\u02c5\u0001\u0000\u0000\u0000\u02c3\u02c1\u0001\u0000\u0000\u0000\u02c3"+
+ "\u02c4\u0001\u0000\u0000\u0000\u02c4\u02c6\u0001\u0000\u0000\u0000\u02c5"+
+ "\u02c3\u0001\u0000\u0000\u0000\u02c6\u02c7\u0005c\u0000\u0000\u02c7\u02df"+
+ "\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005b\u0000\u0000\u02c9\u02ce\u0003"+
+ "\u0092I\u0000\u02ca\u02cb\u0005?\u0000\u0000\u02cb\u02cd\u0003\u0092I"+
+ "\u0000\u02cc\u02ca\u0001\u0000\u0000\u0000\u02cd\u02d0\u0001\u0000\u0000"+
+ "\u0000\u02ce\u02cc\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001\u0000\u0000"+
+ "\u0000\u02cf\u02d1\u0001\u0000\u0000\u0000\u02d0\u02ce\u0001\u0000\u0000"+
+ "\u0000\u02d1\u02d2\u0005c\u0000\u0000\u02d2\u02df\u0001\u0000\u0000\u0000"+
+ "\u02d3\u02d4\u0005b\u0000\u0000\u02d4\u02d9\u0003\u009aM\u0000\u02d5\u02d6"+
+ "\u0005?\u0000\u0000\u02d6\u02d8\u0003\u009aM\u0000\u02d7\u02d5\u0001\u0000"+
+ "\u0000\u0000\u02d8\u02db\u0001\u0000\u0000\u0000\u02d9\u02d7\u0001\u0000"+
+ "\u0000\u0000\u02d9\u02da\u0001\u0000\u0000\u0000\u02da\u02dc\u0001\u0000"+
+ "\u0000\u0000\u02db\u02d9\u0001\u0000\u0000\u0000\u02dc\u02dd\u0005c\u0000"+
+ "\u0000\u02dd\u02df\u0001\u0000\u0000\u0000\u02de\u02b4\u0001\u0000\u0000"+
+ "\u0000\u02de\u02b5\u0001\u0000\u0000\u0000\u02de\u02b8\u0001\u0000\u0000"+
+ "\u0000\u02de\u02b9\u0001\u0000\u0000\u0000\u02de\u02ba\u0001\u0000\u0000"+
+ "\u0000\u02de\u02bb\u0001\u0000\u0000\u0000\u02de\u02bc\u0001\u0000\u0000"+
+ "\u0000\u02de\u02bd\u0001\u0000\u0000\u0000\u02de\u02c8\u0001\u0000\u0000"+
+ "\u0000\u02de\u02d3\u0001\u0000\u0000\u0000\u02df\u0091\u0001\u0000\u0000"+
+ "\u0000\u02e0\u02e1\u0007\u0006\u0000\u0000\u02e1\u0093\u0001\u0000\u0000"+
+ "\u0000\u02e2\u02e5\u0003\u0096K\u0000\u02e3\u02e5\u0003\u0098L\u0000\u02e4"+
+ "\u02e2\u0001\u0000\u0000\u0000\u02e4\u02e3\u0001\u0000\u0000\u0000\u02e5"+
+ "\u0095\u0001\u0000\u0000\u0000\u02e6\u02e8\u0007\u0004\u0000\u0000\u02e7"+
+ "\u02e6\u0001\u0000\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8"+
+ "\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ea\u00057\u0000\u0000\u02ea\u0097"+
+ "\u0001\u0000\u0000\u0000\u02eb\u02ed\u0007\u0004\u0000\u0000\u02ec\u02eb"+
+ "\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee"+
+ "\u0001\u0000\u0000\u0000\u02ee\u02ef\u00056\u0000\u0000\u02ef\u0099\u0001"+
+ "\u0000\u0000\u0000\u02f0\u02f1\u00055\u0000\u0000\u02f1\u009b\u0001\u0000"+
+ "\u0000\u0000\u02f2\u02f3\u0007\u0007\u0000\u0000\u02f3\u009d\u0001\u0000"+
+ "\u0000\u0000\u02f4\u02f5\u0007\b\u0000\u0000\u02f5\u02f6\u0005s\u0000"+
+ "\u0000\u02f6\u02f7\u0003\u00a0P\u0000\u02f7\u02f8\u0003\u00a2Q\u0000\u02f8"+
+ "\u009f\u0001\u0000\u0000\u0000\u02f9\u02fa\u0003\u001c\u000e\u0000\u02fa"+
+ "\u00a1\u0001\u0000\u0000\u0000\u02fb\u02fc\u0005K\u0000\u0000\u02fc\u0301"+
+ "\u0003\u00a4R\u0000\u02fd\u02fe\u0005?\u0000\u0000\u02fe\u0300\u0003\u00a4"+
+ "R\u0000\u02ff\u02fd\u0001\u0000\u0000\u0000\u0300\u0303\u0001\u0000\u0000"+
+ "\u0000\u0301\u02ff\u0001\u0000\u0000\u0000\u0301\u0302\u0001\u0000\u0000"+
+ "\u0000\u0302\u00a3\u0001\u0000\u0000\u0000\u0303\u0301\u0001\u0000\u0000"+
+ "\u0000\u0304\u0305\u0003\u0082A\u0000\u0305\u00a5\u0001\u0000\u0000\u0000"+
+ "E\u00b1\u00ba\u00da\u00e9\u00ef\u00f8\u00fe\u010b\u010f\u011a\u012a\u0132"+
"\u0136\u013d\u0143\u014a\u0152\u015a\u0162\u0166\u016a\u016f\u017a\u017f"+
"\u0183\u0191\u019c\u01aa\u01bf\u01c7\u01ca\u01cf\u01dc\u01e2\u01e9\u01f4"+
- "\u0202\u020b\u021c\u0221\u022a\u0233\u023b\u0240\u0248\u024a\u024f\u0256"+
- "\u025b\u0260\u026a\u0270\u0278\u027a\u0285\u028c\u0297\u029c\u029e\u02aa"+
- "\u02c2\u02cd\u02d8\u02dd\u02e3\u02e6\u02eb\u0300";
+ "\u0202\u020b\u0215\u021d\u0222\u022b\u0234\u023c\u0241\u0249\u024b\u0250"+
+ "\u0257\u025c\u0261\u026b\u0271\u0279\u027b\u0286\u028d\u0298\u029d\u029f"+
+ "\u02ab\u02c3\u02ce\u02d9\u02de\u02e4\u02e7\u02ec\u0301";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
From e60843178f96596b68ca2295eae2dfe0e56e388f Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Wed, 4 Jun 2025 22:14:57 +0100
Subject: [PATCH 4/8] Try: fix bwc tests
---
.../xpack/esql/ccq/MultiClusterSpecIT.java | 48 +++++++++++++++++--
1 file changed, 44 insertions(+), 4 deletions(-)
diff --git a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
index 75372792c28d6..8b6e999754f6c 100644
--- a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
+++ b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
@@ -258,10 +258,12 @@ static CsvSpecReader.CsvTestCase convertToRemoteIndices(CsvSpecReader.CsvTestCas
String[] localIndices = fromStatement.substring("FROM ".length()).split(",");
final String remoteIndices;
if (canUseRemoteIndicesOnly() && randomBoolean()) {
- remoteIndices = Arrays.stream(localIndices).map(index -> "*:" + index.trim()).collect(Collectors.joining(","));
+ remoteIndices = Arrays.stream(localIndices)
+ .map(index -> unquoteAndRequoteAsRemote(index.trim(), true))
+ .collect(Collectors.joining(","));
} else {
remoteIndices = Arrays.stream(localIndices)
- .map(index -> "*:" + index.trim() + "," + index.trim())
+ .map(index -> unquoteAndRequoteAsRemote(index.trim(), false))
.collect(Collectors.joining(","));
}
var newFrom = "FROM " + remoteIndices + " " + commands[0].substring(fromStatement.length());
@@ -272,9 +274,13 @@ static CsvSpecReader.CsvTestCase convertToRemoteIndices(CsvSpecReader.CsvTestCas
assert parts.length >= 2 : commands[0];
String[] indices = parts[1].split(",");
if (canUseRemoteIndicesOnly() && randomBoolean()) {
- parts[1] = Arrays.stream(indices).map(index -> "*:" + index.trim()).collect(Collectors.joining(","));
+ parts[1] = Arrays.stream(indices)
+ .map(index -> unquoteAndRequoteAsRemote(index.trim(), true))
+ .collect(Collectors.joining(","));
} else {
- parts[1] = Arrays.stream(indices).map(index -> "*:" + index.trim() + "," + index.trim()).collect(Collectors.joining(","));
+ parts[1] = Arrays.stream(indices)
+ .map(index -> unquoteAndRequoteAsRemote(index.trim(), false))
+ .collect(Collectors.joining(","));
}
String newNewMetrics = String.join(" ", parts);
testCase.query = newNewMetrics + query.substring(first.length());
@@ -307,6 +313,40 @@ static boolean hasIndexMetadata(String query) {
return false;
}
+ /**
+ * Since partial quoting is prohibited, we need to take the index name, unquote it,
+ * convert it to a remote index, and then requote it. For example, "employees" is unquoted,
+ * turned into the remote index *:employees, and then requoted to get "*:employees".
+ * @param index Name of the index.
+ * @param asRemoteIndexOnly If the return needs to be in the form of "*:idx,idx" or "*:idx".
+ * @return A remote index pattern that's requoted.
+ */
+ private static String unquoteAndRequoteAsRemote(String index, boolean asRemoteIndexOnly) {
+ index = index.trim();
+
+ int numOfQuotes = 0;
+ for (; numOfQuotes < index.length(); numOfQuotes++) {
+ if (index.charAt(numOfQuotes) != '"') {
+ break;
+ }
+ }
+
+ String unquoted = unquote(index, numOfQuotes);
+ if (asRemoteIndexOnly) {
+ return quote("*:" + unquoted, numOfQuotes);
+ } else {
+ return quote("*:" + unquoted + "," + unquoted, numOfQuotes);
+ }
+ }
+
+ private static String quote(String index, int numOfQuotes) {
+ return "\"".repeat(numOfQuotes) + index + "\"".repeat(numOfQuotes);
+ }
+
+ private static String unquote(String index, int numOfQuotes) {
+ return index.substring(numOfQuotes, index.length() - numOfQuotes);
+ }
+
@Override
protected boolean enableRoundingDoubleValuesOnAsserting() {
return true;
From 79cdcf54e76b01d65cbd96a3b6518cdde9ac30bf Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Tue, 17 Jun 2025 10:16:14 +0100
Subject: [PATCH 5/8] fix: regen parser
---
.../elasticsearch/xpack/esql/parser/EsqlBaseParser.interp | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
index 8dcc34c318f65..3b6e4453313be 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
@@ -369,8 +369,4 @@ joinPredicate
atn:
-<<<<<<< esql-ccs-simplified-grammar
-[4, 1, 139, 775, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 176, 8, 1, 10, 1, 12, 1, 179, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 187, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 219, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 232, 8, 7, 10, 7, 12, 7, 235, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 255, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 266, 8, 13, 10, 13, 12, 13, 269, 9, 13, 1, 13, 3, 13, 272, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 283, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 297, 8, 19, 10, 19, 12, 19, 300, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 307, 8, 21, 1, 21, 1, 21, 3, 21, 311, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 316, 8, 22, 10, 22, 12, 22, 319, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 324, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 329, 8, 24, 10, 24, 12, 24, 332, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 337, 8, 25, 10, 25, 12, 25, 340, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 345, 8, 26, 10, 26, 12, 26, 348, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 355, 8, 28, 1, 29, 1, 29, 3, 29, 359, 8, 29, 1, 30, 1, 30, 3, 30, 363, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 368, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 377, 8, 33, 10, 33, 12, 33, 380, 9, 33, 1, 34, 1, 34, 3, 34, 384, 8, 34, 1, 34, 1, 34, 3, 34, 388, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 400, 8, 37, 10, 37, 12, 37, 403, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 413, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 5, 42, 425, 8, 42, 10, 42, 12, 42, 428, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 454, 8, 47, 10, 47, 12, 47, 457, 9, 47, 3, 47, 459, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 464, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 477, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 483, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 490, 8, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 499, 8, 54, 11, 54, 12, 54, 500, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 513, 8, 56, 10, 56, 12, 56, 516, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 524, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 534, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 542, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 547, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 556, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 563, 8, 62, 10, 62, 12, 62, 566, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 573, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 578, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 586, 8, 62, 10, 62, 12, 62, 589, 9, 62, 1, 63, 1, 63, 3, 63, 593, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 600, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 605, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 610, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 620, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 626, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 634, 8, 66, 10, 66, 12, 66, 637, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 647, 8, 67, 1, 67, 1, 67, 1, 67, 5, 67, 652, 8, 67, 10, 67, 12, 67, 655, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 663, 8, 68, 10, 68, 12, 68, 666, 9, 68, 1, 68, 1, 68, 3, 68, 670, 8, 68, 3, 68, 672, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 682, 8, 70, 10, 70, 12, 70, 685, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 706, 8, 72, 10, 72, 12, 72, 709, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 717, 8, 72, 10, 72, 12, 72, 720, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 728, 8, 72, 10, 72, 12, 72, 731, 9, 72, 1, 72, 1, 72, 3, 72, 735, 8, 72, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 741, 8, 74, 1, 75, 3, 75, 744, 8, 75, 1, 75, 1, 75, 1, 76, 3, 76, 749, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 768, 8, 81, 10, 81, 12, 81, 771, 9, 81, 1, 82, 1, 82, 1, 82, 0, 5, 2, 112, 124, 132, 134, 83, 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, 0, 9, 2, 0, 53, 53, 108, 108, 1, 0, 102, 103, 2, 0, 58, 58, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 88, 89, 1, 0, 90, 92, 2, 0, 66, 66, 79, 79, 2, 0, 81, 81, 83, 87, 2, 0, 22, 22, 24, 25, 805, 0, 166, 1, 0, 0, 0, 2, 169, 1, 0, 0, 0, 4, 186, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 8, 220, 1, 0, 0, 0, 10, 223, 1, 0, 0, 0, 12, 225, 1, 0, 0, 0, 14, 228, 1, 0, 0, 0, 16, 239, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 251, 1, 0, 0, 0, 22, 256, 1, 0, 0, 0, 24, 259, 1, 0, 0, 0, 26, 262, 1, 0, 0, 0, 28, 282, 1, 0, 0, 0, 30, 284, 1, 0, 0, 0, 32, 286, 1, 0, 0, 0, 34, 288, 1, 0, 0, 0, 36, 290, 1, 0, 0, 0, 38, 292, 1, 0, 0, 0, 40, 301, 1, 0, 0, 0, 42, 304, 1, 0, 0, 0, 44, 312, 1, 0, 0, 0, 46, 320, 1, 0, 0, 0, 48, 325, 1, 0, 0, 0, 50, 333, 1, 0, 0, 0, 52, 341, 1, 0, 0, 0, 54, 349, 1, 0, 0, 0, 56, 354, 1, 0, 0, 0, 58, 358, 1, 0, 0, 0, 60, 362, 1, 0, 0, 0, 62, 367, 1, 0, 0, 0, 64, 369, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 381, 1, 0, 0, 0, 70, 389, 1, 0, 0, 0, 72, 392, 1, 0, 0, 0, 74, 395, 1, 0, 0, 0, 76, 404, 1, 0, 0, 0, 78, 408, 1, 0, 0, 0, 80, 414, 1, 0, 0, 0, 82, 418, 1, 0, 0, 0, 84, 421, 1, 0, 0, 0, 86, 429, 1, 0, 0, 0, 88, 433, 1, 0, 0, 0, 90, 436, 1, 0, 0, 0, 92, 440, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 463, 1, 0, 0, 0, 98, 467, 1, 0, 0, 0, 100, 472, 1, 0, 0, 0, 102, 478, 1, 0, 0, 0, 104, 491, 1, 0, 0, 0, 106, 494, 1, 0, 0, 0, 108, 498, 1, 0, 0, 0, 110, 502, 1, 0, 0, 0, 112, 506, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 527, 1, 0, 0, 0, 120, 535, 1, 0, 0, 0, 122, 543, 1, 0, 0, 0, 124, 577, 1, 0, 0, 0, 126, 604, 1, 0, 0, 0, 128, 606, 1, 0, 0, 0, 130, 619, 1, 0, 0, 0, 132, 625, 1, 0, 0, 0, 134, 646, 1, 0, 0, 0, 136, 656, 1, 0, 0, 0, 138, 675, 1, 0, 0, 0, 140, 677, 1, 0, 0, 0, 142, 688, 1, 0, 0, 0, 144, 734, 1, 0, 0, 0, 146, 736, 1, 0, 0, 0, 148, 740, 1, 0, 0, 0, 150, 743, 1, 0, 0, 0, 152, 748, 1, 0, 0, 0, 154, 752, 1, 0, 0, 0, 156, 754, 1, 0, 0, 0, 158, 756, 1, 0, 0, 0, 160, 761, 1, 0, 0, 0, 162, 763, 1, 0, 0, 0, 164, 772, 1, 0, 0, 0, 166, 167, 3, 2, 1, 0, 167, 168, 5, 0, 0, 1, 168, 1, 1, 0, 0, 0, 169, 170, 6, 1, -1, 0, 170, 171, 3, 4, 2, 0, 171, 177, 1, 0, 0, 0, 172, 173, 10, 1, 0, 0, 173, 174, 5, 52, 0, 0, 174, 176, 3, 6, 3, 0, 175, 172, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 187, 3, 88, 44, 0, 181, 187, 3, 22, 11, 0, 182, 187, 3, 12, 6, 0, 183, 187, 3, 92, 46, 0, 184, 185, 4, 2, 1, 0, 185, 187, 3, 24, 12, 0, 186, 180, 1, 0, 0, 0, 186, 181, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 183, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 5, 1, 0, 0, 0, 188, 219, 3, 40, 20, 0, 189, 219, 3, 8, 4, 0, 190, 219, 3, 70, 35, 0, 191, 219, 3, 64, 32, 0, 192, 219, 3, 42, 21, 0, 193, 219, 3, 66, 33, 0, 194, 219, 3, 72, 36, 0, 195, 219, 3, 74, 37, 0, 196, 219, 3, 78, 39, 0, 197, 219, 3, 80, 40, 0, 198, 219, 3, 94, 47, 0, 199, 219, 3, 82, 41, 0, 200, 219, 3, 158, 79, 0, 201, 219, 3, 102, 51, 0, 202, 203, 4, 3, 2, 0, 203, 219, 3, 100, 50, 0, 204, 205, 4, 3, 3, 0, 205, 219, 3, 98, 49, 0, 206, 207, 4, 3, 4, 0, 207, 219, 3, 120, 60, 0, 208, 209, 4, 3, 5, 0, 209, 219, 3, 104, 52, 0, 210, 211, 4, 3, 6, 0, 211, 219, 3, 106, 53, 0, 212, 213, 4, 3, 7, 0, 213, 219, 3, 118, 59, 0, 214, 215, 4, 3, 8, 0, 215, 219, 3, 116, 58, 0, 216, 217, 4, 3, 9, 0, 217, 219, 3, 122, 61, 0, 218, 188, 1, 0, 0, 0, 218, 189, 1, 0, 0, 0, 218, 190, 1, 0, 0, 0, 218, 191, 1, 0, 0, 0, 218, 192, 1, 0, 0, 0, 218, 193, 1, 0, 0, 0, 218, 194, 1, 0, 0, 0, 218, 195, 1, 0, 0, 0, 218, 196, 1, 0, 0, 0, 218, 197, 1, 0, 0, 0, 218, 198, 1, 0, 0, 0, 218, 199, 1, 0, 0, 0, 218, 200, 1, 0, 0, 0, 218, 201, 1, 0, 0, 0, 218, 202, 1, 0, 0, 0, 218, 204, 1, 0, 0, 0, 218, 206, 1, 0, 0, 0, 218, 208, 1, 0, 0, 0, 218, 210, 1, 0, 0, 0, 218, 212, 1, 0, 0, 0, 218, 214, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 7, 1, 0, 0, 0, 220, 221, 5, 14, 0, 0, 221, 222, 3, 124, 62, 0, 222, 9, 1, 0, 0, 0, 223, 224, 3, 54, 27, 0, 224, 11, 1, 0, 0, 0, 225, 226, 5, 11, 0, 0, 226, 227, 3, 14, 7, 0, 227, 13, 1, 0, 0, 0, 228, 233, 3, 16, 8, 0, 229, 230, 5, 63, 0, 0, 230, 232, 3, 16, 8, 0, 231, 229, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 15, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 48, 24, 0, 237, 238, 5, 59, 0, 0, 238, 240, 1, 0, 0, 0, 239, 236, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 124, 62, 0, 242, 17, 1, 0, 0, 0, 243, 248, 3, 20, 10, 0, 244, 245, 5, 63, 0, 0, 245, 247, 3, 20, 10, 0, 246, 244, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 19, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 254, 3, 48, 24, 0, 252, 253, 5, 59, 0, 0, 253, 255, 3, 124, 62, 0, 254, 252, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 21, 1, 0, 0, 0, 256, 257, 5, 19, 0, 0, 257, 258, 3, 26, 13, 0, 258, 23, 1, 0, 0, 0, 259, 260, 5, 20, 0, 0, 260, 261, 3, 26, 13, 0, 261, 25, 1, 0, 0, 0, 262, 267, 3, 28, 14, 0, 263, 264, 5, 63, 0, 0, 264, 266, 3, 28, 14, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 272, 3, 38, 19, 0, 271, 270, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 27, 1, 0, 0, 0, 273, 274, 3, 30, 15, 0, 274, 275, 5, 62, 0, 0, 275, 276, 3, 34, 17, 0, 276, 283, 1, 0, 0, 0, 277, 278, 3, 34, 17, 0, 278, 279, 5, 61, 0, 0, 279, 280, 3, 32, 16, 0, 280, 283, 1, 0, 0, 0, 281, 283, 3, 36, 18, 0, 282, 273, 1, 0, 0, 0, 282, 277, 1, 0, 0, 0, 282, 281, 1, 0, 0, 0, 283, 29, 1, 0, 0, 0, 284, 285, 5, 108, 0, 0, 285, 31, 1, 0, 0, 0, 286, 287, 5, 108, 0, 0, 287, 33, 1, 0, 0, 0, 288, 289, 5, 108, 0, 0, 289, 35, 1, 0, 0, 0, 290, 291, 7, 0, 0, 0, 291, 37, 1, 0, 0, 0, 292, 293, 5, 107, 0, 0, 293, 298, 5, 108, 0, 0, 294, 295, 5, 63, 0, 0, 295, 297, 5, 108, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 39, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 303, 3, 14, 7, 0, 303, 41, 1, 0, 0, 0, 304, 306, 5, 13, 0, 0, 305, 307, 3, 44, 22, 0, 306, 305, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 310, 1, 0, 0, 0, 308, 309, 5, 60, 0, 0, 309, 311, 3, 14, 7, 0, 310, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 43, 1, 0, 0, 0, 312, 317, 3, 46, 23, 0, 313, 314, 5, 63, 0, 0, 314, 316, 3, 46, 23, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 45, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 323, 3, 16, 8, 0, 321, 322, 5, 14, 0, 0, 322, 324, 3, 124, 62, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 330, 3, 62, 31, 0, 326, 327, 5, 65, 0, 0, 327, 329, 3, 62, 31, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 49, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 338, 3, 56, 28, 0, 334, 335, 5, 65, 0, 0, 335, 337, 3, 56, 28, 0, 336, 334, 1, 0, 0, 0, 337, 340, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 51, 1, 0, 0, 0, 340, 338, 1, 0, 0, 0, 341, 346, 3, 50, 25, 0, 342, 343, 5, 63, 0, 0, 343, 345, 3, 50, 25, 0, 344, 342, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 53, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 350, 7, 1, 0, 0, 350, 55, 1, 0, 0, 0, 351, 355, 5, 129, 0, 0, 352, 355, 3, 58, 29, 0, 353, 355, 3, 60, 30, 0, 354, 351, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 353, 1, 0, 0, 0, 355, 57, 1, 0, 0, 0, 356, 359, 5, 77, 0, 0, 357, 359, 5, 96, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 59, 1, 0, 0, 0, 360, 363, 5, 95, 0, 0, 361, 363, 5, 97, 0, 0, 362, 360, 1, 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 61, 1, 0, 0, 0, 364, 368, 3, 54, 27, 0, 365, 368, 3, 58, 29, 0, 366, 368, 3, 60, 30, 0, 367, 364, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 63, 1, 0, 0, 0, 369, 370, 5, 10, 0, 0, 370, 371, 3, 144, 72, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 12, 0, 0, 373, 378, 3, 68, 34, 0, 374, 375, 5, 63, 0, 0, 375, 377, 3, 68, 34, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 67, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 383, 3, 124, 62, 0, 382, 384, 7, 2, 0, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 386, 5, 74, 0, 0, 386, 388, 7, 3, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 69, 1, 0, 0, 0, 389, 390, 5, 29, 0, 0, 390, 391, 3, 52, 26, 0, 391, 71, 1, 0, 0, 0, 392, 393, 5, 28, 0, 0, 393, 394, 3, 52, 26, 0, 394, 73, 1, 0, 0, 0, 395, 396, 5, 32, 0, 0, 396, 401, 3, 76, 38, 0, 397, 398, 5, 63, 0, 0, 398, 400, 3, 76, 38, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 75, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 57, 0, 0, 406, 407, 3, 50, 25, 0, 407, 77, 1, 0, 0, 0, 408, 409, 5, 7, 0, 0, 409, 410, 3, 134, 67, 0, 410, 412, 3, 154, 77, 0, 411, 413, 3, 84, 42, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 79, 1, 0, 0, 0, 414, 415, 5, 9, 0, 0, 415, 416, 3, 134, 67, 0, 416, 417, 3, 154, 77, 0, 417, 81, 1, 0, 0, 0, 418, 419, 5, 27, 0, 0, 419, 420, 3, 48, 24, 0, 420, 83, 1, 0, 0, 0, 421, 426, 3, 86, 43, 0, 422, 423, 5, 63, 0, 0, 423, 425, 3, 86, 43, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 85, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 3, 54, 27, 0, 430, 431, 5, 59, 0, 0, 431, 432, 3, 144, 72, 0, 432, 87, 1, 0, 0, 0, 433, 434, 5, 6, 0, 0, 434, 435, 3, 90, 45, 0, 435, 89, 1, 0, 0, 0, 436, 437, 5, 98, 0, 0, 437, 438, 3, 2, 1, 0, 438, 439, 5, 99, 0, 0, 439, 91, 1, 0, 0, 0, 440, 441, 5, 33, 0, 0, 441, 442, 5, 136, 0, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 5, 0, 0, 444, 447, 5, 38, 0, 0, 445, 446, 5, 75, 0, 0, 446, 448, 3, 50, 25, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 458, 1, 0, 0, 0, 449, 450, 5, 80, 0, 0, 450, 455, 3, 96, 48, 0, 451, 452, 5, 63, 0, 0, 452, 454, 3, 96, 48, 0, 453, 451, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 458, 449, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 95, 1, 0, 0, 0, 460, 461, 3, 50, 25, 0, 461, 462, 5, 59, 0, 0, 462, 464, 1, 0, 0, 0, 463, 460, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 3, 50, 25, 0, 466, 97, 1, 0, 0, 0, 467, 468, 5, 26, 0, 0, 468, 469, 3, 28, 14, 0, 469, 470, 5, 75, 0, 0, 470, 471, 3, 52, 26, 0, 471, 99, 1, 0, 0, 0, 472, 473, 5, 16, 0, 0, 473, 476, 3, 44, 22, 0, 474, 475, 5, 60, 0, 0, 475, 477, 3, 14, 7, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 101, 1, 0, 0, 0, 478, 479, 5, 4, 0, 0, 479, 482, 3, 48, 24, 0, 480, 481, 5, 75, 0, 0, 481, 483, 3, 48, 24, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 489, 1, 0, 0, 0, 484, 485, 5, 57, 0, 0, 485, 486, 3, 48, 24, 0, 486, 487, 5, 63, 0, 0, 487, 488, 3, 48, 24, 0, 488, 490, 1, 0, 0, 0, 489, 484, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 103, 1, 0, 0, 0, 491, 492, 5, 30, 0, 0, 492, 493, 3, 52, 26, 0, 493, 105, 1, 0, 0, 0, 494, 495, 5, 21, 0, 0, 495, 496, 3, 108, 54, 0, 496, 107, 1, 0, 0, 0, 497, 499, 3, 110, 55, 0, 498, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 109, 1, 0, 0, 0, 502, 503, 5, 100, 0, 0, 503, 504, 3, 112, 56, 0, 504, 505, 5, 101, 0, 0, 505, 111, 1, 0, 0, 0, 506, 507, 6, 56, -1, 0, 507, 508, 3, 114, 57, 0, 508, 514, 1, 0, 0, 0, 509, 510, 10, 1, 0, 0, 510, 511, 5, 52, 0, 0, 511, 513, 3, 114, 57, 0, 512, 509, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 113, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 524, 3, 40, 20, 0, 518, 524, 3, 8, 4, 0, 519, 524, 3, 64, 32, 0, 520, 524, 3, 42, 21, 0, 521, 524, 3, 66, 33, 0, 522, 524, 3, 78, 39, 0, 523, 517, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 523, 519, 1, 0, 0, 0, 523, 520, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 522, 1, 0, 0, 0, 524, 115, 1, 0, 0, 0, 525, 526, 5, 31, 0, 0, 526, 117, 1, 0, 0, 0, 527, 528, 5, 17, 0, 0, 528, 529, 3, 144, 72, 0, 529, 530, 5, 75, 0, 0, 530, 533, 3, 18, 9, 0, 531, 532, 5, 80, 0, 0, 532, 534, 3, 62, 31, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 119, 1, 0, 0, 0, 535, 536, 5, 15, 0, 0, 536, 537, 3, 134, 67, 0, 537, 538, 5, 80, 0, 0, 538, 541, 3, 62, 31, 0, 539, 540, 5, 57, 0, 0, 540, 542, 3, 48, 24, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 121, 1, 0, 0, 0, 543, 544, 5, 18, 0, 0, 544, 546, 3, 150, 75, 0, 545, 547, 3, 152, 76, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 123, 1, 0, 0, 0, 548, 549, 6, 62, -1, 0, 549, 550, 5, 72, 0, 0, 550, 578, 3, 124, 62, 8, 551, 578, 3, 130, 65, 0, 552, 578, 3, 126, 63, 0, 553, 555, 3, 130, 65, 0, 554, 556, 5, 72, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 5, 68, 0, 0, 558, 559, 5, 100, 0, 0, 559, 564, 3, 130, 65, 0, 560, 561, 5, 63, 0, 0, 561, 563, 3, 130, 65, 0, 562, 560, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 567, 1, 0, 0, 0, 566, 564, 1, 0, 0, 0, 567, 568, 5, 101, 0, 0, 568, 578, 1, 0, 0, 0, 569, 570, 3, 130, 65, 0, 570, 572, 5, 69, 0, 0, 571, 573, 5, 72, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 5, 73, 0, 0, 575, 578, 1, 0, 0, 0, 576, 578, 3, 128, 64, 0, 577, 548, 1, 0, 0, 0, 577, 551, 1, 0, 0, 0, 577, 552, 1, 0, 0, 0, 577, 553, 1, 0, 0, 0, 577, 569, 1, 0, 0, 0, 577, 576, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 580, 10, 5, 0, 0, 580, 581, 5, 56, 0, 0, 581, 586, 3, 124, 62, 6, 582, 583, 10, 4, 0, 0, 583, 584, 5, 76, 0, 0, 584, 586, 3, 124, 62, 5, 585, 579, 1, 0, 0, 0, 585, 582, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 125, 1, 0, 0, 0, 589, 587, 1, 0, 0, 0, 590, 592, 3, 130, 65, 0, 591, 593, 5, 72, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 5, 71, 0, 0, 595, 596, 3, 154, 77, 0, 596, 605, 1, 0, 0, 0, 597, 599, 3, 130, 65, 0, 598, 600, 5, 72, 0, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 5, 78, 0, 0, 602, 603, 3, 154, 77, 0, 603, 605, 1, 0, 0, 0, 604, 590, 1, 0, 0, 0, 604, 597, 1, 0, 0, 0, 605, 127, 1, 0, 0, 0, 606, 609, 3, 48, 24, 0, 607, 608, 5, 61, 0, 0, 608, 610, 3, 10, 5, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 62, 0, 0, 612, 613, 3, 144, 72, 0, 613, 129, 1, 0, 0, 0, 614, 620, 3, 132, 66, 0, 615, 616, 3, 132, 66, 0, 616, 617, 3, 156, 78, 0, 617, 618, 3, 132, 66, 0, 618, 620, 1, 0, 0, 0, 619, 614, 1, 0, 0, 0, 619, 615, 1, 0, 0, 0, 620, 131, 1, 0, 0, 0, 621, 622, 6, 66, -1, 0, 622, 626, 3, 134, 67, 0, 623, 624, 7, 4, 0, 0, 624, 626, 3, 132, 66, 3, 625, 621, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 635, 1, 0, 0, 0, 627, 628, 10, 2, 0, 0, 628, 629, 7, 5, 0, 0, 629, 634, 3, 132, 66, 3, 630, 631, 10, 1, 0, 0, 631, 632, 7, 4, 0, 0, 632, 634, 3, 132, 66, 2, 633, 627, 1, 0, 0, 0, 633, 630, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 133, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 6, 67, -1, 0, 639, 647, 3, 144, 72, 0, 640, 647, 3, 48, 24, 0, 641, 647, 3, 136, 68, 0, 642, 643, 5, 100, 0, 0, 643, 644, 3, 124, 62, 0, 644, 645, 5, 101, 0, 0, 645, 647, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 640, 1, 0, 0, 0, 646, 641, 1, 0, 0, 0, 646, 642, 1, 0, 0, 0, 647, 653, 1, 0, 0, 0, 648, 649, 10, 1, 0, 0, 649, 650, 5, 61, 0, 0, 650, 652, 3, 10, 5, 0, 651, 648, 1, 0, 0, 0, 652, 655, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 135, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 657, 3, 138, 69, 0, 657, 671, 5, 100, 0, 0, 658, 672, 5, 90, 0, 0, 659, 664, 3, 124, 62, 0, 660, 661, 5, 63, 0, 0, 661, 663, 3, 124, 62, 0, 662, 660, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 669, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 668, 5, 63, 0, 0, 668, 670, 3, 140, 70, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 658, 1, 0, 0, 0, 671, 659, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 5, 101, 0, 0, 674, 137, 1, 0, 0, 0, 675, 676, 3, 62, 31, 0, 676, 139, 1, 0, 0, 0, 677, 678, 5, 93, 0, 0, 678, 683, 3, 142, 71, 0, 679, 680, 5, 63, 0, 0, 680, 682, 3, 142, 71, 0, 681, 679, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 94, 0, 0, 687, 141, 1, 0, 0, 0, 688, 689, 3, 154, 77, 0, 689, 690, 5, 62, 0, 0, 690, 691, 3, 144, 72, 0, 691, 143, 1, 0, 0, 0, 692, 735, 5, 73, 0, 0, 693, 694, 3, 152, 76, 0, 694, 695, 5, 102, 0, 0, 695, 735, 1, 0, 0, 0, 696, 735, 3, 150, 75, 0, 697, 735, 3, 152, 76, 0, 698, 735, 3, 146, 73, 0, 699, 735, 3, 58, 29, 0, 700, 735, 3, 154, 77, 0, 701, 702, 5, 98, 0, 0, 702, 707, 3, 148, 74, 0, 703, 704, 5, 63, 0, 0, 704, 706, 3, 148, 74, 0, 705, 703, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 710, 711, 5, 99, 0, 0, 711, 735, 1, 0, 0, 0, 712, 713, 5, 98, 0, 0, 713, 718, 3, 146, 73, 0, 714, 715, 5, 63, 0, 0, 715, 717, 3, 146, 73, 0, 716, 714, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 721, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 721, 722, 5, 99, 0, 0, 722, 735, 1, 0, 0, 0, 723, 724, 5, 98, 0, 0, 724, 729, 3, 154, 77, 0, 725, 726, 5, 63, 0, 0, 726, 728, 3, 154, 77, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 5, 99, 0, 0, 733, 735, 1, 0, 0, 0, 734, 692, 1, 0, 0, 0, 734, 693, 1, 0, 0, 0, 734, 696, 1, 0, 0, 0, 734, 697, 1, 0, 0, 0, 734, 698, 1, 0, 0, 0, 734, 699, 1, 0, 0, 0, 734, 700, 1, 0, 0, 0, 734, 701, 1, 0, 0, 0, 734, 712, 1, 0, 0, 0, 734, 723, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 737, 7, 6, 0, 0, 737, 147, 1, 0, 0, 0, 738, 741, 3, 150, 75, 0, 739, 741, 3, 152, 76, 0, 740, 738, 1, 0, 0, 0, 740, 739, 1, 0, 0, 0, 741, 149, 1, 0, 0, 0, 742, 744, 7, 4, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 55, 0, 0, 746, 151, 1, 0, 0, 0, 747, 749, 7, 4, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 5, 54, 0, 0, 751, 153, 1, 0, 0, 0, 752, 753, 5, 53, 0, 0, 753, 155, 1, 0, 0, 0, 754, 755, 7, 7, 0, 0, 755, 157, 1, 0, 0, 0, 756, 757, 7, 8, 0, 0, 757, 758, 5, 115, 0, 0, 758, 759, 3, 160, 80, 0, 759, 760, 3, 162, 81, 0, 760, 159, 1, 0, 0, 0, 761, 762, 3, 28, 14, 0, 762, 161, 1, 0, 0, 0, 763, 764, 5, 75, 0, 0, 764, 769, 3, 164, 82, 0, 765, 766, 5, 63, 0, 0, 766, 768, 3, 164, 82, 0, 767, 765, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 163, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 773, 3, 130, 65, 0, 773, 165, 1, 0, 0, 0, 69, 177, 186, 218, 233, 239, 248, 254, 267, 271, 282, 298, 306, 310, 317, 323, 330, 338, 346, 354, 358, 362, 367, 378, 383, 387, 401, 412, 426, 447, 455, 458, 463, 476, 482, 489, 500, 514, 523, 533, 541, 546, 555, 564, 572, 577, 585, 587, 592, 599, 604, 609, 619, 625, 633, 635, 646, 653, 664, 669, 671, 683, 707, 718, 729, 734, 740, 743, 748, 769]
-=======
-[4, 1, 139, 797, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 174, 8, 1, 10, 1, 12, 1, 177, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 185, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 216, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 229, 8, 7, 10, 7, 12, 7, 232, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 237, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 244, 8, 9, 10, 9, 12, 9, 247, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 252, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 263, 8, 13, 10, 13, 12, 13, 266, 9, 13, 1, 13, 3, 13, 269, 8, 13, 1, 14, 1, 14, 1, 14, 3, 14, 274, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 280, 8, 14, 3, 14, 282, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 294, 8, 18, 10, 18, 12, 18, 297, 9, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 304, 8, 20, 1, 20, 1, 20, 3, 20, 308, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 313, 8, 21, 10, 21, 12, 21, 316, 9, 21, 1, 22, 1, 22, 1, 22, 3, 22, 321, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 326, 8, 23, 10, 23, 12, 23, 329, 9, 23, 1, 24, 1, 24, 1, 24, 5, 24, 334, 8, 24, 10, 24, 12, 24, 337, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 342, 8, 25, 10, 25, 12, 25, 345, 9, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 352, 8, 27, 1, 28, 1, 28, 3, 28, 356, 8, 28, 1, 29, 1, 29, 3, 29, 360, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 365, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 374, 8, 32, 10, 32, 12, 32, 377, 9, 32, 1, 33, 1, 33, 3, 33, 381, 8, 33, 1, 33, 1, 33, 3, 33, 385, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 397, 8, 36, 10, 36, 12, 36, 400, 9, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 410, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 416, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 428, 8, 41, 10, 41, 12, 41, 431, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 451, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 457, 8, 46, 10, 46, 12, 46, 460, 9, 46, 3, 46, 462, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 467, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 480, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 486, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 493, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 4, 53, 502, 8, 53, 11, 53, 12, 53, 503, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 516, 8, 55, 10, 55, 12, 55, 519, 9, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 530, 8, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 540, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 546, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 562, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 569, 8, 61, 10, 61, 12, 61, 572, 9, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 579, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 584, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 592, 8, 61, 10, 61, 12, 61, 595, 9, 61, 1, 62, 1, 62, 3, 62, 599, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 606, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 613, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 620, 8, 62, 10, 62, 12, 62, 623, 9, 62, 1, 62, 1, 62, 3, 62, 627, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 632, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 642, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 648, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 656, 8, 65, 10, 65, 12, 65, 659, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 669, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 674, 8, 66, 10, 66, 12, 66, 677, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 685, 8, 67, 10, 67, 12, 67, 688, 9, 67, 1, 67, 1, 67, 3, 67, 692, 8, 67, 3, 67, 694, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 704, 8, 69, 10, 69, 12, 69, 707, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 728, 8, 71, 10, 71, 12, 71, 731, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 739, 8, 71, 10, 71, 12, 71, 742, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 750, 8, 71, 10, 71, 12, 71, 753, 9, 71, 1, 71, 1, 71, 3, 71, 757, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 763, 8, 73, 1, 74, 3, 74, 766, 8, 74, 1, 74, 1, 74, 1, 75, 3, 75, 771, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 790, 8, 80, 10, 80, 12, 80, 793, 9, 80, 1, 81, 1, 81, 1, 81, 0, 5, 2, 110, 122, 130, 132, 82, 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, 0, 9, 2, 0, 53, 53, 107, 107, 1, 0, 101, 102, 2, 0, 57, 57, 63, 63, 2, 0, 66, 66, 69, 69, 1, 0, 87, 88, 1, 0, 89, 91, 2, 0, 65, 65, 78, 78, 2, 0, 80, 80, 82, 86, 2, 0, 22, 22, 24, 25, 835, 0, 164, 1, 0, 0, 0, 2, 167, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 215, 1, 0, 0, 0, 8, 217, 1, 0, 0, 0, 10, 220, 1, 0, 0, 0, 12, 222, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 236, 1, 0, 0, 0, 18, 240, 1, 0, 0, 0, 20, 248, 1, 0, 0, 0, 22, 253, 1, 0, 0, 0, 24, 256, 1, 0, 0, 0, 26, 259, 1, 0, 0, 0, 28, 281, 1, 0, 0, 0, 30, 283, 1, 0, 0, 0, 32, 285, 1, 0, 0, 0, 34, 287, 1, 0, 0, 0, 36, 289, 1, 0, 0, 0, 38, 298, 1, 0, 0, 0, 40, 301, 1, 0, 0, 0, 42, 309, 1, 0, 0, 0, 44, 317, 1, 0, 0, 0, 46, 322, 1, 0, 0, 0, 48, 330, 1, 0, 0, 0, 50, 338, 1, 0, 0, 0, 52, 346, 1, 0, 0, 0, 54, 351, 1, 0, 0, 0, 56, 355, 1, 0, 0, 0, 58, 359, 1, 0, 0, 0, 60, 364, 1, 0, 0, 0, 62, 366, 1, 0, 0, 0, 64, 369, 1, 0, 0, 0, 66, 378, 1, 0, 0, 0, 68, 386, 1, 0, 0, 0, 70, 389, 1, 0, 0, 0, 72, 392, 1, 0, 0, 0, 74, 409, 1, 0, 0, 0, 76, 411, 1, 0, 0, 0, 78, 417, 1, 0, 0, 0, 80, 421, 1, 0, 0, 0, 82, 424, 1, 0, 0, 0, 84, 432, 1, 0, 0, 0, 86, 436, 1, 0, 0, 0, 88, 439, 1, 0, 0, 0, 90, 443, 1, 0, 0, 0, 92, 446, 1, 0, 0, 0, 94, 466, 1, 0, 0, 0, 96, 470, 1, 0, 0, 0, 98, 475, 1, 0, 0, 0, 100, 481, 1, 0, 0, 0, 102, 494, 1, 0, 0, 0, 104, 497, 1, 0, 0, 0, 106, 501, 1, 0, 0, 0, 108, 505, 1, 0, 0, 0, 110, 509, 1, 0, 0, 0, 112, 529, 1, 0, 0, 0, 114, 531, 1, 0, 0, 0, 116, 533, 1, 0, 0, 0, 118, 541, 1, 0, 0, 0, 120, 551, 1, 0, 0, 0, 122, 583, 1, 0, 0, 0, 124, 626, 1, 0, 0, 0, 126, 628, 1, 0, 0, 0, 128, 641, 1, 0, 0, 0, 130, 647, 1, 0, 0, 0, 132, 668, 1, 0, 0, 0, 134, 678, 1, 0, 0, 0, 136, 697, 1, 0, 0, 0, 138, 699, 1, 0, 0, 0, 140, 710, 1, 0, 0, 0, 142, 756, 1, 0, 0, 0, 144, 758, 1, 0, 0, 0, 146, 762, 1, 0, 0, 0, 148, 765, 1, 0, 0, 0, 150, 770, 1, 0, 0, 0, 152, 774, 1, 0, 0, 0, 154, 776, 1, 0, 0, 0, 156, 778, 1, 0, 0, 0, 158, 783, 1, 0, 0, 0, 160, 785, 1, 0, 0, 0, 162, 794, 1, 0, 0, 0, 164, 165, 3, 2, 1, 0, 165, 166, 5, 0, 0, 1, 166, 1, 1, 0, 0, 0, 167, 168, 6, 1, -1, 0, 168, 169, 3, 4, 2, 0, 169, 175, 1, 0, 0, 0, 170, 171, 10, 1, 0, 0, 171, 172, 5, 52, 0, 0, 172, 174, 3, 6, 3, 0, 173, 170, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 3, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 185, 3, 86, 43, 0, 179, 185, 3, 22, 11, 0, 180, 185, 3, 12, 6, 0, 181, 185, 3, 90, 45, 0, 182, 183, 4, 2, 1, 0, 183, 185, 3, 24, 12, 0, 184, 178, 1, 0, 0, 0, 184, 179, 1, 0, 0, 0, 184, 180, 1, 0, 0, 0, 184, 181, 1, 0, 0, 0, 184, 182, 1, 0, 0, 0, 185, 5, 1, 0, 0, 0, 186, 216, 3, 38, 19, 0, 187, 216, 3, 8, 4, 0, 188, 216, 3, 68, 34, 0, 189, 216, 3, 62, 31, 0, 190, 216, 3, 40, 20, 0, 191, 216, 3, 64, 32, 0, 192, 216, 3, 70, 35, 0, 193, 216, 3, 72, 36, 0, 194, 216, 3, 76, 38, 0, 195, 216, 3, 78, 39, 0, 196, 216, 3, 92, 46, 0, 197, 216, 3, 80, 40, 0, 198, 216, 3, 156, 78, 0, 199, 216, 3, 100, 50, 0, 200, 216, 3, 118, 59, 0, 201, 202, 4, 3, 2, 0, 202, 216, 3, 98, 49, 0, 203, 204, 4, 3, 3, 0, 204, 216, 3, 96, 48, 0, 205, 206, 4, 3, 4, 0, 206, 216, 3, 102, 51, 0, 207, 208, 4, 3, 5, 0, 208, 216, 3, 104, 52, 0, 209, 210, 4, 3, 6, 0, 210, 216, 3, 116, 58, 0, 211, 212, 4, 3, 7, 0, 212, 216, 3, 114, 57, 0, 213, 214, 4, 3, 8, 0, 214, 216, 3, 120, 60, 0, 215, 186, 1, 0, 0, 0, 215, 187, 1, 0, 0, 0, 215, 188, 1, 0, 0, 0, 215, 189, 1, 0, 0, 0, 215, 190, 1, 0, 0, 0, 215, 191, 1, 0, 0, 0, 215, 192, 1, 0, 0, 0, 215, 193, 1, 0, 0, 0, 215, 194, 1, 0, 0, 0, 215, 195, 1, 0, 0, 0, 215, 196, 1, 0, 0, 0, 215, 197, 1, 0, 0, 0, 215, 198, 1, 0, 0, 0, 215, 199, 1, 0, 0, 0, 215, 200, 1, 0, 0, 0, 215, 201, 1, 0, 0, 0, 215, 203, 1, 0, 0, 0, 215, 205, 1, 0, 0, 0, 215, 207, 1, 0, 0, 0, 215, 209, 1, 0, 0, 0, 215, 211, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 7, 1, 0, 0, 0, 217, 218, 5, 15, 0, 0, 218, 219, 3, 122, 61, 0, 219, 9, 1, 0, 0, 0, 220, 221, 3, 52, 26, 0, 221, 11, 1, 0, 0, 0, 222, 223, 5, 12, 0, 0, 223, 224, 3, 14, 7, 0, 224, 13, 1, 0, 0, 0, 225, 230, 3, 16, 8, 0, 226, 227, 5, 62, 0, 0, 227, 229, 3, 16, 8, 0, 228, 226, 1, 0, 0, 0, 229, 232, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 233, 234, 3, 46, 23, 0, 234, 235, 5, 58, 0, 0, 235, 237, 1, 0, 0, 0, 236, 233, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 3, 122, 61, 0, 239, 17, 1, 0, 0, 0, 240, 245, 3, 20, 10, 0, 241, 242, 5, 62, 0, 0, 242, 244, 3, 20, 10, 0, 243, 241, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 19, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 248, 251, 3, 46, 23, 0, 249, 250, 5, 58, 0, 0, 250, 252, 3, 122, 61, 0, 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 21, 1, 0, 0, 0, 253, 254, 5, 19, 0, 0, 254, 255, 3, 26, 13, 0, 255, 23, 1, 0, 0, 0, 256, 257, 5, 20, 0, 0, 257, 258, 3, 26, 13, 0, 258, 25, 1, 0, 0, 0, 259, 264, 3, 28, 14, 0, 260, 261, 5, 62, 0, 0, 261, 263, 3, 28, 14, 0, 262, 260, 1, 0, 0, 0, 263, 266, 1, 0, 0, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 267, 269, 3, 36, 18, 0, 268, 267, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 27, 1, 0, 0, 0, 270, 271, 3, 30, 15, 0, 271, 272, 5, 61, 0, 0, 272, 274, 1, 0, 0, 0, 273, 270, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 282, 3, 34, 17, 0, 276, 279, 3, 34, 17, 0, 277, 278, 5, 60, 0, 0, 278, 280, 3, 32, 16, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 282, 1, 0, 0, 0, 281, 273, 1, 0, 0, 0, 281, 276, 1, 0, 0, 0, 282, 29, 1, 0, 0, 0, 283, 284, 7, 0, 0, 0, 284, 31, 1, 0, 0, 0, 285, 286, 7, 0, 0, 0, 286, 33, 1, 0, 0, 0, 287, 288, 7, 0, 0, 0, 288, 35, 1, 0, 0, 0, 289, 290, 5, 106, 0, 0, 290, 295, 5, 107, 0, 0, 291, 292, 5, 62, 0, 0, 292, 294, 5, 107, 0, 0, 293, 291, 1, 0, 0, 0, 294, 297, 1, 0, 0, 0, 295, 293, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 37, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 299, 5, 9, 0, 0, 299, 300, 3, 14, 7, 0, 300, 39, 1, 0, 0, 0, 301, 303, 5, 14, 0, 0, 302, 304, 3, 42, 21, 0, 303, 302, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 306, 5, 59, 0, 0, 306, 308, 3, 14, 7, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 41, 1, 0, 0, 0, 309, 314, 3, 44, 22, 0, 310, 311, 5, 62, 0, 0, 311, 313, 3, 44, 22, 0, 312, 310, 1, 0, 0, 0, 313, 316, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 43, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 317, 320, 3, 16, 8, 0, 318, 319, 5, 15, 0, 0, 319, 321, 3, 122, 61, 0, 320, 318, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 45, 1, 0, 0, 0, 322, 327, 3, 60, 30, 0, 323, 324, 5, 64, 0, 0, 324, 326, 3, 60, 30, 0, 325, 323, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 47, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 330, 335, 3, 54, 27, 0, 331, 332, 5, 64, 0, 0, 332, 334, 3, 54, 27, 0, 333, 331, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 49, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 343, 3, 48, 24, 0, 339, 340, 5, 62, 0, 0, 340, 342, 3, 48, 24, 0, 341, 339, 1, 0, 0, 0, 342, 345, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 51, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 347, 7, 1, 0, 0, 347, 53, 1, 0, 0, 0, 348, 352, 5, 128, 0, 0, 349, 352, 3, 56, 28, 0, 350, 352, 3, 58, 29, 0, 351, 348, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 350, 1, 0, 0, 0, 352, 55, 1, 0, 0, 0, 353, 356, 5, 76, 0, 0, 354, 356, 5, 95, 0, 0, 355, 353, 1, 0, 0, 0, 355, 354, 1, 0, 0, 0, 356, 57, 1, 0, 0, 0, 357, 360, 5, 94, 0, 0, 358, 360, 5, 96, 0, 0, 359, 357, 1, 0, 0, 0, 359, 358, 1, 0, 0, 0, 360, 59, 1, 0, 0, 0, 361, 365, 3, 52, 26, 0, 362, 365, 3, 56, 28, 0, 363, 365, 3, 58, 29, 0, 364, 361, 1, 0, 0, 0, 364, 362, 1, 0, 0, 0, 364, 363, 1, 0, 0, 0, 365, 61, 1, 0, 0, 0, 366, 367, 5, 11, 0, 0, 367, 368, 3, 142, 71, 0, 368, 63, 1, 0, 0, 0, 369, 370, 5, 13, 0, 0, 370, 375, 3, 66, 33, 0, 371, 372, 5, 62, 0, 0, 372, 374, 3, 66, 33, 0, 373, 371, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 65, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 380, 3, 122, 61, 0, 379, 381, 7, 2, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 383, 5, 73, 0, 0, 383, 385, 7, 3, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 67, 1, 0, 0, 0, 386, 387, 5, 29, 0, 0, 387, 388, 3, 50, 25, 0, 388, 69, 1, 0, 0, 0, 389, 390, 5, 28, 0, 0, 390, 391, 3, 50, 25, 0, 391, 71, 1, 0, 0, 0, 392, 393, 5, 32, 0, 0, 393, 398, 3, 74, 37, 0, 394, 395, 5, 62, 0, 0, 395, 397, 3, 74, 37, 0, 396, 394, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 73, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 402, 3, 48, 24, 0, 402, 403, 5, 132, 0, 0, 403, 404, 3, 48, 24, 0, 404, 410, 1, 0, 0, 0, 405, 406, 3, 48, 24, 0, 406, 407, 5, 58, 0, 0, 407, 408, 3, 48, 24, 0, 408, 410, 1, 0, 0, 0, 409, 401, 1, 0, 0, 0, 409, 405, 1, 0, 0, 0, 410, 75, 1, 0, 0, 0, 411, 412, 5, 8, 0, 0, 412, 413, 3, 132, 66, 0, 413, 415, 3, 152, 76, 0, 414, 416, 3, 82, 41, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 77, 1, 0, 0, 0, 417, 418, 5, 10, 0, 0, 418, 419, 3, 132, 66, 0, 419, 420, 3, 152, 76, 0, 420, 79, 1, 0, 0, 0, 421, 422, 5, 27, 0, 0, 422, 423, 3, 46, 23, 0, 423, 81, 1, 0, 0, 0, 424, 429, 3, 84, 42, 0, 425, 426, 5, 62, 0, 0, 426, 428, 3, 84, 42, 0, 427, 425, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 83, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 432, 433, 3, 52, 26, 0, 433, 434, 5, 58, 0, 0, 434, 435, 3, 142, 71, 0, 435, 85, 1, 0, 0, 0, 436, 437, 5, 6, 0, 0, 437, 438, 3, 88, 44, 0, 438, 87, 1, 0, 0, 0, 439, 440, 5, 97, 0, 0, 440, 441, 3, 2, 1, 0, 441, 442, 5, 98, 0, 0, 442, 89, 1, 0, 0, 0, 443, 444, 5, 33, 0, 0, 444, 445, 5, 136, 0, 0, 445, 91, 1, 0, 0, 0, 446, 447, 5, 5, 0, 0, 447, 450, 5, 38, 0, 0, 448, 449, 5, 74, 0, 0, 449, 451, 3, 48, 24, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 461, 1, 0, 0, 0, 452, 453, 5, 79, 0, 0, 453, 458, 3, 94, 47, 0, 454, 455, 5, 62, 0, 0, 455, 457, 3, 94, 47, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 462, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 452, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 93, 1, 0, 0, 0, 463, 464, 3, 48, 24, 0, 464, 465, 5, 58, 0, 0, 465, 467, 1, 0, 0, 0, 466, 463, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469, 3, 48, 24, 0, 469, 95, 1, 0, 0, 0, 470, 471, 5, 26, 0, 0, 471, 472, 3, 28, 14, 0, 472, 473, 5, 74, 0, 0, 473, 474, 3, 50, 25, 0, 474, 97, 1, 0, 0, 0, 475, 476, 5, 16, 0, 0, 476, 479, 3, 42, 21, 0, 477, 478, 5, 59, 0, 0, 478, 480, 3, 14, 7, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 99, 1, 0, 0, 0, 481, 482, 5, 4, 0, 0, 482, 485, 3, 46, 23, 0, 483, 484, 5, 74, 0, 0, 484, 486, 3, 46, 23, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 492, 1, 0, 0, 0, 487, 488, 5, 132, 0, 0, 488, 489, 3, 46, 23, 0, 489, 490, 5, 62, 0, 0, 490, 491, 3, 46, 23, 0, 491, 493, 1, 0, 0, 0, 492, 487, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 101, 1, 0, 0, 0, 494, 495, 5, 30, 0, 0, 495, 496, 3, 50, 25, 0, 496, 103, 1, 0, 0, 0, 497, 498, 5, 21, 0, 0, 498, 499, 3, 106, 53, 0, 499, 105, 1, 0, 0, 0, 500, 502, 3, 108, 54, 0, 501, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 107, 1, 0, 0, 0, 505, 506, 5, 99, 0, 0, 506, 507, 3, 110, 55, 0, 507, 508, 5, 100, 0, 0, 508, 109, 1, 0, 0, 0, 509, 510, 6, 55, -1, 0, 510, 511, 3, 112, 56, 0, 511, 517, 1, 0, 0, 0, 512, 513, 10, 1, 0, 0, 513, 514, 5, 52, 0, 0, 514, 516, 3, 112, 56, 0, 515, 512, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 111, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 530, 3, 38, 19, 0, 521, 530, 3, 8, 4, 0, 522, 530, 3, 62, 31, 0, 523, 530, 3, 40, 20, 0, 524, 530, 3, 64, 32, 0, 525, 530, 3, 76, 38, 0, 526, 530, 3, 100, 50, 0, 527, 530, 3, 118, 59, 0, 528, 530, 3, 78, 39, 0, 529, 520, 1, 0, 0, 0, 529, 521, 1, 0, 0, 0, 529, 522, 1, 0, 0, 0, 529, 523, 1, 0, 0, 0, 529, 524, 1, 0, 0, 0, 529, 525, 1, 0, 0, 0, 529, 526, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 528, 1, 0, 0, 0, 530, 113, 1, 0, 0, 0, 531, 532, 5, 31, 0, 0, 532, 115, 1, 0, 0, 0, 533, 534, 5, 17, 0, 0, 534, 535, 3, 142, 71, 0, 535, 536, 5, 74, 0, 0, 536, 539, 3, 18, 9, 0, 537, 538, 5, 79, 0, 0, 538, 540, 3, 60, 30, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 117, 1, 0, 0, 0, 541, 545, 5, 7, 0, 0, 542, 543, 3, 46, 23, 0, 543, 544, 5, 58, 0, 0, 544, 546, 1, 0, 0, 0, 545, 542, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 3, 132, 66, 0, 548, 549, 5, 79, 0, 0, 549, 550, 3, 60, 30, 0, 550, 119, 1, 0, 0, 0, 551, 552, 5, 18, 0, 0, 552, 553, 3, 148, 74, 0, 553, 121, 1, 0, 0, 0, 554, 555, 6, 61, -1, 0, 555, 556, 5, 71, 0, 0, 556, 584, 3, 122, 61, 8, 557, 584, 3, 128, 64, 0, 558, 584, 3, 124, 62, 0, 559, 561, 3, 128, 64, 0, 560, 562, 5, 71, 0, 0, 561, 560, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 5, 67, 0, 0, 564, 565, 5, 99, 0, 0, 565, 570, 3, 128, 64, 0, 566, 567, 5, 62, 0, 0, 567, 569, 3, 128, 64, 0, 568, 566, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 574, 5, 100, 0, 0, 574, 584, 1, 0, 0, 0, 575, 576, 3, 128, 64, 0, 576, 578, 5, 68, 0, 0, 577, 579, 5, 71, 0, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 5, 72, 0, 0, 581, 584, 1, 0, 0, 0, 582, 584, 3, 126, 63, 0, 583, 554, 1, 0, 0, 0, 583, 557, 1, 0, 0, 0, 583, 558, 1, 0, 0, 0, 583, 559, 1, 0, 0, 0, 583, 575, 1, 0, 0, 0, 583, 582, 1, 0, 0, 0, 584, 593, 1, 0, 0, 0, 585, 586, 10, 5, 0, 0, 586, 587, 5, 56, 0, 0, 587, 592, 3, 122, 61, 6, 588, 589, 10, 4, 0, 0, 589, 590, 5, 75, 0, 0, 590, 592, 3, 122, 61, 5, 591, 585, 1, 0, 0, 0, 591, 588, 1, 0, 0, 0, 592, 595, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 123, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 596, 598, 3, 128, 64, 0, 597, 599, 5, 71, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 5, 70, 0, 0, 601, 602, 3, 152, 76, 0, 602, 627, 1, 0, 0, 0, 603, 605, 3, 128, 64, 0, 604, 606, 5, 71, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 77, 0, 0, 608, 609, 3, 152, 76, 0, 609, 627, 1, 0, 0, 0, 610, 612, 3, 128, 64, 0, 611, 613, 5, 71, 0, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 70, 0, 0, 615, 616, 5, 99, 0, 0, 616, 621, 3, 152, 76, 0, 617, 618, 5, 62, 0, 0, 618, 620, 3, 152, 76, 0, 619, 617, 1, 0, 0, 0, 620, 623, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 624, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 5, 100, 0, 0, 625, 627, 1, 0, 0, 0, 626, 596, 1, 0, 0, 0, 626, 603, 1, 0, 0, 0, 626, 610, 1, 0, 0, 0, 627, 125, 1, 0, 0, 0, 628, 631, 3, 46, 23, 0, 629, 630, 5, 60, 0, 0, 630, 632, 3, 10, 5, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 61, 0, 0, 634, 635, 3, 142, 71, 0, 635, 127, 1, 0, 0, 0, 636, 642, 3, 130, 65, 0, 637, 638, 3, 130, 65, 0, 638, 639, 3, 154, 77, 0, 639, 640, 3, 130, 65, 0, 640, 642, 1, 0, 0, 0, 641, 636, 1, 0, 0, 0, 641, 637, 1, 0, 0, 0, 642, 129, 1, 0, 0, 0, 643, 644, 6, 65, -1, 0, 644, 648, 3, 132, 66, 0, 645, 646, 7, 4, 0, 0, 646, 648, 3, 130, 65, 3, 647, 643, 1, 0, 0, 0, 647, 645, 1, 0, 0, 0, 648, 657, 1, 0, 0, 0, 649, 650, 10, 2, 0, 0, 650, 651, 7, 5, 0, 0, 651, 656, 3, 130, 65, 3, 652, 653, 10, 1, 0, 0, 653, 654, 7, 4, 0, 0, 654, 656, 3, 130, 65, 2, 655, 649, 1, 0, 0, 0, 655, 652, 1, 0, 0, 0, 656, 659, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 131, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 660, 661, 6, 66, -1, 0, 661, 669, 3, 142, 71, 0, 662, 669, 3, 46, 23, 0, 663, 669, 3, 134, 67, 0, 664, 665, 5, 99, 0, 0, 665, 666, 3, 122, 61, 0, 666, 667, 5, 100, 0, 0, 667, 669, 1, 0, 0, 0, 668, 660, 1, 0, 0, 0, 668, 662, 1, 0, 0, 0, 668, 663, 1, 0, 0, 0, 668, 664, 1, 0, 0, 0, 669, 675, 1, 0, 0, 0, 670, 671, 10, 1, 0, 0, 671, 672, 5, 60, 0, 0, 672, 674, 3, 10, 5, 0, 673, 670, 1, 0, 0, 0, 674, 677, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 133, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 678, 679, 3, 136, 68, 0, 679, 693, 5, 99, 0, 0, 680, 694, 5, 89, 0, 0, 681, 686, 3, 122, 61, 0, 682, 683, 5, 62, 0, 0, 683, 685, 3, 122, 61, 0, 684, 682, 1, 0, 0, 0, 685, 688, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 691, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 689, 690, 5, 62, 0, 0, 690, 692, 3, 138, 69, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 694, 1, 0, 0, 0, 693, 680, 1, 0, 0, 0, 693, 681, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 100, 0, 0, 696, 135, 1, 0, 0, 0, 697, 698, 3, 60, 30, 0, 698, 137, 1, 0, 0, 0, 699, 700, 5, 92, 0, 0, 700, 705, 3, 140, 70, 0, 701, 702, 5, 62, 0, 0, 702, 704, 3, 140, 70, 0, 703, 701, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 708, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 5, 93, 0, 0, 709, 139, 1, 0, 0, 0, 710, 711, 3, 152, 76, 0, 711, 712, 5, 61, 0, 0, 712, 713, 3, 142, 71, 0, 713, 141, 1, 0, 0, 0, 714, 757, 5, 72, 0, 0, 715, 716, 3, 150, 75, 0, 716, 717, 5, 101, 0, 0, 717, 757, 1, 0, 0, 0, 718, 757, 3, 148, 74, 0, 719, 757, 3, 150, 75, 0, 720, 757, 3, 144, 72, 0, 721, 757, 3, 56, 28, 0, 722, 757, 3, 152, 76, 0, 723, 724, 5, 97, 0, 0, 724, 729, 3, 146, 73, 0, 725, 726, 5, 62, 0, 0, 726, 728, 3, 146, 73, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 5, 98, 0, 0, 733, 757, 1, 0, 0, 0, 734, 735, 5, 97, 0, 0, 735, 740, 3, 144, 72, 0, 736, 737, 5, 62, 0, 0, 737, 739, 3, 144, 72, 0, 738, 736, 1, 0, 0, 0, 739, 742, 1, 0, 0, 0, 740, 738, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 743, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 743, 744, 5, 98, 0, 0, 744, 757, 1, 0, 0, 0, 745, 746, 5, 97, 0, 0, 746, 751, 3, 152, 76, 0, 747, 748, 5, 62, 0, 0, 748, 750, 3, 152, 76, 0, 749, 747, 1, 0, 0, 0, 750, 753, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 754, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 754, 755, 5, 98, 0, 0, 755, 757, 1, 0, 0, 0, 756, 714, 1, 0, 0, 0, 756, 715, 1, 0, 0, 0, 756, 718, 1, 0, 0, 0, 756, 719, 1, 0, 0, 0, 756, 720, 1, 0, 0, 0, 756, 721, 1, 0, 0, 0, 756, 722, 1, 0, 0, 0, 756, 723, 1, 0, 0, 0, 756, 734, 1, 0, 0, 0, 756, 745, 1, 0, 0, 0, 757, 143, 1, 0, 0, 0, 758, 759, 7, 6, 0, 0, 759, 145, 1, 0, 0, 0, 760, 763, 3, 148, 74, 0, 761, 763, 3, 150, 75, 0, 762, 760, 1, 0, 0, 0, 762, 761, 1, 0, 0, 0, 763, 147, 1, 0, 0, 0, 764, 766, 7, 4, 0, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 55, 0, 0, 768, 149, 1, 0, 0, 0, 769, 771, 7, 4, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 54, 0, 0, 773, 151, 1, 0, 0, 0, 774, 775, 5, 53, 0, 0, 775, 153, 1, 0, 0, 0, 776, 777, 7, 7, 0, 0, 777, 155, 1, 0, 0, 0, 778, 779, 7, 8, 0, 0, 779, 780, 5, 114, 0, 0, 780, 781, 3, 158, 79, 0, 781, 782, 3, 160, 80, 0, 782, 157, 1, 0, 0, 0, 783, 784, 3, 28, 14, 0, 784, 159, 1, 0, 0, 0, 785, 786, 5, 74, 0, 0, 786, 791, 3, 162, 81, 0, 787, 788, 5, 62, 0, 0, 788, 790, 3, 162, 81, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 161, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 3, 128, 64, 0, 795, 163, 1, 0, 0, 0, 73, 175, 184, 215, 230, 236, 245, 251, 264, 268, 273, 279, 281, 295, 303, 307, 314, 320, 327, 335, 343, 351, 355, 359, 364, 375, 380, 384, 398, 409, 415, 429, 450, 458, 461, 466, 479, 485, 492, 503, 517, 529, 539, 545, 561, 570, 578, 583, 591, 593, 598, 605, 612, 621, 626, 631, 641, 647, 655, 657, 668, 675, 686, 691, 693, 705, 729, 740, 751, 756, 762, 765, 770, 791]
->>>>>>> main
+[4, 1, 139, 799, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 176, 8, 1, 10, 1, 12, 1, 179, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 187, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 231, 8, 7, 10, 7, 12, 7, 234, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 239, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 246, 8, 9, 10, 9, 12, 9, 249, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 254, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 265, 8, 13, 10, 13, 12, 13, 268, 9, 13, 1, 13, 3, 13, 271, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 282, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 296, 8, 19, 10, 19, 12, 19, 299, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 306, 8, 21, 1, 21, 1, 21, 3, 21, 310, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 315, 8, 22, 10, 22, 12, 22, 318, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 323, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 328, 8, 24, 10, 24, 12, 24, 331, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 336, 8, 25, 10, 25, 12, 25, 339, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 344, 8, 26, 10, 26, 12, 26, 347, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 354, 8, 28, 1, 29, 1, 29, 3, 29, 358, 8, 29, 1, 30, 1, 30, 3, 30, 362, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 367, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 376, 8, 33, 10, 33, 12, 33, 379, 9, 33, 1, 34, 1, 34, 3, 34, 383, 8, 34, 1, 34, 1, 34, 3, 34, 387, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 399, 8, 37, 10, 37, 12, 37, 402, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 412, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 418, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 5, 42, 430, 8, 42, 10, 42, 12, 42, 433, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 453, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 459, 8, 47, 10, 47, 12, 47, 462, 9, 47, 3, 47, 464, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 469, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 482, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 488, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 495, 8, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 504, 8, 54, 11, 54, 12, 54, 505, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 518, 8, 56, 10, 56, 12, 56, 521, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 532, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 542, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 548, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 564, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 571, 8, 62, 10, 62, 12, 62, 574, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 581, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 586, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 594, 8, 62, 10, 62, 12, 62, 597, 9, 62, 1, 63, 1, 63, 3, 63, 601, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 608, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 615, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 622, 8, 63, 10, 63, 12, 63, 625, 9, 63, 1, 63, 1, 63, 3, 63, 629, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 634, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 644, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 650, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 658, 8, 66, 10, 66, 12, 66, 661, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 671, 8, 67, 1, 67, 1, 67, 1, 67, 5, 67, 676, 8, 67, 10, 67, 12, 67, 679, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 687, 8, 68, 10, 68, 12, 68, 690, 9, 68, 1, 68, 1, 68, 3, 68, 694, 8, 68, 3, 68, 696, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 706, 8, 70, 10, 70, 12, 70, 709, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 730, 8, 72, 10, 72, 12, 72, 733, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 741, 8, 72, 10, 72, 12, 72, 744, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 752, 8, 72, 10, 72, 12, 72, 755, 9, 72, 1, 72, 1, 72, 3, 72, 759, 8, 72, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 765, 8, 74, 1, 75, 3, 75, 768, 8, 75, 1, 75, 1, 75, 1, 76, 3, 76, 773, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 792, 8, 81, 10, 81, 12, 81, 795, 9, 81, 1, 82, 1, 82, 1, 82, 0, 5, 2, 112, 124, 132, 134, 83, 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, 0, 9, 2, 0, 53, 53, 107, 107, 1, 0, 101, 102, 2, 0, 57, 57, 63, 63, 2, 0, 66, 66, 69, 69, 1, 0, 87, 88, 1, 0, 89, 91, 2, 0, 65, 65, 78, 78, 2, 0, 80, 80, 82, 86, 2, 0, 22, 22, 24, 25, 835, 0, 166, 1, 0, 0, 0, 2, 169, 1, 0, 0, 0, 4, 186, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 8, 219, 1, 0, 0, 0, 10, 222, 1, 0, 0, 0, 12, 224, 1, 0, 0, 0, 14, 227, 1, 0, 0, 0, 16, 238, 1, 0, 0, 0, 18, 242, 1, 0, 0, 0, 20, 250, 1, 0, 0, 0, 22, 255, 1, 0, 0, 0, 24, 258, 1, 0, 0, 0, 26, 261, 1, 0, 0, 0, 28, 281, 1, 0, 0, 0, 30, 283, 1, 0, 0, 0, 32, 285, 1, 0, 0, 0, 34, 287, 1, 0, 0, 0, 36, 289, 1, 0, 0, 0, 38, 291, 1, 0, 0, 0, 40, 300, 1, 0, 0, 0, 42, 303, 1, 0, 0, 0, 44, 311, 1, 0, 0, 0, 46, 319, 1, 0, 0, 0, 48, 324, 1, 0, 0, 0, 50, 332, 1, 0, 0, 0, 52, 340, 1, 0, 0, 0, 54, 348, 1, 0, 0, 0, 56, 353, 1, 0, 0, 0, 58, 357, 1, 0, 0, 0, 60, 361, 1, 0, 0, 0, 62, 366, 1, 0, 0, 0, 64, 368, 1, 0, 0, 0, 66, 371, 1, 0, 0, 0, 68, 380, 1, 0, 0, 0, 70, 388, 1, 0, 0, 0, 72, 391, 1, 0, 0, 0, 74, 394, 1, 0, 0, 0, 76, 411, 1, 0, 0, 0, 78, 413, 1, 0, 0, 0, 80, 419, 1, 0, 0, 0, 82, 423, 1, 0, 0, 0, 84, 426, 1, 0, 0, 0, 86, 434, 1, 0, 0, 0, 88, 438, 1, 0, 0, 0, 90, 441, 1, 0, 0, 0, 92, 445, 1, 0, 0, 0, 94, 448, 1, 0, 0, 0, 96, 468, 1, 0, 0, 0, 98, 472, 1, 0, 0, 0, 100, 477, 1, 0, 0, 0, 102, 483, 1, 0, 0, 0, 104, 496, 1, 0, 0, 0, 106, 499, 1, 0, 0, 0, 108, 503, 1, 0, 0, 0, 110, 507, 1, 0, 0, 0, 112, 511, 1, 0, 0, 0, 114, 531, 1, 0, 0, 0, 116, 533, 1, 0, 0, 0, 118, 535, 1, 0, 0, 0, 120, 543, 1, 0, 0, 0, 122, 553, 1, 0, 0, 0, 124, 585, 1, 0, 0, 0, 126, 628, 1, 0, 0, 0, 128, 630, 1, 0, 0, 0, 130, 643, 1, 0, 0, 0, 132, 649, 1, 0, 0, 0, 134, 670, 1, 0, 0, 0, 136, 680, 1, 0, 0, 0, 138, 699, 1, 0, 0, 0, 140, 701, 1, 0, 0, 0, 142, 712, 1, 0, 0, 0, 144, 758, 1, 0, 0, 0, 146, 760, 1, 0, 0, 0, 148, 764, 1, 0, 0, 0, 150, 767, 1, 0, 0, 0, 152, 772, 1, 0, 0, 0, 154, 776, 1, 0, 0, 0, 156, 778, 1, 0, 0, 0, 158, 780, 1, 0, 0, 0, 160, 785, 1, 0, 0, 0, 162, 787, 1, 0, 0, 0, 164, 796, 1, 0, 0, 0, 166, 167, 3, 2, 1, 0, 167, 168, 5, 0, 0, 1, 168, 1, 1, 0, 0, 0, 169, 170, 6, 1, -1, 0, 170, 171, 3, 4, 2, 0, 171, 177, 1, 0, 0, 0, 172, 173, 10, 1, 0, 0, 173, 174, 5, 52, 0, 0, 174, 176, 3, 6, 3, 0, 175, 172, 1, 0, 0, 0, 176, 179, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 177, 1, 0, 0, 0, 180, 187, 3, 88, 44, 0, 181, 187, 3, 22, 11, 0, 182, 187, 3, 12, 6, 0, 183, 187, 3, 92, 46, 0, 184, 185, 4, 2, 1, 0, 185, 187, 3, 24, 12, 0, 186, 180, 1, 0, 0, 0, 186, 181, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 183, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 5, 1, 0, 0, 0, 188, 218, 3, 40, 20, 0, 189, 218, 3, 8, 4, 0, 190, 218, 3, 70, 35, 0, 191, 218, 3, 64, 32, 0, 192, 218, 3, 42, 21, 0, 193, 218, 3, 66, 33, 0, 194, 218, 3, 72, 36, 0, 195, 218, 3, 74, 37, 0, 196, 218, 3, 78, 39, 0, 197, 218, 3, 80, 40, 0, 198, 218, 3, 94, 47, 0, 199, 218, 3, 82, 41, 0, 200, 218, 3, 158, 79, 0, 201, 218, 3, 102, 51, 0, 202, 218, 3, 120, 60, 0, 203, 204, 4, 3, 2, 0, 204, 218, 3, 100, 50, 0, 205, 206, 4, 3, 3, 0, 206, 218, 3, 98, 49, 0, 207, 208, 4, 3, 4, 0, 208, 218, 3, 104, 52, 0, 209, 210, 4, 3, 5, 0, 210, 218, 3, 106, 53, 0, 211, 212, 4, 3, 6, 0, 212, 218, 3, 118, 59, 0, 213, 214, 4, 3, 7, 0, 214, 218, 3, 116, 58, 0, 215, 216, 4, 3, 8, 0, 216, 218, 3, 122, 61, 0, 217, 188, 1, 0, 0, 0, 217, 189, 1, 0, 0, 0, 217, 190, 1, 0, 0, 0, 217, 191, 1, 0, 0, 0, 217, 192, 1, 0, 0, 0, 217, 193, 1, 0, 0, 0, 217, 194, 1, 0, 0, 0, 217, 195, 1, 0, 0, 0, 217, 196, 1, 0, 0, 0, 217, 197, 1, 0, 0, 0, 217, 198, 1, 0, 0, 0, 217, 199, 1, 0, 0, 0, 217, 200, 1, 0, 0, 0, 217, 201, 1, 0, 0, 0, 217, 202, 1, 0, 0, 0, 217, 203, 1, 0, 0, 0, 217, 205, 1, 0, 0, 0, 217, 207, 1, 0, 0, 0, 217, 209, 1, 0, 0, 0, 217, 211, 1, 0, 0, 0, 217, 213, 1, 0, 0, 0, 217, 215, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, 219, 220, 5, 15, 0, 0, 220, 221, 3, 124, 62, 0, 221, 9, 1, 0, 0, 0, 222, 223, 3, 54, 27, 0, 223, 11, 1, 0, 0, 0, 224, 225, 5, 12, 0, 0, 225, 226, 3, 14, 7, 0, 226, 13, 1, 0, 0, 0, 227, 232, 3, 16, 8, 0, 228, 229, 5, 62, 0, 0, 229, 231, 3, 16, 8, 0, 230, 228, 1, 0, 0, 0, 231, 234, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 15, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 235, 236, 3, 48, 24, 0, 236, 237, 5, 58, 0, 0, 237, 239, 1, 0, 0, 0, 238, 235, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 3, 124, 62, 0, 241, 17, 1, 0, 0, 0, 242, 247, 3, 20, 10, 0, 243, 244, 5, 62, 0, 0, 244, 246, 3, 20, 10, 0, 245, 243, 1, 0, 0, 0, 246, 249, 1, 0, 0, 0, 247, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 19, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 250, 253, 3, 48, 24, 0, 251, 252, 5, 58, 0, 0, 252, 254, 3, 124, 62, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 21, 1, 0, 0, 0, 255, 256, 5, 19, 0, 0, 256, 257, 3, 26, 13, 0, 257, 23, 1, 0, 0, 0, 258, 259, 5, 20, 0, 0, 259, 260, 3, 26, 13, 0, 260, 25, 1, 0, 0, 0, 261, 266, 3, 28, 14, 0, 262, 263, 5, 62, 0, 0, 263, 265, 3, 28, 14, 0, 264, 262, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 270, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 269, 271, 3, 38, 19, 0, 270, 269, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 27, 1, 0, 0, 0, 272, 273, 3, 30, 15, 0, 273, 274, 5, 61, 0, 0, 274, 275, 3, 34, 17, 0, 275, 282, 1, 0, 0, 0, 276, 277, 3, 34, 17, 0, 277, 278, 5, 60, 0, 0, 278, 279, 3, 32, 16, 0, 279, 282, 1, 0, 0, 0, 280, 282, 3, 36, 18, 0, 281, 272, 1, 0, 0, 0, 281, 276, 1, 0, 0, 0, 281, 280, 1, 0, 0, 0, 282, 29, 1, 0, 0, 0, 283, 284, 5, 107, 0, 0, 284, 31, 1, 0, 0, 0, 285, 286, 5, 107, 0, 0, 286, 33, 1, 0, 0, 0, 287, 288, 5, 107, 0, 0, 288, 35, 1, 0, 0, 0, 289, 290, 7, 0, 0, 0, 290, 37, 1, 0, 0, 0, 291, 292, 5, 106, 0, 0, 292, 297, 5, 107, 0, 0, 293, 294, 5, 62, 0, 0, 294, 296, 5, 107, 0, 0, 295, 293, 1, 0, 0, 0, 296, 299, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 39, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 300, 301, 5, 9, 0, 0, 301, 302, 3, 14, 7, 0, 302, 41, 1, 0, 0, 0, 303, 305, 5, 14, 0, 0, 304, 306, 3, 44, 22, 0, 305, 304, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 308, 5, 59, 0, 0, 308, 310, 3, 14, 7, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 43, 1, 0, 0, 0, 311, 316, 3, 46, 23, 0, 312, 313, 5, 62, 0, 0, 313, 315, 3, 46, 23, 0, 314, 312, 1, 0, 0, 0, 315, 318, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 45, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 319, 322, 3, 16, 8, 0, 320, 321, 5, 15, 0, 0, 321, 323, 3, 124, 62, 0, 322, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 47, 1, 0, 0, 0, 324, 329, 3, 62, 31, 0, 325, 326, 5, 64, 0, 0, 326, 328, 3, 62, 31, 0, 327, 325, 1, 0, 0, 0, 328, 331, 1, 0, 0, 0, 329, 327, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 49, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 332, 337, 3, 56, 28, 0, 333, 334, 5, 64, 0, 0, 334, 336, 3, 56, 28, 0, 335, 333, 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 51, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 345, 3, 50, 25, 0, 341, 342, 5, 62, 0, 0, 342, 344, 3, 50, 25, 0, 343, 341, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 53, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 349, 7, 1, 0, 0, 349, 55, 1, 0, 0, 0, 350, 354, 5, 128, 0, 0, 351, 354, 3, 58, 29, 0, 352, 354, 3, 60, 30, 0, 353, 350, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 352, 1, 0, 0, 0, 354, 57, 1, 0, 0, 0, 355, 358, 5, 76, 0, 0, 356, 358, 5, 95, 0, 0, 357, 355, 1, 0, 0, 0, 357, 356, 1, 0, 0, 0, 358, 59, 1, 0, 0, 0, 359, 362, 5, 94, 0, 0, 360, 362, 5, 96, 0, 0, 361, 359, 1, 0, 0, 0, 361, 360, 1, 0, 0, 0, 362, 61, 1, 0, 0, 0, 363, 367, 3, 54, 27, 0, 364, 367, 3, 58, 29, 0, 365, 367, 3, 60, 30, 0, 366, 363, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 366, 365, 1, 0, 0, 0, 367, 63, 1, 0, 0, 0, 368, 369, 5, 11, 0, 0, 369, 370, 3, 144, 72, 0, 370, 65, 1, 0, 0, 0, 371, 372, 5, 13, 0, 0, 372, 377, 3, 68, 34, 0, 373, 374, 5, 62, 0, 0, 374, 376, 3, 68, 34, 0, 375, 373, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 67, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 382, 3, 124, 62, 0, 381, 383, 7, 2, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 385, 5, 73, 0, 0, 385, 387, 7, 3, 0, 0, 386, 384, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 69, 1, 0, 0, 0, 388, 389, 5, 29, 0, 0, 389, 390, 3, 52, 26, 0, 390, 71, 1, 0, 0, 0, 391, 392, 5, 28, 0, 0, 392, 393, 3, 52, 26, 0, 393, 73, 1, 0, 0, 0, 394, 395, 5, 32, 0, 0, 395, 400, 3, 76, 38, 0, 396, 397, 5, 62, 0, 0, 397, 399, 3, 76, 38, 0, 398, 396, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 75, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 403, 404, 3, 50, 25, 0, 404, 405, 5, 132, 0, 0, 405, 406, 3, 50, 25, 0, 406, 412, 1, 0, 0, 0, 407, 408, 3, 50, 25, 0, 408, 409, 5, 58, 0, 0, 409, 410, 3, 50, 25, 0, 410, 412, 1, 0, 0, 0, 411, 403, 1, 0, 0, 0, 411, 407, 1, 0, 0, 0, 412, 77, 1, 0, 0, 0, 413, 414, 5, 8, 0, 0, 414, 415, 3, 134, 67, 0, 415, 417, 3, 154, 77, 0, 416, 418, 3, 84, 42, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 79, 1, 0, 0, 0, 419, 420, 5, 10, 0, 0, 420, 421, 3, 134, 67, 0, 421, 422, 3, 154, 77, 0, 422, 81, 1, 0, 0, 0, 423, 424, 5, 27, 0, 0, 424, 425, 3, 48, 24, 0, 425, 83, 1, 0, 0, 0, 426, 431, 3, 86, 43, 0, 427, 428, 5, 62, 0, 0, 428, 430, 3, 86, 43, 0, 429, 427, 1, 0, 0, 0, 430, 433, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 85, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 434, 435, 3, 54, 27, 0, 435, 436, 5, 58, 0, 0, 436, 437, 3, 144, 72, 0, 437, 87, 1, 0, 0, 0, 438, 439, 5, 6, 0, 0, 439, 440, 3, 90, 45, 0, 440, 89, 1, 0, 0, 0, 441, 442, 5, 97, 0, 0, 442, 443, 3, 2, 1, 0, 443, 444, 5, 98, 0, 0, 444, 91, 1, 0, 0, 0, 445, 446, 5, 33, 0, 0, 446, 447, 5, 136, 0, 0, 447, 93, 1, 0, 0, 0, 448, 449, 5, 5, 0, 0, 449, 452, 5, 38, 0, 0, 450, 451, 5, 74, 0, 0, 451, 453, 3, 50, 25, 0, 452, 450, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 463, 1, 0, 0, 0, 454, 455, 5, 79, 0, 0, 455, 460, 3, 96, 48, 0, 456, 457, 5, 62, 0, 0, 457, 459, 3, 96, 48, 0, 458, 456, 1, 0, 0, 0, 459, 462, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 463, 454, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 95, 1, 0, 0, 0, 465, 466, 3, 50, 25, 0, 466, 467, 5, 58, 0, 0, 467, 469, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 3, 50, 25, 0, 471, 97, 1, 0, 0, 0, 472, 473, 5, 26, 0, 0, 473, 474, 3, 28, 14, 0, 474, 475, 5, 74, 0, 0, 475, 476, 3, 52, 26, 0, 476, 99, 1, 0, 0, 0, 477, 478, 5, 16, 0, 0, 478, 481, 3, 44, 22, 0, 479, 480, 5, 59, 0, 0, 480, 482, 3, 14, 7, 0, 481, 479, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 101, 1, 0, 0, 0, 483, 484, 5, 4, 0, 0, 484, 487, 3, 48, 24, 0, 485, 486, 5, 74, 0, 0, 486, 488, 3, 48, 24, 0, 487, 485, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 494, 1, 0, 0, 0, 489, 490, 5, 132, 0, 0, 490, 491, 3, 48, 24, 0, 491, 492, 5, 62, 0, 0, 492, 493, 3, 48, 24, 0, 493, 495, 1, 0, 0, 0, 494, 489, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 103, 1, 0, 0, 0, 496, 497, 5, 30, 0, 0, 497, 498, 3, 52, 26, 0, 498, 105, 1, 0, 0, 0, 499, 500, 5, 21, 0, 0, 500, 501, 3, 108, 54, 0, 501, 107, 1, 0, 0, 0, 502, 504, 3, 110, 55, 0, 503, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 109, 1, 0, 0, 0, 507, 508, 5, 99, 0, 0, 508, 509, 3, 112, 56, 0, 509, 510, 5, 100, 0, 0, 510, 111, 1, 0, 0, 0, 511, 512, 6, 56, -1, 0, 512, 513, 3, 114, 57, 0, 513, 519, 1, 0, 0, 0, 514, 515, 10, 1, 0, 0, 515, 516, 5, 52, 0, 0, 516, 518, 3, 114, 57, 0, 517, 514, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 113, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 522, 532, 3, 40, 20, 0, 523, 532, 3, 8, 4, 0, 524, 532, 3, 64, 32, 0, 525, 532, 3, 42, 21, 0, 526, 532, 3, 66, 33, 0, 527, 532, 3, 78, 39, 0, 528, 532, 3, 102, 51, 0, 529, 532, 3, 120, 60, 0, 530, 532, 3, 80, 40, 0, 531, 522, 1, 0, 0, 0, 531, 523, 1, 0, 0, 0, 531, 524, 1, 0, 0, 0, 531, 525, 1, 0, 0, 0, 531, 526, 1, 0, 0, 0, 531, 527, 1, 0, 0, 0, 531, 528, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 530, 1, 0, 0, 0, 532, 115, 1, 0, 0, 0, 533, 534, 5, 31, 0, 0, 534, 117, 1, 0, 0, 0, 535, 536, 5, 17, 0, 0, 536, 537, 3, 144, 72, 0, 537, 538, 5, 74, 0, 0, 538, 541, 3, 18, 9, 0, 539, 540, 5, 79, 0, 0, 540, 542, 3, 62, 31, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 119, 1, 0, 0, 0, 543, 547, 5, 7, 0, 0, 544, 545, 3, 48, 24, 0, 545, 546, 5, 58, 0, 0, 546, 548, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 3, 134, 67, 0, 550, 551, 5, 79, 0, 0, 551, 552, 3, 62, 31, 0, 552, 121, 1, 0, 0, 0, 553, 554, 5, 18, 0, 0, 554, 555, 3, 150, 75, 0, 555, 123, 1, 0, 0, 0, 556, 557, 6, 62, -1, 0, 557, 558, 5, 71, 0, 0, 558, 586, 3, 124, 62, 8, 559, 586, 3, 130, 65, 0, 560, 586, 3, 126, 63, 0, 561, 563, 3, 130, 65, 0, 562, 564, 5, 71, 0, 0, 563, 562, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 5, 67, 0, 0, 566, 567, 5, 99, 0, 0, 567, 572, 3, 130, 65, 0, 568, 569, 5, 62, 0, 0, 569, 571, 3, 130, 65, 0, 570, 568, 1, 0, 0, 0, 571, 574, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 576, 5, 100, 0, 0, 576, 586, 1, 0, 0, 0, 577, 578, 3, 130, 65, 0, 578, 580, 5, 68, 0, 0, 579, 581, 5, 71, 0, 0, 580, 579, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 5, 72, 0, 0, 583, 586, 1, 0, 0, 0, 584, 586, 3, 128, 64, 0, 585, 556, 1, 0, 0, 0, 585, 559, 1, 0, 0, 0, 585, 560, 1, 0, 0, 0, 585, 561, 1, 0, 0, 0, 585, 577, 1, 0, 0, 0, 585, 584, 1, 0, 0, 0, 586, 595, 1, 0, 0, 0, 587, 588, 10, 5, 0, 0, 588, 589, 5, 56, 0, 0, 589, 594, 3, 124, 62, 6, 590, 591, 10, 4, 0, 0, 591, 592, 5, 75, 0, 0, 592, 594, 3, 124, 62, 5, 593, 587, 1, 0, 0, 0, 593, 590, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 125, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 600, 3, 130, 65, 0, 599, 601, 5, 71, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 5, 70, 0, 0, 603, 604, 3, 154, 77, 0, 604, 629, 1, 0, 0, 0, 605, 607, 3, 130, 65, 0, 606, 608, 5, 71, 0, 0, 607, 606, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 5, 77, 0, 0, 610, 611, 3, 154, 77, 0, 611, 629, 1, 0, 0, 0, 612, 614, 3, 130, 65, 0, 613, 615, 5, 71, 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 5, 70, 0, 0, 617, 618, 5, 99, 0, 0, 618, 623, 3, 154, 77, 0, 619, 620, 5, 62, 0, 0, 620, 622, 3, 154, 77, 0, 621, 619, 1, 0, 0, 0, 622, 625, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 627, 5, 100, 0, 0, 627, 629, 1, 0, 0, 0, 628, 598, 1, 0, 0, 0, 628, 605, 1, 0, 0, 0, 628, 612, 1, 0, 0, 0, 629, 127, 1, 0, 0, 0, 630, 633, 3, 48, 24, 0, 631, 632, 5, 60, 0, 0, 632, 634, 3, 10, 5, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 5, 61, 0, 0, 636, 637, 3, 144, 72, 0, 637, 129, 1, 0, 0, 0, 638, 644, 3, 132, 66, 0, 639, 640, 3, 132, 66, 0, 640, 641, 3, 156, 78, 0, 641, 642, 3, 132, 66, 0, 642, 644, 1, 0, 0, 0, 643, 638, 1, 0, 0, 0, 643, 639, 1, 0, 0, 0, 644, 131, 1, 0, 0, 0, 645, 646, 6, 66, -1, 0, 646, 650, 3, 134, 67, 0, 647, 648, 7, 4, 0, 0, 648, 650, 3, 132, 66, 3, 649, 645, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 650, 659, 1, 0, 0, 0, 651, 652, 10, 2, 0, 0, 652, 653, 7, 5, 0, 0, 653, 658, 3, 132, 66, 3, 654, 655, 10, 1, 0, 0, 655, 656, 7, 4, 0, 0, 656, 658, 3, 132, 66, 2, 657, 651, 1, 0, 0, 0, 657, 654, 1, 0, 0, 0, 658, 661, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 133, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 663, 6, 67, -1, 0, 663, 671, 3, 144, 72, 0, 664, 671, 3, 48, 24, 0, 665, 671, 3, 136, 68, 0, 666, 667, 5, 99, 0, 0, 667, 668, 3, 124, 62, 0, 668, 669, 5, 100, 0, 0, 669, 671, 1, 0, 0, 0, 670, 662, 1, 0, 0, 0, 670, 664, 1, 0, 0, 0, 670, 665, 1, 0, 0, 0, 670, 666, 1, 0, 0, 0, 671, 677, 1, 0, 0, 0, 672, 673, 10, 1, 0, 0, 673, 674, 5, 60, 0, 0, 674, 676, 3, 10, 5, 0, 675, 672, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 135, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 3, 138, 69, 0, 681, 695, 5, 99, 0, 0, 682, 696, 5, 89, 0, 0, 683, 688, 3, 124, 62, 0, 684, 685, 5, 62, 0, 0, 685, 687, 3, 124, 62, 0, 686, 684, 1, 0, 0, 0, 687, 690, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 693, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 691, 692, 5, 62, 0, 0, 692, 694, 3, 140, 70, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 682, 1, 0, 0, 0, 695, 683, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 100, 0, 0, 698, 137, 1, 0, 0, 0, 699, 700, 3, 62, 31, 0, 700, 139, 1, 0, 0, 0, 701, 702, 5, 92, 0, 0, 702, 707, 3, 142, 71, 0, 703, 704, 5, 62, 0, 0, 704, 706, 3, 142, 71, 0, 705, 703, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 710, 711, 5, 93, 0, 0, 711, 141, 1, 0, 0, 0, 712, 713, 3, 154, 77, 0, 713, 714, 5, 61, 0, 0, 714, 715, 3, 144, 72, 0, 715, 143, 1, 0, 0, 0, 716, 759, 5, 72, 0, 0, 717, 718, 3, 152, 76, 0, 718, 719, 5, 101, 0, 0, 719, 759, 1, 0, 0, 0, 720, 759, 3, 150, 75, 0, 721, 759, 3, 152, 76, 0, 722, 759, 3, 146, 73, 0, 723, 759, 3, 58, 29, 0, 724, 759, 3, 154, 77, 0, 725, 726, 5, 97, 0, 0, 726, 731, 3, 148, 74, 0, 727, 728, 5, 62, 0, 0, 728, 730, 3, 148, 74, 0, 729, 727, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 735, 5, 98, 0, 0, 735, 759, 1, 0, 0, 0, 736, 737, 5, 97, 0, 0, 737, 742, 3, 146, 73, 0, 738, 739, 5, 62, 0, 0, 739, 741, 3, 146, 73, 0, 740, 738, 1, 0, 0, 0, 741, 744, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 745, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 745, 746, 5, 98, 0, 0, 746, 759, 1, 0, 0, 0, 747, 748, 5, 97, 0, 0, 748, 753, 3, 154, 77, 0, 749, 750, 5, 62, 0, 0, 750, 752, 3, 154, 77, 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, 756, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 757, 5, 98, 0, 0, 757, 759, 1, 0, 0, 0, 758, 716, 1, 0, 0, 0, 758, 717, 1, 0, 0, 0, 758, 720, 1, 0, 0, 0, 758, 721, 1, 0, 0, 0, 758, 722, 1, 0, 0, 0, 758, 723, 1, 0, 0, 0, 758, 724, 1, 0, 0, 0, 758, 725, 1, 0, 0, 0, 758, 736, 1, 0, 0, 0, 758, 747, 1, 0, 0, 0, 759, 145, 1, 0, 0, 0, 760, 761, 7, 6, 0, 0, 761, 147, 1, 0, 0, 0, 762, 765, 3, 150, 75, 0, 763, 765, 3, 152, 76, 0, 764, 762, 1, 0, 0, 0, 764, 763, 1, 0, 0, 0, 765, 149, 1, 0, 0, 0, 766, 768, 7, 4, 0, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 5, 55, 0, 0, 770, 151, 1, 0, 0, 0, 771, 773, 7, 4, 0, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 5, 54, 0, 0, 775, 153, 1, 0, 0, 0, 776, 777, 5, 53, 0, 0, 777, 155, 1, 0, 0, 0, 778, 779, 7, 7, 0, 0, 779, 157, 1, 0, 0, 0, 780, 781, 7, 8, 0, 0, 781, 782, 5, 114, 0, 0, 782, 783, 3, 160, 80, 0, 783, 784, 3, 162, 81, 0, 784, 159, 1, 0, 0, 0, 785, 786, 3, 28, 14, 0, 786, 161, 1, 0, 0, 0, 787, 788, 5, 74, 0, 0, 788, 793, 3, 164, 82, 0, 789, 790, 5, 62, 0, 0, 790, 792, 3, 164, 82, 0, 791, 789, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 163, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 3, 130, 65, 0, 797, 165, 1, 0, 0, 0, 71, 177, 186, 217, 232, 238, 247, 253, 266, 270, 281, 297, 305, 309, 316, 322, 329, 337, 345, 353, 357, 361, 366, 377, 382, 386, 400, 411, 417, 431, 452, 460, 463, 468, 481, 487, 494, 505, 519, 531, 541, 547, 563, 572, 580, 585, 593, 595, 600, 607, 614, 623, 628, 633, 643, 649, 657, 659, 670, 677, 688, 693, 695, 707, 731, 742, 753, 758, 764, 767, 772, 793]
\ No newline at end of file
From 64e3af1441748c7560852c90275f290e770e9825 Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Tue, 17 Jun 2025 10:22:18 +0100
Subject: [PATCH 6/8] Add additional tests for LOOKUP JOIN
---
.../esql/parser/StatementParserTests.java | 27 +++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index cbac5eb912ea2..90444deaf78f6 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -86,6 +86,7 @@
import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.DATE_MATH;
import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.INDEX_SELECTOR;
import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.WILDCARD_PATTERN;
+import static org.elasticsearch.xpack.esql.IdentifierGenerator.quote;
import static org.elasticsearch.xpack.esql.IdentifierGenerator.randomIndexPattern;
import static org.elasticsearch.xpack.esql.IdentifierGenerator.randomIndexPatterns;
import static org.elasticsearch.xpack.esql.IdentifierGenerator.unquoteIndexPattern;
@@ -3186,6 +3187,32 @@ public void testInvalidJoinPatterns() {
);
}
+ // If one or more patterns participating in LOOKUP JOINs are partially quoted, we expect the partial quoting
+ // error messages to take precedence over any LOOKUP JOIN error messages.
+ {
+ // Generate a syntactically invalid (partial quoted) pattern.
+ var fromPatterns = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER)));
+ var joinPattern = randomIndexPattern();
+ expectError(
+ "FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(),
+ // Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted
+ // index name that we're expecting an unquoted string.
+ "expecting UNQUOTED_SOURCE"
+ );
+ }
+
+ {
+ var fromPatterns = randomIndexPattern();
+ // Generate a syntactically invalid (partial quoted) pattern.
+ var joinPattern = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER)));
+ expectError(
+ "FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(),
+ // Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted
+ // index name that we're expecting an unquoted string.
+ "expecting UNQUOTED_SOURCE"
+ );
+ }
+
if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled()) {
{
// Selectors are not supported on the left of the join query if used with cluster ids.
From 28276d5602a5aa83e8810f10d5c036b6fffa4917 Mon Sep 17 00:00:00 2001
From: Alexander Spies
Date: Tue, 17 Jun 2025 12:49:23 +0200
Subject: [PATCH 7/8] Update docs/changelog/127636.yaml
---
docs/changelog/127636.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 docs/changelog/127636.yaml
diff --git a/docs/changelog/127636.yaml b/docs/changelog/127636.yaml
new file mode 100644
index 0000000000000..30fcb6844cd6e
--- /dev/null
+++ b/docs/changelog/127636.yaml
@@ -0,0 +1,13 @@
+pr: 127636
+summary: Disallow mixed quoted/unquoted patterns in FROM
+area: ES|QL
+type: breaking
+issues:
+ - 122651
+breaking:
+ title: Disallow mixed quoted/unquoted patterns in FROM
+ area: ES|QL
+ details: Please describe the details of this change for the release notes. You can
+ use asciidoc.
+ impact: Please describe the impact of this change to users
+ notable: false
From cabf3a652e9190a16560cc62f0140afbc8fb088d Mon Sep 17 00:00:00 2001
From: Pawan Kartik
Date: Tue, 17 Jun 2025 11:59:57 +0100
Subject: [PATCH 8/8] Update changelog with more details
---
docs/changelog/127636.yaml | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/docs/changelog/127636.yaml b/docs/changelog/127636.yaml
index 30fcb6844cd6e..e329eb4bce333 100644
--- a/docs/changelog/127636.yaml
+++ b/docs/changelog/127636.yaml
@@ -7,7 +7,11 @@ issues:
breaking:
title: Disallow mixed quoted/unquoted patterns in FROM
area: ES|QL
- details: Please describe the details of this change for the release notes. You can
- use asciidoc.
- impact: Please describe the impact of this change to users
+ details: "Previously, the ES|QL grammar allowed users to individually quote constituent strings in index patterns\
+ \ such as \"remote_cluster\":\"index_name\". This would allow users to write complex malformed index patterns\
+ \ that often slip through grammar and the subsequent validation. This could result in runtime errors\
+ \ that can be misleading. This change simplifies the grammar to early reject such malformed index patterns\
+ \ at the parsing stage, allowing users to write simpler queries and see more relevant and meaningful\
+ \ errors."
+ impact: "Users can write queries with simpler index patterns and see more meaningful and relevant errors."
notable: false