diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RequestIndexFilteringTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RequestIndexFilteringTestCase.java index 38b6d716e1bc3..1cb2a6a526191 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RequestIndexFilteringTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RequestIndexFilteringTestCase.java @@ -225,7 +225,7 @@ public void testIndicesDontExist() throws IOException { // currently we don't support remote clusters in LOOKUP JOIN // this check happens before resolving actual indices and results in a different error message RemoteClusterAware.isRemoteIndexName(pattern) - ? allOf(containsString("parsing_exception"), containsString("remote clusters are not supported in LOOKUP JOIN")) + ? allOf(containsString("parsing_exception"), containsString("remote clusters are not supported")) : allOf(containsString("verification_exception"), containsString("Unknown index [foo]")) ); } diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index d788607ae31f0..7a9fdc47a5bc7 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -3,21 +3,62 @@ // This makes the output more predictable which is helpful here. -reranker using a single field +reranker using a single field, overwrite existing _score column required_capability: rerank required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH test_reranker -| KEEP book_no, title, author +| SORT _score DESC, book_no ASC +| RERANK "war and peace" ON title WITH inferenceId=test_reranker +| EVAL _score=ROUND(_score, 2) +| KEEP book_no, title, author, _score ; -book_no:keyword | title:text | author:text -5327 | War and Peace | Leo Tolstoy -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.08 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02 +; + +reranker using a single field, create a mew column +required_capability: rerank +required_capability: match_operator_colon + +FROM books METADATA _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| SORT _score DESC, book_no ASC +| RERANK "war and peace" ON title WITH inferenceId=test_reranker, scoreColumn=rerank_score +| EVAL _score=ROUND(_score, 2), rerank_score=ROUND(rerank_score, 2) +| KEEP book_no, title, author, rerank_score +; + +book_no:keyword | title:text | author:text | rerank_score:double +5327 | War and Peace | Leo Tolstoy | 0.08 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02 +; + +reranker using a single field, create a mew column, sort by rerank_score +required_capability: rerank +required_capability: match_operator_colon + +FROM books METADATA _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| SORT _score DESC +| RERANK "war and peace" ON title WITH inferenceId=test_reranker, scoreColumn=rerank_score +| EVAL _score=ROUND(_score, 2), rerank_score=ROUND(rerank_score, 2) +| SORT rerank_score, _score ASC, book_no ASC +| KEEP book_no, title, author, rerank_score +; + +book_no:keyword | title:text | author:text | rerank_score:double +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +5327 | War and Peace | Leo Tolstoy | 0.08 ; @@ -27,15 +68,17 @@ required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title, author WITH test_reranker -| KEEP book_no, title, author +| RERANK "war and peace" ON title, author WITH inferenceId=test_reranker +| EVAL _score=ROUND(_score, 2) +| SORT _score DESC, book_no ASC +| KEEP book_no, title, author, _score ; -book_no:keyword | title:text | author:text -5327 | War and Peace | Leo Tolstoy -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.02 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.01 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.01 ; @@ -45,16 +88,18 @@ required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| SORT _score DESC +| SORT _score DESC, book_no ASC | LIMIT 3 -| RERANK "war and peace" ON title WITH test_reranker -| KEEP book_no, title, author +| RERANK "war and peace" ON title WITH inferenceId=test_reranker +| EVAL _score=ROUND(_score, 2) +| SORT _score DESC, book_no ASC +| KEEP book_no, title, author, _score ; -book_no:keyword | title:text | author:text -5327 | War and Peace | Leo Tolstoy -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.08 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03 ; @@ -64,15 +109,17 @@ required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH test_reranker -| KEEP book_no, title, author +| RERANK "war and peace" ON title WITH inferenceId=test_reranker +| EVAL _score=ROUND(_score, 2) +| SORT _score DESC, book_no ASC +| KEEP book_no, title, author, _score | LIMIT 3 ; -book_no:keyword | title:text | author:text -5327 | War and Peace | Leo Tolstoy -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.08 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03 ; @@ -82,14 +129,15 @@ required_capability: match_operator_colon FROM books | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH test_reranker -| KEEP book_no, title, author +| RERANK "war and peace" ON title WITH inferenceId=test_reranker +| EVAL _score=ROUND(_score, 2) +| KEEP book_no, title, author, _score | SORT author, title | LIMIT 3 ; -book_no:keyword | title:text | author:text -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy -5327 | War and Peace | Leo Tolstoy +book_no:keyword | title:text | author:text | _score:double +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02 +5327 | War and Peace | Leo Tolstoy | 0.08 ; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 5ab13a638ab4e..f832aa746e010 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -387,8 +387,21 @@ joinPredicate : valueExpression ; +inferenceCommandOptions + : inferenceCommandOption (COMMA inferenceCommandOption)* + ; + +inferenceCommandOption + : identifier ASSIGN inferenceCommandOptionValue + ; + +inferenceCommandOptionValue + : constant + | identifier + ; + rerankCommand - : DEV_RERANK queryText=constant ON rerankFields (WITH inferenceId=identifierOrParameter)? + : DEV_RERANK queryText=constant ON rerankFields (WITH inferenceCommandOptions)? ; completionCommand diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index f8ebeb9126372..e9f57b92ede28 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -750,7 +750,11 @@ private LogicalPlan resolveRerank(Rerank rerank, List childrenOutput) if (rerank.scoreAttribute() instanceof UnresolvedAttribute ua) { Attribute resolved = resolveAttribute(ua, childrenOutput); if (resolved.resolved() == false || resolved.dataType() != DOUBLE) { - resolved = MetadataAttribute.create(Source.EMPTY, MetadataAttribute.SCORE); + if (ua.name().equals(MetadataAttribute.SCORE)) { + resolved = MetadataAttribute.create(Source.EMPTY, MetadataAttribute.SCORE); + } else { + resolved = new ReferenceAttribute(resolved.source(), resolved.name(), DOUBLE); + } } rerank = rerank.withScoreAttribute(resolved); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java index 73791768583c7..4b1491fbd7003 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java @@ -36,9 +36,9 @@ import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineLimits; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineOrderBy; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineSample; -import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownCompletion; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval; +import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownInferencePlan; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownRegexExtract; import org.elasticsearch.xpack.esql.optimizer.rules.logical.RemoveStatsOverride; import org.elasticsearch.xpack.esql.optimizer.rules.logical.ReplaceAggregateAggExpressionWithEval; @@ -187,7 +187,7 @@ protected static Batch operators() { new PushDownAndCombineLimits(), new PushDownAndCombineFilters(), new PushDownAndCombineSample(), - new PushDownCompletion(), + new PushDownInferencePlan(), new PushDownEval(), new PushDownRegexExtract(), new PushDownEnrich(), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java index 7577b106c4845..15f2dc26deef3 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java @@ -24,7 +24,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.RegexExtract; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; -import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; @@ -71,10 +71,10 @@ protected LogicalPlan rule(Filter filter) { // Push down filters that do not rely on attributes created by RegexExtract var attributes = AttributeSet.of(Expressions.asAttributes(re.extractedFields())); plan = maybePushDownPastUnary(filter, re, attributes::contains, NO_OP); - } else if (child instanceof Completion completion) { + } else if (child instanceof InferencePlan inferencePlan) { // Push down filters that do not rely on attributes created by Cpmpletion - var attributes = AttributeSet.of(completion.generatedAttributes()); - plan = maybePushDownPastUnary(filter, completion, attributes::contains, NO_OP); + var attributes = AttributeSet.of(inferencePlan.generatedAttributes()); + plan = maybePushDownPastUnary(filter, inferencePlan, attributes::contains, NO_OP); } else if (child instanceof Enrich enrich) { // Push down filters that do not rely on attributes created by Enrich var attributes = AttributeSet.of(Expressions.asAttributes(enrich.enrichFields())); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java index 24d53f668adac..975f56ee48ff4 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java @@ -17,7 +17,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.RegexExtract; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; -import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; @@ -43,7 +43,7 @@ public LogicalPlan rule(Limit limit, LogicalOptimizerContext ctx) { || unary instanceof Project || unary instanceof RegexExtract || unary instanceof Enrich - || unary instanceof Completion) { + || unary instanceof InferencePlan) { return unary.replaceChild(limit.replaceChild(unary.child())); } else if (unary instanceof MvExpand) { // MV_EXPAND can increase the number of rows, so we cannot just push the limit down diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownInferencePlan.java similarity index 67% rename from x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java rename to x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownInferencePlan.java index d74e90fb0569f..20e21adb89142 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownInferencePlan.java @@ -8,11 +8,11 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; -import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; -public final class PushDownCompletion extends OptimizerRules.OptimizerRule { +public final class PushDownInferencePlan extends OptimizerRules.OptimizerRule> { @Override - protected LogicalPlan rule(Completion p) { + protected LogicalPlan rule(InferencePlan p) { return PushDownUtils.pushGeneratingPlanPastProjectAndOrderBy(p); } } 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 beb103d327f98..a8e8c285f0c4f 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 @@ -358,9 +358,12 @@ joinCommand joinTarget joinCondition joinPredicate +inferenceCommandOptions +inferenceCommandOption +inferenceCommandOptionValue rerankCommand completionCommand atn: -[4, 1, 139, 760, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 3, 3, 199, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 211, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 218, 8, 5, 10, 5, 12, 5, 221, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 228, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 233, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 241, 8, 5, 10, 5, 12, 5, 244, 9, 5, 1, 6, 1, 6, 3, 6, 248, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 255, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 262, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 269, 8, 6, 10, 6, 12, 6, 272, 9, 6, 1, 6, 1, 6, 3, 6, 276, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 281, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 291, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 297, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 305, 8, 9, 10, 9, 12, 9, 308, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 318, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 323, 8, 10, 10, 10, 12, 10, 326, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 334, 8, 11, 10, 11, 12, 11, 337, 9, 11, 1, 11, 1, 11, 3, 11, 341, 8, 11, 3, 11, 343, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 353, 8, 13, 10, 13, 12, 13, 356, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 372, 8, 17, 10, 17, 12, 17, 375, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 380, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 387, 8, 19, 10, 19, 12, 19, 390, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 395, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 401, 8, 21, 10, 21, 12, 21, 404, 9, 21, 1, 21, 3, 21, 407, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 418, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 430, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 436, 8, 28, 10, 28, 12, 28, 439, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 449, 8, 30, 10, 30, 12, 30, 452, 9, 30, 1, 30, 3, 30, 455, 8, 30, 1, 30, 1, 30, 3, 30, 459, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 466, 8, 32, 1, 32, 1, 32, 3, 32, 470, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 475, 8, 33, 10, 33, 12, 33, 478, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 483, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 488, 8, 35, 10, 35, 12, 35, 491, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 496, 8, 36, 10, 36, 12, 36, 499, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 504, 8, 37, 10, 37, 12, 37, 507, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 514, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 529, 8, 40, 10, 40, 12, 40, 532, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 540, 8, 40, 10, 40, 12, 40, 543, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 551, 8, 40, 10, 40, 12, 40, 554, 9, 40, 1, 40, 1, 40, 3, 40, 558, 8, 40, 1, 41, 1, 41, 3, 41, 562, 8, 41, 1, 42, 1, 42, 3, 42, 566, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 571, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 580, 8, 45, 10, 45, 12, 45, 583, 9, 45, 1, 46, 1, 46, 3, 46, 587, 8, 46, 1, 46, 1, 46, 3, 46, 591, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 603, 8, 49, 10, 49, 12, 49, 606, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 616, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 622, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 634, 8, 54, 10, 54, 12, 54, 637, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 647, 8, 57, 1, 58, 3, 58, 650, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 655, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 677, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 683, 8, 65, 10, 65, 12, 65, 686, 9, 65, 3, 65, 688, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 693, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 701, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 708, 8, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 722, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 735, 8, 73, 10, 73, 12, 73, 738, 9, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 748, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 754, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 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, 0, 9, 1, 0, 69, 70, 1, 0, 71, 73, 2, 0, 33, 33, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 19, 19, 26, 27, 793, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 8, 200, 1, 0, 0, 0, 10, 232, 1, 0, 0, 0, 12, 275, 1, 0, 0, 0, 14, 277, 1, 0, 0, 0, 16, 290, 1, 0, 0, 0, 18, 296, 1, 0, 0, 0, 20, 317, 1, 0, 0, 0, 22, 327, 1, 0, 0, 0, 24, 346, 1, 0, 0, 0, 26, 348, 1, 0, 0, 0, 28, 359, 1, 0, 0, 0, 30, 363, 1, 0, 0, 0, 32, 365, 1, 0, 0, 0, 34, 368, 1, 0, 0, 0, 36, 379, 1, 0, 0, 0, 38, 383, 1, 0, 0, 0, 40, 391, 1, 0, 0, 0, 42, 396, 1, 0, 0, 0, 44, 417, 1, 0, 0, 0, 46, 419, 1, 0, 0, 0, 48, 421, 1, 0, 0, 0, 50, 423, 1, 0, 0, 0, 52, 425, 1, 0, 0, 0, 54, 429, 1, 0, 0, 0, 56, 431, 1, 0, 0, 0, 58, 440, 1, 0, 0, 0, 60, 444, 1, 0, 0, 0, 62, 460, 1, 0, 0, 0, 64, 463, 1, 0, 0, 0, 66, 471, 1, 0, 0, 0, 68, 479, 1, 0, 0, 0, 70, 484, 1, 0, 0, 0, 72, 492, 1, 0, 0, 0, 74, 500, 1, 0, 0, 0, 76, 508, 1, 0, 0, 0, 78, 513, 1, 0, 0, 0, 80, 557, 1, 0, 0, 0, 82, 561, 1, 0, 0, 0, 84, 565, 1, 0, 0, 0, 86, 570, 1, 0, 0, 0, 88, 572, 1, 0, 0, 0, 90, 575, 1, 0, 0, 0, 92, 584, 1, 0, 0, 0, 94, 592, 1, 0, 0, 0, 96, 595, 1, 0, 0, 0, 98, 598, 1, 0, 0, 0, 100, 615, 1, 0, 0, 0, 102, 617, 1, 0, 0, 0, 104, 623, 1, 0, 0, 0, 106, 627, 1, 0, 0, 0, 108, 630, 1, 0, 0, 0, 110, 638, 1, 0, 0, 0, 112, 642, 1, 0, 0, 0, 114, 646, 1, 0, 0, 0, 116, 649, 1, 0, 0, 0, 118, 654, 1, 0, 0, 0, 120, 658, 1, 0, 0, 0, 122, 660, 1, 0, 0, 0, 124, 662, 1, 0, 0, 0, 126, 665, 1, 0, 0, 0, 128, 669, 1, 0, 0, 0, 130, 672, 1, 0, 0, 0, 132, 692, 1, 0, 0, 0, 134, 696, 1, 0, 0, 0, 136, 709, 1, 0, 0, 0, 138, 712, 1, 0, 0, 0, 140, 717, 1, 0, 0, 0, 142, 723, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 730, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 741, 1, 0, 0, 0, 152, 749, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 199, 3, 62, 31, 0, 177, 199, 3, 8, 4, 0, 178, 199, 3, 94, 47, 0, 179, 199, 3, 88, 44, 0, 180, 199, 3, 64, 32, 0, 181, 199, 3, 90, 45, 0, 182, 199, 3, 96, 48, 0, 183, 199, 3, 98, 49, 0, 184, 199, 3, 102, 51, 0, 185, 199, 3, 104, 52, 0, 186, 199, 3, 130, 65, 0, 187, 199, 3, 106, 53, 0, 188, 199, 3, 142, 71, 0, 189, 199, 3, 134, 67, 0, 190, 199, 3, 152, 76, 0, 191, 199, 3, 136, 68, 0, 192, 193, 4, 3, 2, 0, 193, 199, 3, 140, 70, 0, 194, 195, 4, 3, 3, 0, 195, 199, 3, 138, 69, 0, 196, 197, 4, 3, 4, 0, 197, 199, 3, 150, 75, 0, 198, 176, 1, 0, 0, 0, 198, 177, 1, 0, 0, 0, 198, 178, 1, 0, 0, 0, 198, 179, 1, 0, 0, 0, 198, 180, 1, 0, 0, 0, 198, 181, 1, 0, 0, 0, 198, 182, 1, 0, 0, 0, 198, 183, 1, 0, 0, 0, 198, 184, 1, 0, 0, 0, 198, 185, 1, 0, 0, 0, 198, 186, 1, 0, 0, 0, 198, 187, 1, 0, 0, 0, 198, 188, 1, 0, 0, 0, 198, 189, 1, 0, 0, 0, 198, 190, 1, 0, 0, 0, 198, 191, 1, 0, 0, 0, 198, 192, 1, 0, 0, 0, 198, 194, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 199, 7, 1, 0, 0, 0, 200, 201, 5, 18, 0, 0, 201, 202, 3, 10, 5, 0, 202, 9, 1, 0, 0, 0, 203, 204, 6, 5, -1, 0, 204, 205, 5, 52, 0, 0, 205, 233, 3, 10, 5, 8, 206, 233, 3, 16, 8, 0, 207, 233, 3, 12, 6, 0, 208, 210, 3, 16, 8, 0, 209, 211, 5, 52, 0, 0, 210, 209, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 5, 47, 0, 0, 213, 214, 5, 51, 0, 0, 214, 219, 3, 16, 8, 0, 215, 216, 5, 42, 0, 0, 216, 218, 3, 16, 8, 0, 217, 215, 1, 0, 0, 0, 218, 221, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 222, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 222, 223, 5, 59, 0, 0, 223, 233, 1, 0, 0, 0, 224, 225, 3, 16, 8, 0, 225, 227, 5, 48, 0, 0, 226, 228, 5, 52, 0, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 5, 53, 0, 0, 230, 233, 1, 0, 0, 0, 231, 233, 3, 14, 7, 0, 232, 203, 1, 0, 0, 0, 232, 206, 1, 0, 0, 0, 232, 207, 1, 0, 0, 0, 232, 208, 1, 0, 0, 0, 232, 224, 1, 0, 0, 0, 232, 231, 1, 0, 0, 0, 233, 242, 1, 0, 0, 0, 234, 235, 10, 5, 0, 0, 235, 236, 5, 36, 0, 0, 236, 241, 3, 10, 5, 6, 237, 238, 10, 4, 0, 0, 238, 239, 5, 56, 0, 0, 239, 241, 3, 10, 5, 5, 240, 234, 1, 0, 0, 0, 240, 237, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 11, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 247, 3, 16, 8, 0, 246, 248, 5, 52, 0, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 5, 50, 0, 0, 250, 251, 3, 120, 60, 0, 251, 276, 1, 0, 0, 0, 252, 254, 3, 16, 8, 0, 253, 255, 5, 52, 0, 0, 254, 253, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 5, 58, 0, 0, 257, 258, 3, 120, 60, 0, 258, 276, 1, 0, 0, 0, 259, 261, 3, 16, 8, 0, 260, 262, 5, 52, 0, 0, 261, 260, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 5, 50, 0, 0, 264, 265, 5, 51, 0, 0, 265, 270, 3, 120, 60, 0, 266, 267, 5, 42, 0, 0, 267, 269, 3, 120, 60, 0, 268, 266, 1, 0, 0, 0, 269, 272, 1, 0, 0, 0, 270, 268, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 273, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 273, 274, 5, 59, 0, 0, 274, 276, 1, 0, 0, 0, 275, 245, 1, 0, 0, 0, 275, 252, 1, 0, 0, 0, 275, 259, 1, 0, 0, 0, 276, 13, 1, 0, 0, 0, 277, 280, 3, 70, 35, 0, 278, 279, 5, 40, 0, 0, 279, 281, 3, 30, 15, 0, 280, 278, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 5, 41, 0, 0, 283, 284, 3, 80, 40, 0, 284, 15, 1, 0, 0, 0, 285, 291, 3, 18, 9, 0, 286, 287, 3, 18, 9, 0, 287, 288, 3, 122, 61, 0, 288, 289, 3, 18, 9, 0, 289, 291, 1, 0, 0, 0, 290, 285, 1, 0, 0, 0, 290, 286, 1, 0, 0, 0, 291, 17, 1, 0, 0, 0, 292, 293, 6, 9, -1, 0, 293, 297, 3, 20, 10, 0, 294, 295, 7, 0, 0, 0, 295, 297, 3, 18, 9, 3, 296, 292, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 306, 1, 0, 0, 0, 298, 299, 10, 2, 0, 0, 299, 300, 7, 1, 0, 0, 300, 305, 3, 18, 9, 3, 301, 302, 10, 1, 0, 0, 302, 303, 7, 0, 0, 0, 303, 305, 3, 18, 9, 2, 304, 298, 1, 0, 0, 0, 304, 301, 1, 0, 0, 0, 305, 308, 1, 0, 0, 0, 306, 304, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 19, 1, 0, 0, 0, 308, 306, 1, 0, 0, 0, 309, 310, 6, 10, -1, 0, 310, 318, 3, 80, 40, 0, 311, 318, 3, 70, 35, 0, 312, 318, 3, 22, 11, 0, 313, 314, 5, 51, 0, 0, 314, 315, 3, 10, 5, 0, 315, 316, 5, 59, 0, 0, 316, 318, 1, 0, 0, 0, 317, 309, 1, 0, 0, 0, 317, 311, 1, 0, 0, 0, 317, 312, 1, 0, 0, 0, 317, 313, 1, 0, 0, 0, 318, 324, 1, 0, 0, 0, 319, 320, 10, 1, 0, 0, 320, 321, 5, 40, 0, 0, 321, 323, 3, 30, 15, 0, 322, 319, 1, 0, 0, 0, 323, 326, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 21, 1, 0, 0, 0, 326, 324, 1, 0, 0, 0, 327, 328, 3, 24, 12, 0, 328, 342, 5, 51, 0, 0, 329, 343, 5, 71, 0, 0, 330, 335, 3, 10, 5, 0, 331, 332, 5, 42, 0, 0, 332, 334, 3, 10, 5, 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, 340, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 42, 0, 0, 339, 341, 3, 26, 13, 0, 340, 338, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 343, 1, 0, 0, 0, 342, 329, 1, 0, 0, 0, 342, 330, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 5, 59, 0, 0, 345, 23, 1, 0, 0, 0, 346, 347, 3, 86, 43, 0, 347, 25, 1, 0, 0, 0, 348, 349, 5, 74, 0, 0, 349, 354, 3, 28, 14, 0, 350, 351, 5, 42, 0, 0, 351, 353, 3, 28, 14, 0, 352, 350, 1, 0, 0, 0, 353, 356, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 357, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 357, 358, 5, 75, 0, 0, 358, 27, 1, 0, 0, 0, 359, 360, 3, 120, 60, 0, 360, 361, 5, 41, 0, 0, 361, 362, 3, 80, 40, 0, 362, 29, 1, 0, 0, 0, 363, 364, 3, 76, 38, 0, 364, 31, 1, 0, 0, 0, 365, 366, 5, 13, 0, 0, 366, 367, 3, 34, 17, 0, 367, 33, 1, 0, 0, 0, 368, 373, 3, 36, 18, 0, 369, 370, 5, 42, 0, 0, 370, 372, 3, 36, 18, 0, 371, 369, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 35, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 3, 70, 35, 0, 377, 378, 5, 38, 0, 0, 378, 380, 1, 0, 0, 0, 379, 376, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 3, 10, 5, 0, 382, 37, 1, 0, 0, 0, 383, 388, 3, 40, 20, 0, 384, 385, 5, 42, 0, 0, 385, 387, 3, 40, 20, 0, 386, 384, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 39, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 391, 394, 3, 70, 35, 0, 392, 393, 5, 38, 0, 0, 393, 395, 3, 10, 5, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 41, 1, 0, 0, 0, 396, 397, 5, 7, 0, 0, 397, 402, 3, 44, 22, 0, 398, 399, 5, 42, 0, 0, 399, 401, 3, 44, 22, 0, 400, 398, 1, 0, 0, 0, 401, 404, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 406, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 407, 3, 54, 27, 0, 406, 405, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 43, 1, 0, 0, 0, 408, 409, 3, 46, 23, 0, 409, 410, 5, 41, 0, 0, 410, 411, 3, 50, 25, 0, 411, 418, 1, 0, 0, 0, 412, 413, 3, 50, 25, 0, 413, 414, 5, 40, 0, 0, 414, 415, 3, 48, 24, 0, 415, 418, 1, 0, 0, 0, 416, 418, 3, 52, 26, 0, 417, 408, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 45, 1, 0, 0, 0, 419, 420, 5, 90, 0, 0, 420, 47, 1, 0, 0, 0, 421, 422, 5, 90, 0, 0, 422, 49, 1, 0, 0, 0, 423, 424, 5, 90, 0, 0, 424, 51, 1, 0, 0, 0, 425, 426, 7, 2, 0, 0, 426, 53, 1, 0, 0, 0, 427, 430, 3, 56, 28, 0, 428, 430, 3, 58, 29, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 55, 1, 0, 0, 0, 431, 432, 5, 89, 0, 0, 432, 437, 5, 90, 0, 0, 433, 434, 5, 42, 0, 0, 434, 436, 5, 90, 0, 0, 435, 433, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 57, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 441, 5, 79, 0, 0, 441, 442, 3, 56, 28, 0, 442, 443, 5, 80, 0, 0, 443, 59, 1, 0, 0, 0, 444, 445, 5, 23, 0, 0, 445, 450, 3, 44, 22, 0, 446, 447, 5, 42, 0, 0, 447, 449, 3, 44, 22, 0, 448, 446, 1, 0, 0, 0, 449, 452, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 454, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 453, 455, 3, 66, 33, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 457, 5, 39, 0, 0, 457, 459, 3, 34, 17, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 61, 1, 0, 0, 0, 460, 461, 5, 5, 0, 0, 461, 462, 3, 34, 17, 0, 462, 63, 1, 0, 0, 0, 463, 465, 5, 17, 0, 0, 464, 466, 3, 66, 33, 0, 465, 464, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 468, 5, 39, 0, 0, 468, 470, 3, 34, 17, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 65, 1, 0, 0, 0, 471, 476, 3, 68, 34, 0, 472, 473, 5, 42, 0, 0, 473, 475, 3, 68, 34, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 67, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 482, 3, 36, 18, 0, 480, 481, 5, 18, 0, 0, 481, 483, 3, 10, 5, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 69, 1, 0, 0, 0, 484, 489, 3, 86, 43, 0, 485, 486, 5, 44, 0, 0, 486, 488, 3, 86, 43, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 71, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 497, 3, 78, 39, 0, 493, 494, 5, 44, 0, 0, 494, 496, 3, 78, 39, 0, 495, 493, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 73, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 505, 3, 72, 36, 0, 501, 502, 5, 42, 0, 0, 502, 504, 3, 72, 36, 0, 503, 501, 1, 0, 0, 0, 504, 507, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 75, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 509, 7, 3, 0, 0, 509, 77, 1, 0, 0, 0, 510, 514, 5, 94, 0, 0, 511, 514, 3, 82, 41, 0, 512, 514, 3, 84, 42, 0, 513, 510, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 512, 1, 0, 0, 0, 514, 79, 1, 0, 0, 0, 515, 558, 5, 53, 0, 0, 516, 517, 3, 118, 59, 0, 517, 518, 5, 81, 0, 0, 518, 558, 1, 0, 0, 0, 519, 558, 3, 116, 58, 0, 520, 558, 3, 118, 59, 0, 521, 558, 3, 112, 56, 0, 522, 558, 3, 82, 41, 0, 523, 558, 3, 120, 60, 0, 524, 525, 5, 79, 0, 0, 525, 530, 3, 114, 57, 0, 526, 527, 5, 42, 0, 0, 527, 529, 3, 114, 57, 0, 528, 526, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 80, 0, 0, 534, 558, 1, 0, 0, 0, 535, 536, 5, 79, 0, 0, 536, 541, 3, 112, 56, 0, 537, 538, 5, 42, 0, 0, 538, 540, 3, 112, 56, 0, 539, 537, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 544, 545, 5, 80, 0, 0, 545, 558, 1, 0, 0, 0, 546, 547, 5, 79, 0, 0, 547, 552, 3, 120, 60, 0, 548, 549, 5, 42, 0, 0, 549, 551, 3, 120, 60, 0, 550, 548, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 555, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 555, 556, 5, 80, 0, 0, 556, 558, 1, 0, 0, 0, 557, 515, 1, 0, 0, 0, 557, 516, 1, 0, 0, 0, 557, 519, 1, 0, 0, 0, 557, 520, 1, 0, 0, 0, 557, 521, 1, 0, 0, 0, 557, 522, 1, 0, 0, 0, 557, 523, 1, 0, 0, 0, 557, 524, 1, 0, 0, 0, 557, 535, 1, 0, 0, 0, 557, 546, 1, 0, 0, 0, 558, 81, 1, 0, 0, 0, 559, 562, 5, 57, 0, 0, 560, 562, 5, 77, 0, 0, 561, 559, 1, 0, 0, 0, 561, 560, 1, 0, 0, 0, 562, 83, 1, 0, 0, 0, 563, 566, 5, 76, 0, 0, 564, 566, 5, 78, 0, 0, 565, 563, 1, 0, 0, 0, 565, 564, 1, 0, 0, 0, 566, 85, 1, 0, 0, 0, 567, 571, 3, 76, 38, 0, 568, 571, 3, 82, 41, 0, 569, 571, 3, 84, 42, 0, 570, 567, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 87, 1, 0, 0, 0, 572, 573, 5, 10, 0, 0, 573, 574, 3, 80, 40, 0, 574, 89, 1, 0, 0, 0, 575, 576, 5, 16, 0, 0, 576, 581, 3, 92, 46, 0, 577, 578, 5, 42, 0, 0, 578, 580, 3, 92, 46, 0, 579, 577, 1, 0, 0, 0, 580, 583, 1, 0, 0, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 91, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 584, 586, 3, 10, 5, 0, 585, 587, 7, 4, 0, 0, 586, 585, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 589, 5, 54, 0, 0, 589, 591, 7, 5, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 93, 1, 0, 0, 0, 592, 593, 5, 9, 0, 0, 593, 594, 3, 74, 37, 0, 594, 95, 1, 0, 0, 0, 595, 596, 5, 3, 0, 0, 596, 597, 3, 74, 37, 0, 597, 97, 1, 0, 0, 0, 598, 599, 5, 12, 0, 0, 599, 604, 3, 100, 50, 0, 600, 601, 5, 42, 0, 0, 601, 603, 3, 100, 50, 0, 602, 600, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 99, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 608, 3, 72, 36, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 72, 36, 0, 610, 616, 1, 0, 0, 0, 611, 612, 3, 72, 36, 0, 612, 613, 5, 38, 0, 0, 613, 614, 3, 72, 36, 0, 614, 616, 1, 0, 0, 0, 615, 607, 1, 0, 0, 0, 615, 611, 1, 0, 0, 0, 616, 101, 1, 0, 0, 0, 617, 618, 5, 2, 0, 0, 618, 619, 3, 20, 10, 0, 619, 621, 3, 120, 60, 0, 620, 622, 3, 108, 54, 0, 621, 620, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 103, 1, 0, 0, 0, 623, 624, 5, 8, 0, 0, 624, 625, 3, 20, 10, 0, 625, 626, 3, 120, 60, 0, 626, 105, 1, 0, 0, 0, 627, 628, 5, 11, 0, 0, 628, 629, 3, 70, 35, 0, 629, 107, 1, 0, 0, 0, 630, 635, 3, 110, 55, 0, 631, 632, 5, 42, 0, 0, 632, 634, 3, 110, 55, 0, 633, 631, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 109, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 3, 76, 38, 0, 639, 640, 5, 38, 0, 0, 640, 641, 3, 80, 40, 0, 641, 111, 1, 0, 0, 0, 642, 643, 7, 6, 0, 0, 643, 113, 1, 0, 0, 0, 644, 647, 3, 116, 58, 0, 645, 647, 3, 118, 59, 0, 646, 644, 1, 0, 0, 0, 646, 645, 1, 0, 0, 0, 647, 115, 1, 0, 0, 0, 648, 650, 7, 0, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 5, 35, 0, 0, 652, 117, 1, 0, 0, 0, 653, 655, 7, 0, 0, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 34, 0, 0, 657, 119, 1, 0, 0, 0, 658, 659, 5, 33, 0, 0, 659, 121, 1, 0, 0, 0, 660, 661, 7, 7, 0, 0, 661, 123, 1, 0, 0, 0, 662, 663, 5, 6, 0, 0, 663, 664, 3, 126, 63, 0, 664, 125, 1, 0, 0, 0, 665, 666, 5, 79, 0, 0, 666, 667, 3, 2, 1, 0, 667, 668, 5, 80, 0, 0, 668, 127, 1, 0, 0, 0, 669, 670, 5, 15, 0, 0, 670, 671, 5, 112, 0, 0, 671, 129, 1, 0, 0, 0, 672, 673, 5, 4, 0, 0, 673, 676, 5, 102, 0, 0, 674, 675, 5, 55, 0, 0, 675, 677, 3, 72, 36, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 687, 1, 0, 0, 0, 678, 679, 5, 61, 0, 0, 679, 684, 3, 132, 66, 0, 680, 681, 5, 42, 0, 0, 681, 683, 3, 132, 66, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 688, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 678, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 131, 1, 0, 0, 0, 689, 690, 3, 72, 36, 0, 690, 691, 5, 38, 0, 0, 691, 693, 1, 0, 0, 0, 692, 689, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 3, 72, 36, 0, 695, 133, 1, 0, 0, 0, 696, 697, 5, 20, 0, 0, 697, 700, 3, 70, 35, 0, 698, 699, 5, 55, 0, 0, 699, 701, 3, 70, 35, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 707, 1, 0, 0, 0, 702, 703, 5, 98, 0, 0, 703, 704, 3, 70, 35, 0, 704, 705, 5, 42, 0, 0, 705, 706, 3, 70, 35, 0, 706, 708, 1, 0, 0, 0, 707, 702, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 135, 1, 0, 0, 0, 709, 710, 5, 14, 0, 0, 710, 711, 3, 80, 40, 0, 711, 137, 1, 0, 0, 0, 712, 713, 5, 22, 0, 0, 713, 714, 3, 44, 22, 0, 714, 715, 5, 55, 0, 0, 715, 716, 3, 74, 37, 0, 716, 139, 1, 0, 0, 0, 717, 718, 5, 21, 0, 0, 718, 721, 3, 66, 33, 0, 719, 720, 5, 39, 0, 0, 720, 722, 3, 34, 17, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 141, 1, 0, 0, 0, 723, 724, 7, 8, 0, 0, 724, 725, 5, 126, 0, 0, 725, 726, 3, 144, 72, 0, 726, 727, 3, 146, 73, 0, 727, 143, 1, 0, 0, 0, 728, 729, 3, 44, 22, 0, 729, 145, 1, 0, 0, 0, 730, 731, 5, 55, 0, 0, 731, 736, 3, 148, 74, 0, 732, 733, 5, 42, 0, 0, 733, 735, 3, 148, 74, 0, 734, 732, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 147, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 739, 740, 3, 16, 8, 0, 740, 149, 1, 0, 0, 0, 741, 742, 5, 24, 0, 0, 742, 743, 3, 80, 40, 0, 743, 744, 5, 55, 0, 0, 744, 747, 3, 38, 19, 0, 745, 746, 5, 61, 0, 0, 746, 748, 3, 86, 43, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 151, 1, 0, 0, 0, 749, 753, 5, 1, 0, 0, 750, 751, 3, 70, 35, 0, 751, 752, 5, 38, 0, 0, 752, 754, 1, 0, 0, 0, 753, 750, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 3, 20, 10, 0, 756, 757, 5, 61, 0, 0, 757, 758, 3, 86, 43, 0, 758, 153, 1, 0, 0, 0, 72, 165, 174, 198, 210, 219, 227, 232, 240, 242, 247, 254, 261, 270, 275, 280, 290, 296, 304, 306, 317, 324, 335, 340, 342, 354, 373, 379, 388, 394, 402, 406, 417, 429, 437, 450, 454, 458, 465, 469, 476, 482, 489, 497, 505, 513, 530, 541, 552, 557, 561, 565, 570, 581, 586, 590, 604, 615, 621, 635, 646, 649, 654, 676, 684, 687, 692, 700, 707, 721, 736, 747, 753] \ No newline at end of file +[4, 1, 139, 782, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 170, 8, 1, 10, 1, 12, 1, 173, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 181, 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, 3, 3, 205, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 224, 8, 5, 10, 5, 12, 5, 227, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 239, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 247, 8, 5, 10, 5, 12, 5, 250, 9, 5, 1, 6, 1, 6, 3, 6, 254, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 261, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 268, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 275, 8, 6, 10, 6, 12, 6, 278, 9, 6, 1, 6, 1, 6, 3, 6, 282, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 287, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 297, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 303, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 311, 8, 9, 10, 9, 12, 9, 314, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 324, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 329, 8, 10, 10, 10, 12, 10, 332, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 340, 8, 11, 10, 11, 12, 11, 343, 9, 11, 1, 11, 1, 11, 3, 11, 347, 8, 11, 3, 11, 349, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 359, 8, 13, 10, 13, 12, 13, 362, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 378, 8, 17, 10, 17, 12, 17, 381, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 386, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 393, 8, 19, 10, 19, 12, 19, 396, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 401, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 407, 8, 21, 10, 21, 12, 21, 410, 9, 21, 1, 21, 3, 21, 413, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 424, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 436, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 442, 8, 28, 10, 28, 12, 28, 445, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 455, 8, 30, 10, 30, 12, 30, 458, 9, 30, 1, 30, 3, 30, 461, 8, 30, 1, 30, 1, 30, 3, 30, 465, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 472, 8, 32, 1, 32, 1, 32, 3, 32, 476, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 481, 8, 33, 10, 33, 12, 33, 484, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 489, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 494, 8, 35, 10, 35, 12, 35, 497, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 502, 8, 36, 10, 36, 12, 36, 505, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 510, 8, 37, 10, 37, 12, 37, 513, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 520, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 535, 8, 40, 10, 40, 12, 40, 538, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 546, 8, 40, 10, 40, 12, 40, 549, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 557, 8, 40, 10, 40, 12, 40, 560, 9, 40, 1, 40, 1, 40, 3, 40, 564, 8, 40, 1, 41, 1, 41, 3, 41, 568, 8, 41, 1, 42, 1, 42, 3, 42, 572, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 577, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 586, 8, 45, 10, 45, 12, 45, 589, 9, 45, 1, 46, 1, 46, 3, 46, 593, 8, 46, 1, 46, 1, 46, 3, 46, 597, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 609, 8, 49, 10, 49, 12, 49, 612, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 622, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 628, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 640, 8, 54, 10, 54, 12, 54, 643, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 653, 8, 57, 1, 58, 3, 58, 656, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 661, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 683, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 689, 8, 65, 10, 65, 12, 65, 692, 9, 65, 3, 65, 694, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 699, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 707, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 714, 8, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 728, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 741, 8, 73, 10, 73, 12, 73, 744, 9, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 5, 75, 751, 8, 75, 10, 75, 12, 75, 754, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 762, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 770, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 776, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 0, 4, 2, 10, 18, 20, 80, 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, 0, 9, 1, 0, 69, 70, 1, 0, 71, 73, 2, 0, 33, 33, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 19, 19, 26, 27, 814, 0, 160, 1, 0, 0, 0, 2, 163, 1, 0, 0, 0, 4, 180, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 8, 206, 1, 0, 0, 0, 10, 238, 1, 0, 0, 0, 12, 281, 1, 0, 0, 0, 14, 283, 1, 0, 0, 0, 16, 296, 1, 0, 0, 0, 18, 302, 1, 0, 0, 0, 20, 323, 1, 0, 0, 0, 22, 333, 1, 0, 0, 0, 24, 352, 1, 0, 0, 0, 26, 354, 1, 0, 0, 0, 28, 365, 1, 0, 0, 0, 30, 369, 1, 0, 0, 0, 32, 371, 1, 0, 0, 0, 34, 374, 1, 0, 0, 0, 36, 385, 1, 0, 0, 0, 38, 389, 1, 0, 0, 0, 40, 397, 1, 0, 0, 0, 42, 402, 1, 0, 0, 0, 44, 423, 1, 0, 0, 0, 46, 425, 1, 0, 0, 0, 48, 427, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 431, 1, 0, 0, 0, 54, 435, 1, 0, 0, 0, 56, 437, 1, 0, 0, 0, 58, 446, 1, 0, 0, 0, 60, 450, 1, 0, 0, 0, 62, 466, 1, 0, 0, 0, 64, 469, 1, 0, 0, 0, 66, 477, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 490, 1, 0, 0, 0, 72, 498, 1, 0, 0, 0, 74, 506, 1, 0, 0, 0, 76, 514, 1, 0, 0, 0, 78, 519, 1, 0, 0, 0, 80, 563, 1, 0, 0, 0, 82, 567, 1, 0, 0, 0, 84, 571, 1, 0, 0, 0, 86, 576, 1, 0, 0, 0, 88, 578, 1, 0, 0, 0, 90, 581, 1, 0, 0, 0, 92, 590, 1, 0, 0, 0, 94, 598, 1, 0, 0, 0, 96, 601, 1, 0, 0, 0, 98, 604, 1, 0, 0, 0, 100, 621, 1, 0, 0, 0, 102, 623, 1, 0, 0, 0, 104, 629, 1, 0, 0, 0, 106, 633, 1, 0, 0, 0, 108, 636, 1, 0, 0, 0, 110, 644, 1, 0, 0, 0, 112, 648, 1, 0, 0, 0, 114, 652, 1, 0, 0, 0, 116, 655, 1, 0, 0, 0, 118, 660, 1, 0, 0, 0, 120, 664, 1, 0, 0, 0, 122, 666, 1, 0, 0, 0, 124, 668, 1, 0, 0, 0, 126, 671, 1, 0, 0, 0, 128, 675, 1, 0, 0, 0, 130, 678, 1, 0, 0, 0, 132, 698, 1, 0, 0, 0, 134, 702, 1, 0, 0, 0, 136, 715, 1, 0, 0, 0, 138, 718, 1, 0, 0, 0, 140, 723, 1, 0, 0, 0, 142, 729, 1, 0, 0, 0, 144, 734, 1, 0, 0, 0, 146, 736, 1, 0, 0, 0, 148, 745, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 755, 1, 0, 0, 0, 154, 761, 1, 0, 0, 0, 156, 763, 1, 0, 0, 0, 158, 771, 1, 0, 0, 0, 160, 161, 3, 2, 1, 0, 161, 162, 5, 0, 0, 1, 162, 1, 1, 0, 0, 0, 163, 164, 6, 1, -1, 0, 164, 165, 3, 4, 2, 0, 165, 171, 1, 0, 0, 0, 166, 167, 10, 1, 0, 0, 167, 168, 5, 32, 0, 0, 168, 170, 3, 6, 3, 0, 169, 166, 1, 0, 0, 0, 170, 173, 1, 0, 0, 0, 171, 169, 1, 0, 0, 0, 171, 172, 1, 0, 0, 0, 172, 3, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 174, 181, 3, 124, 62, 0, 175, 181, 3, 42, 21, 0, 176, 181, 3, 32, 16, 0, 177, 181, 3, 128, 64, 0, 178, 179, 4, 2, 1, 0, 179, 181, 3, 60, 30, 0, 180, 174, 1, 0, 0, 0, 180, 175, 1, 0, 0, 0, 180, 176, 1, 0, 0, 0, 180, 177, 1, 0, 0, 0, 180, 178, 1, 0, 0, 0, 181, 5, 1, 0, 0, 0, 182, 205, 3, 62, 31, 0, 183, 205, 3, 8, 4, 0, 184, 205, 3, 94, 47, 0, 185, 205, 3, 88, 44, 0, 186, 205, 3, 64, 32, 0, 187, 205, 3, 90, 45, 0, 188, 205, 3, 96, 48, 0, 189, 205, 3, 98, 49, 0, 190, 205, 3, 102, 51, 0, 191, 205, 3, 104, 52, 0, 192, 205, 3, 130, 65, 0, 193, 205, 3, 106, 53, 0, 194, 205, 3, 142, 71, 0, 195, 205, 3, 134, 67, 0, 196, 205, 3, 158, 79, 0, 197, 205, 3, 136, 68, 0, 198, 199, 4, 3, 2, 0, 199, 205, 3, 140, 70, 0, 200, 201, 4, 3, 3, 0, 201, 205, 3, 138, 69, 0, 202, 203, 4, 3, 4, 0, 203, 205, 3, 156, 78, 0, 204, 182, 1, 0, 0, 0, 204, 183, 1, 0, 0, 0, 204, 184, 1, 0, 0, 0, 204, 185, 1, 0, 0, 0, 204, 186, 1, 0, 0, 0, 204, 187, 1, 0, 0, 0, 204, 188, 1, 0, 0, 0, 204, 189, 1, 0, 0, 0, 204, 190, 1, 0, 0, 0, 204, 191, 1, 0, 0, 0, 204, 192, 1, 0, 0, 0, 204, 193, 1, 0, 0, 0, 204, 194, 1, 0, 0, 0, 204, 195, 1, 0, 0, 0, 204, 196, 1, 0, 0, 0, 204, 197, 1, 0, 0, 0, 204, 198, 1, 0, 0, 0, 204, 200, 1, 0, 0, 0, 204, 202, 1, 0, 0, 0, 205, 7, 1, 0, 0, 0, 206, 207, 5, 18, 0, 0, 207, 208, 3, 10, 5, 0, 208, 9, 1, 0, 0, 0, 209, 210, 6, 5, -1, 0, 210, 211, 5, 52, 0, 0, 211, 239, 3, 10, 5, 8, 212, 239, 3, 16, 8, 0, 213, 239, 3, 12, 6, 0, 214, 216, 3, 16, 8, 0, 215, 217, 5, 52, 0, 0, 216, 215, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 218, 1, 0, 0, 0, 218, 219, 5, 47, 0, 0, 219, 220, 5, 51, 0, 0, 220, 225, 3, 16, 8, 0, 221, 222, 5, 42, 0, 0, 222, 224, 3, 16, 8, 0, 223, 221, 1, 0, 0, 0, 224, 227, 1, 0, 0, 0, 225, 223, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 228, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 228, 229, 5, 59, 0, 0, 229, 239, 1, 0, 0, 0, 230, 231, 3, 16, 8, 0, 231, 233, 5, 48, 0, 0, 232, 234, 5, 52, 0, 0, 233, 232, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 236, 5, 53, 0, 0, 236, 239, 1, 0, 0, 0, 237, 239, 3, 14, 7, 0, 238, 209, 1, 0, 0, 0, 238, 212, 1, 0, 0, 0, 238, 213, 1, 0, 0, 0, 238, 214, 1, 0, 0, 0, 238, 230, 1, 0, 0, 0, 238, 237, 1, 0, 0, 0, 239, 248, 1, 0, 0, 0, 240, 241, 10, 5, 0, 0, 241, 242, 5, 36, 0, 0, 242, 247, 3, 10, 5, 6, 243, 244, 10, 4, 0, 0, 244, 245, 5, 56, 0, 0, 245, 247, 3, 10, 5, 5, 246, 240, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 11, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 253, 3, 16, 8, 0, 252, 254, 5, 52, 0, 0, 253, 252, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 256, 5, 50, 0, 0, 256, 257, 3, 120, 60, 0, 257, 282, 1, 0, 0, 0, 258, 260, 3, 16, 8, 0, 259, 261, 5, 52, 0, 0, 260, 259, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 5, 58, 0, 0, 263, 264, 3, 120, 60, 0, 264, 282, 1, 0, 0, 0, 265, 267, 3, 16, 8, 0, 266, 268, 5, 52, 0, 0, 267, 266, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 270, 5, 50, 0, 0, 270, 271, 5, 51, 0, 0, 271, 276, 3, 120, 60, 0, 272, 273, 5, 42, 0, 0, 273, 275, 3, 120, 60, 0, 274, 272, 1, 0, 0, 0, 275, 278, 1, 0, 0, 0, 276, 274, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 279, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 279, 280, 5, 59, 0, 0, 280, 282, 1, 0, 0, 0, 281, 251, 1, 0, 0, 0, 281, 258, 1, 0, 0, 0, 281, 265, 1, 0, 0, 0, 282, 13, 1, 0, 0, 0, 283, 286, 3, 70, 35, 0, 284, 285, 5, 40, 0, 0, 285, 287, 3, 30, 15, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 289, 5, 41, 0, 0, 289, 290, 3, 80, 40, 0, 290, 15, 1, 0, 0, 0, 291, 297, 3, 18, 9, 0, 292, 293, 3, 18, 9, 0, 293, 294, 3, 122, 61, 0, 294, 295, 3, 18, 9, 0, 295, 297, 1, 0, 0, 0, 296, 291, 1, 0, 0, 0, 296, 292, 1, 0, 0, 0, 297, 17, 1, 0, 0, 0, 298, 299, 6, 9, -1, 0, 299, 303, 3, 20, 10, 0, 300, 301, 7, 0, 0, 0, 301, 303, 3, 18, 9, 3, 302, 298, 1, 0, 0, 0, 302, 300, 1, 0, 0, 0, 303, 312, 1, 0, 0, 0, 304, 305, 10, 2, 0, 0, 305, 306, 7, 1, 0, 0, 306, 311, 3, 18, 9, 3, 307, 308, 10, 1, 0, 0, 308, 309, 7, 0, 0, 0, 309, 311, 3, 18, 9, 2, 310, 304, 1, 0, 0, 0, 310, 307, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 19, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 315, 316, 6, 10, -1, 0, 316, 324, 3, 80, 40, 0, 317, 324, 3, 70, 35, 0, 318, 324, 3, 22, 11, 0, 319, 320, 5, 51, 0, 0, 320, 321, 3, 10, 5, 0, 321, 322, 5, 59, 0, 0, 322, 324, 1, 0, 0, 0, 323, 315, 1, 0, 0, 0, 323, 317, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 323, 319, 1, 0, 0, 0, 324, 330, 1, 0, 0, 0, 325, 326, 10, 1, 0, 0, 326, 327, 5, 40, 0, 0, 327, 329, 3, 30, 15, 0, 328, 325, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 21, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 3, 24, 12, 0, 334, 348, 5, 51, 0, 0, 335, 349, 5, 71, 0, 0, 336, 341, 3, 10, 5, 0, 337, 338, 5, 42, 0, 0, 338, 340, 3, 10, 5, 0, 339, 337, 1, 0, 0, 0, 340, 343, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 346, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 345, 5, 42, 0, 0, 345, 347, 3, 26, 13, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 349, 1, 0, 0, 0, 348, 335, 1, 0, 0, 0, 348, 336, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 351, 5, 59, 0, 0, 351, 23, 1, 0, 0, 0, 352, 353, 3, 86, 43, 0, 353, 25, 1, 0, 0, 0, 354, 355, 5, 74, 0, 0, 355, 360, 3, 28, 14, 0, 356, 357, 5, 42, 0, 0, 357, 359, 3, 28, 14, 0, 358, 356, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 363, 364, 5, 75, 0, 0, 364, 27, 1, 0, 0, 0, 365, 366, 3, 120, 60, 0, 366, 367, 5, 41, 0, 0, 367, 368, 3, 80, 40, 0, 368, 29, 1, 0, 0, 0, 369, 370, 3, 76, 38, 0, 370, 31, 1, 0, 0, 0, 371, 372, 5, 13, 0, 0, 372, 373, 3, 34, 17, 0, 373, 33, 1, 0, 0, 0, 374, 379, 3, 36, 18, 0, 375, 376, 5, 42, 0, 0, 376, 378, 3, 36, 18, 0, 377, 375, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 35, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 383, 3, 70, 35, 0, 383, 384, 5, 38, 0, 0, 384, 386, 1, 0, 0, 0, 385, 382, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 3, 10, 5, 0, 388, 37, 1, 0, 0, 0, 389, 394, 3, 40, 20, 0, 390, 391, 5, 42, 0, 0, 391, 393, 3, 40, 20, 0, 392, 390, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 39, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 397, 400, 3, 70, 35, 0, 398, 399, 5, 38, 0, 0, 399, 401, 3, 10, 5, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 41, 1, 0, 0, 0, 402, 403, 5, 7, 0, 0, 403, 408, 3, 44, 22, 0, 404, 405, 5, 42, 0, 0, 405, 407, 3, 44, 22, 0, 406, 404, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 413, 3, 54, 27, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 43, 1, 0, 0, 0, 414, 415, 3, 46, 23, 0, 415, 416, 5, 41, 0, 0, 416, 417, 3, 50, 25, 0, 417, 424, 1, 0, 0, 0, 418, 419, 3, 50, 25, 0, 419, 420, 5, 40, 0, 0, 420, 421, 3, 48, 24, 0, 421, 424, 1, 0, 0, 0, 422, 424, 3, 52, 26, 0, 423, 414, 1, 0, 0, 0, 423, 418, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 45, 1, 0, 0, 0, 425, 426, 5, 90, 0, 0, 426, 47, 1, 0, 0, 0, 427, 428, 5, 90, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 90, 0, 0, 430, 51, 1, 0, 0, 0, 431, 432, 7, 2, 0, 0, 432, 53, 1, 0, 0, 0, 433, 436, 3, 56, 28, 0, 434, 436, 3, 58, 29, 0, 435, 433, 1, 0, 0, 0, 435, 434, 1, 0, 0, 0, 436, 55, 1, 0, 0, 0, 437, 438, 5, 89, 0, 0, 438, 443, 5, 90, 0, 0, 439, 440, 5, 42, 0, 0, 440, 442, 5, 90, 0, 0, 441, 439, 1, 0, 0, 0, 442, 445, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 57, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 446, 447, 5, 79, 0, 0, 447, 448, 3, 56, 28, 0, 448, 449, 5, 80, 0, 0, 449, 59, 1, 0, 0, 0, 450, 451, 5, 23, 0, 0, 451, 456, 3, 44, 22, 0, 452, 453, 5, 42, 0, 0, 453, 455, 3, 44, 22, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 461, 3, 66, 33, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 463, 5, 39, 0, 0, 463, 465, 3, 34, 17, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 61, 1, 0, 0, 0, 466, 467, 5, 5, 0, 0, 467, 468, 3, 34, 17, 0, 468, 63, 1, 0, 0, 0, 469, 471, 5, 17, 0, 0, 470, 472, 3, 66, 33, 0, 471, 470, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 474, 5, 39, 0, 0, 474, 476, 3, 34, 17, 0, 475, 473, 1, 0, 0, 0, 475, 476, 1, 0, 0, 0, 476, 65, 1, 0, 0, 0, 477, 482, 3, 68, 34, 0, 478, 479, 5, 42, 0, 0, 479, 481, 3, 68, 34, 0, 480, 478, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 67, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 488, 3, 36, 18, 0, 486, 487, 5, 18, 0, 0, 487, 489, 3, 10, 5, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 69, 1, 0, 0, 0, 490, 495, 3, 86, 43, 0, 491, 492, 5, 44, 0, 0, 492, 494, 3, 86, 43, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 71, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 503, 3, 78, 39, 0, 499, 500, 5, 44, 0, 0, 500, 502, 3, 78, 39, 0, 501, 499, 1, 0, 0, 0, 502, 505, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 73, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 506, 511, 3, 72, 36, 0, 507, 508, 5, 42, 0, 0, 508, 510, 3, 72, 36, 0, 509, 507, 1, 0, 0, 0, 510, 513, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 75, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 514, 515, 7, 3, 0, 0, 515, 77, 1, 0, 0, 0, 516, 520, 5, 94, 0, 0, 517, 520, 3, 82, 41, 0, 518, 520, 3, 84, 42, 0, 519, 516, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 79, 1, 0, 0, 0, 521, 564, 5, 53, 0, 0, 522, 523, 3, 118, 59, 0, 523, 524, 5, 81, 0, 0, 524, 564, 1, 0, 0, 0, 525, 564, 3, 116, 58, 0, 526, 564, 3, 118, 59, 0, 527, 564, 3, 112, 56, 0, 528, 564, 3, 82, 41, 0, 529, 564, 3, 120, 60, 0, 530, 531, 5, 79, 0, 0, 531, 536, 3, 114, 57, 0, 532, 533, 5, 42, 0, 0, 533, 535, 3, 114, 57, 0, 534, 532, 1, 0, 0, 0, 535, 538, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 539, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 539, 540, 5, 80, 0, 0, 540, 564, 1, 0, 0, 0, 541, 542, 5, 79, 0, 0, 542, 547, 3, 112, 56, 0, 543, 544, 5, 42, 0, 0, 544, 546, 3, 112, 56, 0, 545, 543, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 550, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 551, 5, 80, 0, 0, 551, 564, 1, 0, 0, 0, 552, 553, 5, 79, 0, 0, 553, 558, 3, 120, 60, 0, 554, 555, 5, 42, 0, 0, 555, 557, 3, 120, 60, 0, 556, 554, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 561, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 562, 5, 80, 0, 0, 562, 564, 1, 0, 0, 0, 563, 521, 1, 0, 0, 0, 563, 522, 1, 0, 0, 0, 563, 525, 1, 0, 0, 0, 563, 526, 1, 0, 0, 0, 563, 527, 1, 0, 0, 0, 563, 528, 1, 0, 0, 0, 563, 529, 1, 0, 0, 0, 563, 530, 1, 0, 0, 0, 563, 541, 1, 0, 0, 0, 563, 552, 1, 0, 0, 0, 564, 81, 1, 0, 0, 0, 565, 568, 5, 57, 0, 0, 566, 568, 5, 77, 0, 0, 567, 565, 1, 0, 0, 0, 567, 566, 1, 0, 0, 0, 568, 83, 1, 0, 0, 0, 569, 572, 5, 76, 0, 0, 570, 572, 5, 78, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 85, 1, 0, 0, 0, 573, 577, 3, 76, 38, 0, 574, 577, 3, 82, 41, 0, 575, 577, 3, 84, 42, 0, 576, 573, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 575, 1, 0, 0, 0, 577, 87, 1, 0, 0, 0, 578, 579, 5, 10, 0, 0, 579, 580, 3, 80, 40, 0, 580, 89, 1, 0, 0, 0, 581, 582, 5, 16, 0, 0, 582, 587, 3, 92, 46, 0, 583, 584, 5, 42, 0, 0, 584, 586, 3, 92, 46, 0, 585, 583, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 91, 1, 0, 0, 0, 589, 587, 1, 0, 0, 0, 590, 592, 3, 10, 5, 0, 591, 593, 7, 4, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 596, 1, 0, 0, 0, 594, 595, 5, 54, 0, 0, 595, 597, 7, 5, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 93, 1, 0, 0, 0, 598, 599, 5, 9, 0, 0, 599, 600, 3, 74, 37, 0, 600, 95, 1, 0, 0, 0, 601, 602, 5, 3, 0, 0, 602, 603, 3, 74, 37, 0, 603, 97, 1, 0, 0, 0, 604, 605, 5, 12, 0, 0, 605, 610, 3, 100, 50, 0, 606, 607, 5, 42, 0, 0, 607, 609, 3, 100, 50, 0, 608, 606, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 99, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 3, 72, 36, 0, 614, 615, 5, 98, 0, 0, 615, 616, 3, 72, 36, 0, 616, 622, 1, 0, 0, 0, 617, 618, 3, 72, 36, 0, 618, 619, 5, 38, 0, 0, 619, 620, 3, 72, 36, 0, 620, 622, 1, 0, 0, 0, 621, 613, 1, 0, 0, 0, 621, 617, 1, 0, 0, 0, 622, 101, 1, 0, 0, 0, 623, 624, 5, 2, 0, 0, 624, 625, 3, 20, 10, 0, 625, 627, 3, 120, 60, 0, 626, 628, 3, 108, 54, 0, 627, 626, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 103, 1, 0, 0, 0, 629, 630, 5, 8, 0, 0, 630, 631, 3, 20, 10, 0, 631, 632, 3, 120, 60, 0, 632, 105, 1, 0, 0, 0, 633, 634, 5, 11, 0, 0, 634, 635, 3, 70, 35, 0, 635, 107, 1, 0, 0, 0, 636, 641, 3, 110, 55, 0, 637, 638, 5, 42, 0, 0, 638, 640, 3, 110, 55, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 109, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 645, 3, 76, 38, 0, 645, 646, 5, 38, 0, 0, 646, 647, 3, 80, 40, 0, 647, 111, 1, 0, 0, 0, 648, 649, 7, 6, 0, 0, 649, 113, 1, 0, 0, 0, 650, 653, 3, 116, 58, 0, 651, 653, 3, 118, 59, 0, 652, 650, 1, 0, 0, 0, 652, 651, 1, 0, 0, 0, 653, 115, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 35, 0, 0, 658, 117, 1, 0, 0, 0, 659, 661, 7, 0, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 5, 34, 0, 0, 663, 119, 1, 0, 0, 0, 664, 665, 5, 33, 0, 0, 665, 121, 1, 0, 0, 0, 666, 667, 7, 7, 0, 0, 667, 123, 1, 0, 0, 0, 668, 669, 5, 6, 0, 0, 669, 670, 3, 126, 63, 0, 670, 125, 1, 0, 0, 0, 671, 672, 5, 79, 0, 0, 672, 673, 3, 2, 1, 0, 673, 674, 5, 80, 0, 0, 674, 127, 1, 0, 0, 0, 675, 676, 5, 15, 0, 0, 676, 677, 5, 112, 0, 0, 677, 129, 1, 0, 0, 0, 678, 679, 5, 4, 0, 0, 679, 682, 5, 102, 0, 0, 680, 681, 5, 55, 0, 0, 681, 683, 3, 72, 36, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 693, 1, 0, 0, 0, 684, 685, 5, 61, 0, 0, 685, 690, 3, 132, 66, 0, 686, 687, 5, 42, 0, 0, 687, 689, 3, 132, 66, 0, 688, 686, 1, 0, 0, 0, 689, 692, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 694, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 684, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 131, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 697, 5, 38, 0, 0, 697, 699, 1, 0, 0, 0, 698, 695, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 3, 72, 36, 0, 701, 133, 1, 0, 0, 0, 702, 703, 5, 20, 0, 0, 703, 706, 3, 70, 35, 0, 704, 705, 5, 55, 0, 0, 705, 707, 3, 70, 35, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 713, 1, 0, 0, 0, 708, 709, 5, 98, 0, 0, 709, 710, 3, 70, 35, 0, 710, 711, 5, 42, 0, 0, 711, 712, 3, 70, 35, 0, 712, 714, 1, 0, 0, 0, 713, 708, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 135, 1, 0, 0, 0, 715, 716, 5, 14, 0, 0, 716, 717, 3, 80, 40, 0, 717, 137, 1, 0, 0, 0, 718, 719, 5, 22, 0, 0, 719, 720, 3, 44, 22, 0, 720, 721, 5, 55, 0, 0, 721, 722, 3, 74, 37, 0, 722, 139, 1, 0, 0, 0, 723, 724, 5, 21, 0, 0, 724, 727, 3, 66, 33, 0, 725, 726, 5, 39, 0, 0, 726, 728, 3, 34, 17, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 141, 1, 0, 0, 0, 729, 730, 7, 8, 0, 0, 730, 731, 5, 126, 0, 0, 731, 732, 3, 144, 72, 0, 732, 733, 3, 146, 73, 0, 733, 143, 1, 0, 0, 0, 734, 735, 3, 44, 22, 0, 735, 145, 1, 0, 0, 0, 736, 737, 5, 55, 0, 0, 737, 742, 3, 148, 74, 0, 738, 739, 5, 42, 0, 0, 739, 741, 3, 148, 74, 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, 147, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 745, 746, 3, 16, 8, 0, 746, 149, 1, 0, 0, 0, 747, 752, 3, 152, 76, 0, 748, 749, 5, 42, 0, 0, 749, 751, 3, 152, 76, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 151, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 756, 3, 76, 38, 0, 756, 757, 5, 38, 0, 0, 757, 758, 3, 154, 77, 0, 758, 153, 1, 0, 0, 0, 759, 762, 3, 80, 40, 0, 760, 762, 3, 76, 38, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 155, 1, 0, 0, 0, 763, 764, 5, 24, 0, 0, 764, 765, 3, 80, 40, 0, 765, 766, 5, 55, 0, 0, 766, 769, 3, 38, 19, 0, 767, 768, 5, 61, 0, 0, 768, 770, 3, 150, 75, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 157, 1, 0, 0, 0, 771, 775, 5, 1, 0, 0, 772, 773, 3, 70, 35, 0, 773, 774, 5, 38, 0, 0, 774, 776, 1, 0, 0, 0, 775, 772, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 3, 20, 10, 0, 778, 779, 5, 61, 0, 0, 779, 780, 3, 86, 43, 0, 780, 159, 1, 0, 0, 0, 74, 171, 180, 204, 216, 225, 233, 238, 246, 248, 253, 260, 267, 276, 281, 286, 296, 302, 310, 312, 323, 330, 341, 346, 348, 360, 379, 385, 394, 400, 408, 412, 423, 435, 443, 456, 460, 464, 471, 475, 482, 488, 495, 503, 511, 519, 536, 547, 558, 563, 567, 571, 576, 587, 592, 596, 610, 621, 627, 641, 652, 655, 660, 682, 690, 693, 698, 706, 713, 727, 742, 752, 761, 769, 775] \ 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 d86cc23a942b0..b97ff93bc039f 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 @@ -79,7 +79,8 @@ public class EsqlBaseParser extends ParserConfig { RULE_enrichCommand = 65, RULE_enrichWithClause = 66, RULE_changePointCommand = 67, RULE_sampleCommand = 68, RULE_lookupCommand = 69, RULE_inlinestatsCommand = 70, RULE_joinCommand = 71, RULE_joinTarget = 72, RULE_joinCondition = 73, - RULE_joinPredicate = 74, RULE_rerankCommand = 75, RULE_completionCommand = 76; + RULE_joinPredicate = 74, RULE_inferenceCommandOptions = 75, RULE_inferenceCommandOption = 76, + RULE_inferenceCommandOptionValue = 77, RULE_rerankCommand = 78, RULE_completionCommand = 79; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -98,7 +99,9 @@ private static String[] makeRuleNames() { "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression", "showCommand", "enrichCommand", "enrichWithClause", "changePointCommand", "sampleCommand", "lookupCommand", "inlinestatsCommand", "joinCommand", - "joinTarget", "joinCondition", "joinPredicate", "rerankCommand", "completionCommand" + "joinTarget", "joinCondition", "joinPredicate", "inferenceCommandOptions", + "inferenceCommandOption", "inferenceCommandOptionValue", "rerankCommand", + "completionCommand" }; } public static final String[] ruleNames = makeRuleNames(); @@ -238,9 +241,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(154); + setState(160); query(0); - setState(155); + setState(161); match(EOF); } } @@ -336,11 +339,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(158); + setState(164); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(165); + setState(171); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -351,16 +354,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(160); + setState(166); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(161); + setState(167); match(PIPE); - setState(162); + setState(168); processingCommand(); } } } - setState(167); + setState(173); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -418,43 +421,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(174); + setState(180); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(168); + setState(174); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(169); + setState(175); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(170); + setState(176); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(171); + setState(177); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(172); + setState(178); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(173); + setState(179); metricsCommand(); } break; @@ -554,145 +557,145 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(198); + setState(204); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(176); + setState(182); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(177); + setState(183); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(178); + setState(184); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(179); + setState(185); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(180); + setState(186); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(181); + setState(187); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(182); + setState(188); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(183); + setState(189); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(184); + setState(190); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(185); + setState(191); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(186); + setState(192); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(187); + setState(193); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(188); + setState(194); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(189); + setState(195); changePointCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(190); + setState(196); completionCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(191); + setState(197); sampleCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(192); + setState(198); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(193); + setState(199); inlinestatsCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(194); + setState(200); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(195); + setState(201); lookupCommand(); } break; case 19: enterOuterAlt(_localctx, 19); { - setState(196); + setState(202); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(197); + setState(203); rerankCommand(); } break; @@ -741,9 +744,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(200); + setState(206); match(WHERE); - setState(201); + setState(207); booleanExpression(0); } } @@ -959,7 +962,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(232); + setState(238); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: @@ -968,9 +971,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(204); + setState(210); match(NOT); - setState(205); + setState(211); booleanExpression(8); } break; @@ -979,7 +982,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(206); + setState(212); valueExpression(); } break; @@ -988,7 +991,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(207); + setState(213); regexBooleanExpression(); } break; @@ -997,41 +1000,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(208); + setState(214); valueExpression(); - setState(210); + setState(216); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(209); + setState(215); match(NOT); } } - setState(212); + setState(218); match(IN); - setState(213); + setState(219); match(LP); - setState(214); + setState(220); valueExpression(); - setState(219); + setState(225); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(215); + setState(221); match(COMMA); - setState(216); + setState(222); valueExpression(); } } - setState(221); + setState(227); _errHandler.sync(this); _la = _input.LA(1); } - setState(222); + setState(228); match(RP); } break; @@ -1040,21 +1043,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(224); + setState(230); valueExpression(); - setState(225); + setState(231); match(IS); - setState(227); + setState(233); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(226); + setState(232); match(NOT); } } - setState(229); + setState(235); match(NULL); } break; @@ -1063,13 +1066,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(231); + setState(237); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(242); + setState(248); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1077,7 +1080,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(240); + setState(246); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: @@ -1085,11 +1088,11 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(234); + setState(240); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(235); + setState(241); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(236); + setState(242); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -1098,18 +1101,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(237); + setState(243); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(238); + setState(244); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(239); + setState(245); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(244); + setState(250); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); } @@ -1233,28 +1236,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 12, RULE_regexBooleanExpression); int _la; try { - setState(275); + setState(281); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(245); + setState(251); valueExpression(); - setState(247); + setState(253); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(246); + setState(252); match(NOT); } } - setState(249); + setState(255); match(LIKE); - setState(250); + setState(256); string(); } break; @@ -1262,21 +1265,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(252); + setState(258); valueExpression(); - setState(254); + setState(260); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(253); + setState(259); match(NOT); } } - setState(256); + setState(262); match(RLIKE); - setState(257); + setState(263); string(); } break; @@ -1284,41 +1287,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(259); + setState(265); valueExpression(); - setState(261); + setState(267); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(260); + setState(266); match(NOT); } } - setState(263); + setState(269); match(LIKE); - setState(264); + setState(270); match(LP); - setState(265); + setState(271); string(); - setState(270); + setState(276); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(266); + setState(272); match(COMMA); - setState(267); + setState(273); string(); } } - setState(272); + setState(278); _errHandler.sync(this); _la = _input.LA(1); } - setState(273); + setState(279); match(RP); } break; @@ -1378,23 +1381,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(277); + setState(283); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(280); + setState(286); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(278); + setState(284); match(CAST_OP); - setState(279); + setState(285); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(282); + setState(288); match(COLON); - setState(283); + setState(289); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -1478,14 +1481,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 16, RULE_valueExpression); try { - setState(290); + setState(296); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(285); + setState(291); operatorExpression(0); } break; @@ -1493,11 +1496,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(286); + setState(292); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(287); + setState(293); comparisonOperator(); - setState(288); + setState(294); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -1622,7 +1625,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(296); + setState(302); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: @@ -1631,7 +1634,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(293); + setState(299); primaryExpression(0); } break; @@ -1640,7 +1643,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(294); + setState(300); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1651,13 +1654,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(295); + setState(301); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(306); + setState(312); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1665,7 +1668,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(304); + setState(310); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { case 1: @@ -1673,9 +1676,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(298); + setState(304); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(299); + setState(305); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) { @@ -1686,7 +1689,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(300); + setState(306); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -1695,9 +1698,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(301); + setState(307); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(302); + setState(308); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1708,14 +1711,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(303); + setState(309); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(308); + setState(314); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); } @@ -1873,7 +1876,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(317); + setState(323); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) { case 1: @@ -1882,7 +1885,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(310); + setState(316); constant(); } break; @@ -1891,7 +1894,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(311); + setState(317); qualifiedName(); } break; @@ -1900,7 +1903,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(312); + setState(318); functionExpression(); } break; @@ -1909,17 +1912,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(313); + setState(319); match(LP); - setState(314); + setState(320); booleanExpression(0); - setState(315); + setState(321); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(324); + setState(330); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1930,16 +1933,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(319); + setState(325); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(320); + setState(326); match(CAST_OP); - setState(321); + setState(327); dataType(); } } } - setState(326); + setState(332); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); } @@ -2005,16 +2008,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(327); + setState(333); functionName(); - setState(328); + setState(334); match(LP); - setState(342); + setState(348); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(329); + setState(335); match(ASTERISK); } break; @@ -2037,34 +2040,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(330); + setState(336); booleanExpression(0); - setState(335); + setState(341); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,21,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(331); + setState(337); match(COMMA); - setState(332); + setState(338); booleanExpression(0); } } } - setState(337); + setState(343); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,21,_ctx); } - setState(340); + setState(346); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(338); + setState(344); match(COMMA); - setState(339); + setState(345); mapExpression(); } } @@ -2077,7 +2080,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(344); + setState(350); match(RP); } } @@ -2123,7 +2126,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(346); + setState(352); identifierOrParameter(); } } @@ -2179,27 +2182,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(348); + setState(354); match(LEFT_BRACES); - setState(349); + setState(355); entryExpression(); - setState(354); + setState(360); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(350); + setState(356); match(COMMA); - setState(351); + setState(357); entryExpression(); } } - setState(356); + setState(362); _errHandler.sync(this); _la = _input.LA(1); } - setState(357); + setState(363); match(RIGHT_BRACES); } } @@ -2251,11 +2254,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(359); + setState(365); ((EntryExpressionContext)_localctx).key = string(); - setState(360); + setState(366); match(COLON); - setState(361); + setState(367); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -2313,7 +2316,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(363); + setState(369); identifier(); } } @@ -2360,9 +2363,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(365); + setState(371); match(ROW); - setState(366); + setState(372); fields(); } } @@ -2416,23 +2419,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(368); + setState(374); field(); - setState(373); + setState(379); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(369); + setState(375); match(COMMA); - setState(370); + setState(376); field(); } } } - setState(375); + setState(381); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } @@ -2484,19 +2487,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(379); + setState(385); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(376); + setState(382); qualifiedName(); - setState(377); + setState(383); match(ASSIGN); } break; } - setState(381); + setState(387); booleanExpression(0); } } @@ -2550,23 +2553,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(383); + setState(389); rerankField(); - setState(388); + setState(394); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,27,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(384); + setState(390); match(COMMA); - setState(385); + setState(391); rerankField(); } } } - setState(390); + setState(396); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } @@ -2618,16 +2621,16 @@ public final RerankFieldContext rerankField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(391); + setState(397); qualifiedName(); - setState(394); + setState(400); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: { - setState(392); + setState(398); match(ASSIGN); - setState(393); + setState(399); booleanExpression(0); } break; @@ -2688,34 +2691,34 @@ public final FromCommandContext fromCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(396); + setState(402); match(FROM); - setState(397); + setState(403); indexPattern(); - setState(402); + setState(408); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(398); + setState(404); match(COMMA); - setState(399); + setState(405); indexPattern(); } } } - setState(404); + setState(410); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(406); + setState(412); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(405); + setState(411); metadata(); } break; @@ -2773,35 +2776,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException { IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); enterRule(_localctx, 44, RULE_indexPattern); try { - setState(417); + setState(423); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(408); + setState(414); clusterString(); - setState(409); + setState(415); match(COLON); - setState(410); + setState(416); unquotedIndexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(412); + setState(418); unquotedIndexString(); - setState(413); + setState(419); match(CAST_OP); - setState(414); + setState(420); selectorString(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(416); + setState(422); indexString(); } break; @@ -2847,7 +2850,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(419); + setState(425); match(UNQUOTED_SOURCE); } } @@ -2891,7 +2894,7 @@ public final SelectorStringContext selectorString() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(421); + setState(427); match(UNQUOTED_SOURCE); } } @@ -2935,7 +2938,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(423); + setState(429); match(UNQUOTED_SOURCE); } } @@ -2981,7 +2984,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(425); + setState(431); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -3036,20 +3039,20 @@ public final MetadataContext metadata() throws RecognitionException { MetadataContext _localctx = new MetadataContext(_ctx, getState()); enterRule(_localctx, 54, RULE_metadata); try { - setState(429); + setState(435); _errHandler.sync(this); switch (_input.LA(1)) { case METADATA: enterOuterAlt(_localctx, 1); { - setState(427); + setState(433); metadataOption(); } break; case OPENING_BRACKET: enterOuterAlt(_localctx, 2); { - setState(428); + setState(434); deprecated_metadata(); } break; @@ -3106,25 +3109,25 @@ public final MetadataOptionContext metadataOption() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(431); + setState(437); match(METADATA); - setState(432); + setState(438); match(UNQUOTED_SOURCE); - setState(437); + setState(443); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,33,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(433); + setState(439); match(COMMA); - setState(434); + setState(440); match(UNQUOTED_SOURCE); } } } - setState(439); + setState(445); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,33,_ctx); } @@ -3173,11 +3176,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(440); + setState(446); match(OPENING_BRACKET); - setState(441); + setState(447); metadataOption(); - setState(442); + setState(448); match(CLOSING_BRACKET); } } @@ -3241,46 +3244,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(444); + setState(450); match(DEV_METRICS); - setState(445); + setState(451); indexPattern(); - setState(450); + setState(456); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(446); + setState(452); match(COMMA); - setState(447); + setState(453); indexPattern(); } } } - setState(452); + setState(458); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } - setState(454); + setState(460); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(453); + setState(459); ((MetricsCommandContext)_localctx).aggregates = aggFields(); } break; } - setState(458); + setState(464); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: { - setState(456); + setState(462); match(BY); - setState(457); + setState(463); ((MetricsCommandContext)_localctx).grouping = fields(); } break; @@ -3330,9 +3333,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(460); + setState(466); match(EVAL); - setState(461); + setState(467); fields(); } } @@ -3385,26 +3388,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(463); + setState(469); match(STATS); - setState(465); + setState(471); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(464); + setState(470); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(469); + setState(475); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(467); + setState(473); match(BY); - setState(468); + setState(474); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -3461,23 +3464,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(471); + setState(477); aggField(); - setState(476); + setState(482); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,39,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(472); + setState(478); match(COMMA); - setState(473); + setState(479); aggField(); } } } - setState(478); + setState(484); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,39,_ctx); } @@ -3529,16 +3532,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(479); + setState(485); field(); - setState(482); + setState(488); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(480); + setState(486); match(WHERE); - setState(481); + setState(487); booleanExpression(0); } break; @@ -3595,23 +3598,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(484); + setState(490); identifierOrParameter(); - setState(489); + setState(495); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,41,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(485); + setState(491); match(DOT); - setState(486); + setState(492); identifierOrParameter(); } } } - setState(491); + setState(497); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } @@ -3667,23 +3670,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(492); + setState(498); identifierPattern(); - setState(497); + setState(503); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,42,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(493); + setState(499); match(DOT); - setState(494); + setState(500); identifierPattern(); } } } - setState(499); + setState(505); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,42,_ctx); } @@ -3739,23 +3742,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(500); + setState(506); qualifiedNamePattern(); - setState(505); + setState(511); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(501); + setState(507); match(COMMA); - setState(502); + setState(508); qualifiedNamePattern(); } } } - setState(507); + setState(513); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } @@ -3803,7 +3806,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(508); + setState(514); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -3859,13 +3862,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 78, RULE_identifierPattern); try { - setState(513); + setState(519); _errHandler.sync(this); switch (_input.LA(1)) { case ID_PATTERN: enterOuterAlt(_localctx, 1); { - setState(510); + setState(516); match(ID_PATTERN); } break; @@ -3873,7 +3876,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(511); + setState(517); parameter(); } break; @@ -3881,7 +3884,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(512); + setState(518); doubleParameter(); } break; @@ -4156,14 +4159,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 80, RULE_constant); int _la; try { - setState(557); + setState(563); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(515); + setState(521); match(NULL); } break; @@ -4171,9 +4174,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(516); + setState(522); integerValue(); - setState(517); + setState(523); match(UNQUOTED_IDENTIFIER); } break; @@ -4181,7 +4184,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(519); + setState(525); decimalValue(); } break; @@ -4189,7 +4192,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(520); + setState(526); integerValue(); } break; @@ -4197,7 +4200,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(521); + setState(527); booleanValue(); } break; @@ -4205,7 +4208,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(522); + setState(528); parameter(); } break; @@ -4213,7 +4216,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(523); + setState(529); string(); } break; @@ -4221,27 +4224,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(524); + setState(530); match(OPENING_BRACKET); - setState(525); + setState(531); numericValue(); - setState(530); + setState(536); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(526); + setState(532); match(COMMA); - setState(527); + setState(533); numericValue(); } } - setState(532); + setState(538); _errHandler.sync(this); _la = _input.LA(1); } - setState(533); + setState(539); match(CLOSING_BRACKET); } break; @@ -4249,27 +4252,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(535); + setState(541); match(OPENING_BRACKET); - setState(536); + setState(542); booleanValue(); - setState(541); + setState(547); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(537); + setState(543); match(COMMA); - setState(538); + setState(544); booleanValue(); } } - setState(543); + setState(549); _errHandler.sync(this); _la = _input.LA(1); } - setState(544); + setState(550); match(CLOSING_BRACKET); } break; @@ -4277,27 +4280,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(546); + setState(552); match(OPENING_BRACKET); - setState(547); + setState(553); string(); - setState(552); + setState(558); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(548); + setState(554); match(COMMA); - setState(549); + setState(555); string(); } } - setState(554); + setState(560); _errHandler.sync(this); _la = _input.LA(1); } - setState(555); + setState(561); match(CLOSING_BRACKET); } break; @@ -4371,14 +4374,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 82, RULE_parameter); try { - setState(561); + setState(567); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(559); + setState(565); match(PARAM); } break; @@ -4386,7 +4389,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(560); + setState(566); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -4462,14 +4465,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); enterRule(_localctx, 84, RULE_doubleParameter); try { - setState(565); + setState(571); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(563); + setState(569); match(DOUBLE_PARAMS); } break; @@ -4477,7 +4480,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(564); + setState(570); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -4531,14 +4534,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 86, RULE_identifierOrParameter); try { - setState(570); + setState(576); _errHandler.sync(this); switch (_input.LA(1)) { case UNQUOTED_IDENTIFIER: case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(567); + setState(573); identifier(); } break; @@ -4546,7 +4549,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(568); + setState(574); parameter(); } break; @@ -4554,7 +4557,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(569); + setState(575); doubleParameter(); } break; @@ -4605,9 +4608,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(572); + setState(578); match(LIMIT); - setState(573); + setState(579); constant(); } } @@ -4662,25 +4665,25 @@ public final SortCommandContext sortCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(575); + setState(581); match(SORT); - setState(576); + setState(582); orderExpression(); - setState(581); + setState(587); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(577); + setState(583); match(COMMA); - setState(578); + setState(584); orderExpression(); } } } - setState(583); + setState(589); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } @@ -4736,14 +4739,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(584); + setState(590); booleanExpression(0); - setState(586); + setState(592); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { - setState(585); + setState(591); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -4757,14 +4760,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(590); + setState(596); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { - setState(588); + setState(594); match(NULLS); - setState(589); + setState(595); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -4823,9 +4826,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(592); + setState(598); match(KEEP); - setState(593); + setState(599); qualifiedNamePatterns(); } } @@ -4872,9 +4875,9 @@ public final DropCommandContext dropCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(595); + setState(601); match(DROP); - setState(596); + setState(602); qualifiedNamePatterns(); } } @@ -4929,25 +4932,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(598); + setState(604); match(RENAME); - setState(599); + setState(605); renameClause(); - setState(604); + setState(610); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,55,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(600); + setState(606); match(COMMA); - setState(601); + setState(607); renameClause(); } } } - setState(606); + setState(612); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } @@ -5000,28 +5003,28 @@ public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); enterRule(_localctx, 100, RULE_renameClause); try { - setState(615); + setState(621); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(607); + setState(613); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(608); + setState(614); match(AS); - setState(609); + setState(615); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(611); + setState(617); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(612); + setState(618); match(ASSIGN); - setState(613); + setState(619); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); } break; @@ -5076,18 +5079,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(617); + setState(623); match(DISSECT); - setState(618); + setState(624); primaryExpression(0); - setState(619); + setState(625); string(); - setState(621); + setState(627); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { - setState(620); + setState(626); commandOptions(); } break; @@ -5140,11 +5143,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(623); + setState(629); match(GROK); - setState(624); + setState(630); primaryExpression(0); - setState(625); + setState(631); string(); } } @@ -5191,9 +5194,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(627); + setState(633); match(MV_EXPAND); - setState(628); + setState(634); qualifiedName(); } } @@ -5247,23 +5250,23 @@ public final CommandOptionsContext commandOptions() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(630); + setState(636); commandOption(); - setState(635); + setState(641); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,58,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(631); + setState(637); match(COMMA); - setState(632); + setState(638); commandOption(); } } } - setState(637); + setState(643); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,58,_ctx); } @@ -5315,11 +5318,11 @@ public final CommandOptionContext commandOption() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(638); + setState(644); identifier(); - setState(639); + setState(645); match(ASSIGN); - setState(640); + setState(646); constant(); } } @@ -5365,7 +5368,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(642); + setState(648); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -5420,20 +5423,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 114, RULE_numericValue); try { - setState(646); + setState(652); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(644); + setState(650); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(645); + setState(651); integerValue(); } break; @@ -5482,12 +5485,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(649); + setState(655); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(648); + setState(654); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5500,7 +5503,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(651); + setState(657); match(DECIMAL_LITERAL); } } @@ -5547,12 +5550,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(654); + setState(660); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(653); + setState(659); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5565,7 +5568,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(656); + setState(662); match(INTEGER_LITERAL); } } @@ -5609,7 +5612,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(658); + setState(664); match(QUOTED_STRING); } } @@ -5659,7 +5662,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(660); + setState(666); _la = _input.LA(1); if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -5714,9 +5717,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(662); + setState(668); match(EXPLAIN); - setState(663); + setState(669); subqueryExpression(); } } @@ -5764,11 +5767,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(665); + setState(671); match(OPENING_BRACKET); - setState(666); + setState(672); query(0); - setState(667); + setState(673); match(CLOSING_BRACKET); } } @@ -5825,9 +5828,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(669); + setState(675); match(SHOW); - setState(670); + setState(676); match(INFO); } } @@ -5890,46 +5893,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(672); + setState(678); match(ENRICH); - setState(673); + setState(679); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(676); + setState(682); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: { - setState(674); + setState(680); match(ON); - setState(675); + setState(681); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(687); + setState(693); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(678); + setState(684); match(WITH); - setState(679); + setState(685); enrichWithClause(); - setState(684); + setState(690); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(680); + setState(686); match(COMMA); - setState(681); + setState(687); enrichWithClause(); } } } - setState(686); + setState(692); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } @@ -5986,19 +5989,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(692); + setState(698); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(689); + setState(695); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(690); + setState(696); match(ASSIGN); } break; } - setState(694); + setState(700); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -6055,34 +6058,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(696); + setState(702); match(CHANGE_POINT); - setState(697); + setState(703); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(700); + setState(706); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: { - setState(698); + setState(704); match(ON); - setState(699); + setState(705); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(707); + setState(713); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(702); + setState(708); match(AS); - setState(703); + setState(709); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(704); + setState(710); match(COMMA); - setState(705); + setState(711); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -6133,9 +6136,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(709); + setState(715); match(SAMPLE); - setState(710); + setState(716); ((SampleCommandContext)_localctx).probability = constant(); } } @@ -6188,13 +6191,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(712); + setState(718); match(DEV_LOOKUP); - setState(713); + setState(719); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(714); + setState(720); match(ON); - setState(715); + setState(721); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -6247,18 +6250,18 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(717); + setState(723); match(DEV_INLINESTATS); - setState(718); + setState(724); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(721); + setState(727); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { - setState(719); + setState(725); match(BY); - setState(720); + setState(726); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -6316,7 +6319,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(723); + setState(729); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 201850880L) != 0)) ) { @@ -6327,11 +6330,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(724); + setState(730); match(JOIN); - setState(725); + setState(731); joinTarget(); - setState(726); + setState(732); joinCondition(); } } @@ -6378,7 +6381,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(728); + setState(734); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6433,25 +6436,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(730); + setState(736); match(ON); - setState(731); + setState(737); joinPredicate(); - setState(736); + setState(742); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,69,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(732); + setState(738); match(COMMA); - setState(733); + setState(739); joinPredicate(); } } } - setState(738); + setState(744); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } @@ -6499,7 +6502,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(739); + setState(745); valueExpression(); } } @@ -6514,10 +6517,210 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { return _localctx; } + @SuppressWarnings("CheckReturnValue") + public static class InferenceCommandOptionsContext extends ParserRuleContext { + public List inferenceCommandOption() { + return getRuleContexts(InferenceCommandOptionContext.class); + } + public InferenceCommandOptionContext inferenceCommandOption(int i) { + return getRuleContext(InferenceCommandOptionContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); + } + @SuppressWarnings("this-escape") + public InferenceCommandOptionsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_inferenceCommandOptions; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInferenceCommandOptions(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInferenceCommandOptions(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInferenceCommandOptions(this); + else return visitor.visitChildren(this); + } + } + + public final InferenceCommandOptionsContext inferenceCommandOptions() throws RecognitionException { + InferenceCommandOptionsContext _localctx = new InferenceCommandOptionsContext(_ctx, getState()); + enterRule(_localctx, 150, RULE_inferenceCommandOptions); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(747); + inferenceCommandOption(); + setState(752); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,70,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(748); + match(COMMA); + setState(749); + inferenceCommandOption(); + } + } + } + setState(754); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,70,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class InferenceCommandOptionContext extends ParserRuleContext { + public IdentifierContext identifier() { + return getRuleContext(IdentifierContext.class,0); + } + public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } + public InferenceCommandOptionValueContext inferenceCommandOptionValue() { + return getRuleContext(InferenceCommandOptionValueContext.class,0); + } + @SuppressWarnings("this-escape") + public InferenceCommandOptionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_inferenceCommandOption; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInferenceCommandOption(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInferenceCommandOption(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInferenceCommandOption(this); + else return visitor.visitChildren(this); + } + } + + public final InferenceCommandOptionContext inferenceCommandOption() throws RecognitionException { + InferenceCommandOptionContext _localctx = new InferenceCommandOptionContext(_ctx, getState()); + enterRule(_localctx, 152, RULE_inferenceCommandOption); + try { + enterOuterAlt(_localctx, 1); + { + setState(755); + identifier(); + setState(756); + match(ASSIGN); + setState(757); + inferenceCommandOptionValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class InferenceCommandOptionValueContext extends ParserRuleContext { + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); + } + public IdentifierContext identifier() { + return getRuleContext(IdentifierContext.class,0); + } + @SuppressWarnings("this-escape") + public InferenceCommandOptionValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_inferenceCommandOptionValue; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInferenceCommandOptionValue(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInferenceCommandOptionValue(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInferenceCommandOptionValue(this); + else return visitor.visitChildren(this); + } + } + + public final InferenceCommandOptionValueContext inferenceCommandOptionValue() throws RecognitionException { + InferenceCommandOptionValueContext _localctx = new InferenceCommandOptionValueContext(_ctx, getState()); + enterRule(_localctx, 154, RULE_inferenceCommandOptionValue); + try { + setState(761); + _errHandler.sync(this); + switch (_input.LA(1)) { + case QUOTED_STRING: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case FALSE: + case NULL: + case PARAM: + case TRUE: + case PLUS: + case MINUS: + case NAMED_OR_POSITIONAL_PARAM: + case OPENING_BRACKET: + enterOuterAlt(_localctx, 1); + { + setState(759); + constant(); + } + break; + case UNQUOTED_IDENTIFIER: + case QUOTED_IDENTIFIER: + enterOuterAlt(_localctx, 2); + { + setState(760); + identifier(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") public static class RerankCommandContext extends ParserRuleContext { public ConstantContext queryText; - public IdentifierOrParameterContext inferenceId; public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); } public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } public RerankFieldsContext rerankFields() { @@ -6527,8 +6730,8 @@ public ConstantContext constant() { return getRuleContext(ConstantContext.class,0); } public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } - public IdentifierOrParameterContext identifierOrParameter() { - return getRuleContext(IdentifierOrParameterContext.class,0); + public InferenceCommandOptionsContext inferenceCommandOptions() { + return getRuleContext(InferenceCommandOptionsContext.class,0); } @SuppressWarnings("this-escape") public RerankCommandContext(ParserRuleContext parent, int invokingState) { @@ -6552,27 +6755,27 @@ public T accept(ParseTreeVisitor visitor) { public final RerankCommandContext rerankCommand() throws RecognitionException { RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_rerankCommand); + enterRule(_localctx, 156, RULE_rerankCommand); try { enterOuterAlt(_localctx, 1); { - setState(741); + setState(763); match(DEV_RERANK); - setState(742); + setState(764); ((RerankCommandContext)_localctx).queryText = constant(); - setState(743); + setState(765); match(ON); - setState(744); + setState(766); rerankFields(); - setState(747); + setState(769); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { case 1: { - setState(745); + setState(767); match(WITH); - setState(746); - ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter(); + setState(768); + inferenceCommandOptions(); } break; } @@ -6628,29 +6831,29 @@ public T accept(ParseTreeVisitor visitor) { public final CompletionCommandContext completionCommand() throws RecognitionException { CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_completionCommand); + enterRule(_localctx, 158, RULE_completionCommand); try { enterOuterAlt(_localctx, 1); { - setState(749); + setState(771); match(COMPLETION); - setState(753); + setState(775); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) { case 1: { - setState(750); + setState(772); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(751); + setState(773); match(ASSIGN); } break; } - setState(755); + setState(777); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(756); + setState(778); match(WITH); - setState(757); + setState(779); ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter(); } } @@ -6734,7 +6937,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u008b\u02f8\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u008b\u030e\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"+ @@ -6753,460 +6956,474 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\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\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+ - "\u0001\u00a4\b\u0001\n\u0001\f\u0001\u00a7\t\u0001\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00af\b\u0002"+ + "J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+ + "O\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00aa\b\u0001\n\u0001"+ + "\f\u0001\u00ad\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0003\u0002\u00b5\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\u0003\u0003\u00c7\b\u0003"+ - "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00d3\b\u0005"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005"+ - "\u00da\b\u0005\n\u0005\f\u0005\u00dd\t\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e4\b\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0005\u0003\u0005\u00e9\b\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00f1\b\u0005\n"+ - "\u0005\f\u0005\u00f4\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00f8"+ - "\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003"+ - "\u0006\u00ff\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+ - "\u0006\u0003\u0006\u0106\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+ - "\u0006\u0001\u0006\u0005\u0006\u010d\b\u0006\n\u0006\f\u0006\u0110\t\u0006"+ - "\u0001\u0006\u0001\u0006\u0003\u0006\u0114\b\u0006\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0003\u0007\u0119\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u0123\b\b\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0003\t\u0129\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0005\t\u0131\b\t\n\t\f\t\u0134\t\t\u0001\n\u0001\n\u0001\n"+ - "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u013e\b\n\u0001\n\u0001"+ - "\n\u0001\n\u0005\n\u0143\b\n\n\n\f\n\u0146\t\n\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u014e\b\u000b"+ - "\n\u000b\f\u000b\u0151\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0155"+ - "\b\u000b\u0003\u000b\u0157\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001"+ - "\f\u0001\r\u0001\r\u0001\r\u0001\r\u0005\r\u0161\b\r\n\r\f\r\u0164\t\r"+ - "\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+ - "\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001"+ - "\u0011\u0001\u0011\u0005\u0011\u0174\b\u0011\n\u0011\f\u0011\u0177\t\u0011"+ - "\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u017c\b\u0012\u0001\u0012"+ - "\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0183\b\u0013"+ - "\n\u0013\f\u0013\u0186\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003"+ - "\u0014\u018b\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005"+ - "\u0015\u0191\b\u0015\n\u0015\f\u0015\u0194\t\u0015\u0001\u0015\u0003\u0015"+ - "\u0197\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ - "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u01a2\b\u0016"+ - "\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019"+ - "\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01ae\b\u001b"+ - "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01b4\b\u001c"+ - "\n\u001c\f\u001c\u01b7\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ - "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01c1"+ - "\b\u001e\n\u001e\f\u001e\u01c4\t\u001e\u0001\u001e\u0003\u001e\u01c7\b"+ - "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01cb\b\u001e\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01d2\b \u0001 \u0001 \u0003 "+ - "\u01d6\b \u0001!\u0001!\u0001!\u0005!\u01db\b!\n!\f!\u01de\t!\u0001\""+ - "\u0001\"\u0001\"\u0003\"\u01e3\b\"\u0001#\u0001#\u0001#\u0005#\u01e8\b"+ - "#\n#\f#\u01eb\t#\u0001$\u0001$\u0001$\u0005$\u01f0\b$\n$\f$\u01f3\t$\u0001"+ - "%\u0001%\u0001%\u0005%\u01f8\b%\n%\f%\u01fb\t%\u0001&\u0001&\u0001\'\u0001"+ - "\'\u0001\'\u0003\'\u0202\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+ - "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0211\b(\n("+ - "\f(\u0214\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u021c\b"+ - "(\n(\f(\u021f\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0227"+ - "\b(\n(\f(\u022a\t(\u0001(\u0001(\u0003(\u022e\b(\u0001)\u0001)\u0003)"+ - "\u0232\b)\u0001*\u0001*\u0003*\u0236\b*\u0001+\u0001+\u0001+\u0003+\u023b"+ - "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u0244\b-\n"+ - "-\f-\u0247\t-\u0001.\u0001.\u0003.\u024b\b.\u0001.\u0001.\u0003.\u024f"+ + "\u0001\u0003\u0001\u0003\u0003\u0003\u00cd\b\u0003\u0001\u0004\u0001\u0004"+ + "\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0003\u0005\u00d9\b\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00e0\b\u0005\n\u0005"+ + "\f\u0005\u00e3\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0003\u0005\u00ea\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0003\u0005\u00ef\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0005\u0005\u00f7\b\u0005\n\u0005\f\u0005\u00fa"+ + "\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00fe\b\u0006\u0001\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u0105\b\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+ + "\u010c\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\u0005\u0006\u0113\b\u0006\n\u0006\f\u0006\u0116\t\u0006\u0001\u0006\u0001"+ + "\u0006\u0003\u0006\u011a\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003"+ + "\u0007\u011f\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0003\b\u0129\b\b\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0003\t\u012f\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005"+ + "\t\u0137\b\t\n\t\f\t\u013a\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+ + "\u0001\n\u0001\n\u0001\n\u0003\n\u0144\b\n\u0001\n\u0001\n\u0001\n\u0005"+ + "\n\u0149\b\n\n\n\f\n\u014c\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u0154\b\u000b\n\u000b\f\u000b"+ + "\u0157\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u015b\b\u000b\u0003"+ + "\u000b\u015d\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001"+ + "\r\u0001\r\u0001\r\u0005\r\u0167\b\r\n\r\f\r\u016a\t\r\u0001\r\u0001\r"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011"+ + "\u0005\u0011\u017a\b\u0011\n\u0011\f\u0011\u017d\t\u0011\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0003\u0012\u0182\b\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0189\b\u0013\n\u0013\f\u0013"+ + "\u018c\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0191\b"+ + "\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u0197"+ + "\b\u0015\n\u0015\f\u0015\u019a\t\u0015\u0001\u0015\u0003\u0015\u019d\b"+ + "\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+ + "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u01a8\b\u0016\u0001"+ + "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+ + "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01b4\b\u001b\u0001"+ + "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01ba\b\u001c\n"+ + "\u001c\f\u001c\u01bd\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ + "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01c7"+ + "\b\u001e\n\u001e\f\u001e\u01ca\t\u001e\u0001\u001e\u0003\u001e\u01cd\b"+ + "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01d1\b\u001e\u0001\u001f\u0001"+ + "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01d8\b \u0001 \u0001 \u0003 "+ + "\u01dc\b \u0001!\u0001!\u0001!\u0005!\u01e1\b!\n!\f!\u01e4\t!\u0001\""+ + "\u0001\"\u0001\"\u0003\"\u01e9\b\"\u0001#\u0001#\u0001#\u0005#\u01ee\b"+ + "#\n#\f#\u01f1\t#\u0001$\u0001$\u0001$\u0005$\u01f6\b$\n$\f$\u01f9\t$\u0001"+ + "%\u0001%\u0001%\u0005%\u01fe\b%\n%\f%\u0201\t%\u0001&\u0001&\u0001\'\u0001"+ + "\'\u0001\'\u0003\'\u0208\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+ + "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0217\b(\n("+ + "\f(\u021a\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0222\b"+ + "(\n(\f(\u0225\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u022d"+ + "\b(\n(\f(\u0230\t(\u0001(\u0001(\u0003(\u0234\b(\u0001)\u0001)\u0003)"+ + "\u0238\b)\u0001*\u0001*\u0003*\u023c\b*\u0001+\u0001+\u0001+\u0003+\u0241"+ + "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u024a\b-\n"+ + "-\f-\u024d\t-\u0001.\u0001.\u0003.\u0251\b.\u0001.\u0001.\u0003.\u0255"+ "\b.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+ - "1\u00051\u025b\b1\n1\f1\u025e\t1\u00012\u00012\u00012\u00012\u00012\u0001"+ - "2\u00012\u00012\u00032\u0268\b2\u00013\u00013\u00013\u00013\u00033\u026e"+ + "1\u00051\u0261\b1\n1\f1\u0264\t1\u00012\u00012\u00012\u00012\u00012\u0001"+ + "2\u00012\u00012\u00032\u026e\b2\u00013\u00013\u00013\u00013\u00033\u0274"+ "\b3\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00016\u00016\u0001"+ - "6\u00056\u027a\b6\n6\f6\u027d\t6\u00017\u00017\u00017\u00017\u00018\u0001"+ - "8\u00019\u00019\u00039\u0287\b9\u0001:\u0003:\u028a\b:\u0001:\u0001:\u0001"+ - ";\u0003;\u028f\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+ + "6\u00056\u0280\b6\n6\f6\u0283\t6\u00017\u00017\u00017\u00017\u00018\u0001"+ + "8\u00019\u00019\u00039\u028d\b9\u0001:\u0003:\u0290\b:\u0001:\u0001:\u0001"+ + ";\u0003;\u0295\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+ ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001"+ - "A\u0001A\u0001A\u0003A\u02a5\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02ab"+ - "\bA\nA\fA\u02ae\tA\u0003A\u02b0\bA\u0001B\u0001B\u0001B\u0003B\u02b5\b"+ - "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003C\u02bd\bC\u0001C\u0001"+ - "C\u0001C\u0001C\u0001C\u0003C\u02c4\bC\u0001D\u0001D\u0001D\u0001E\u0001"+ - "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0003F\u02d2\bF\u0001"+ + "A\u0001A\u0001A\u0003A\u02ab\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02b1"+ + "\bA\nA\fA\u02b4\tA\u0003A\u02b6\bA\u0001B\u0001B\u0001B\u0003B\u02bb\b"+ + "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003C\u02c3\bC\u0001C\u0001"+ + "C\u0001C\u0001C\u0001C\u0003C\u02ca\bC\u0001D\u0001D\u0001D\u0001E\u0001"+ + "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0003F\u02d8\bF\u0001"+ "G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001"+ - "I\u0005I\u02df\bI\nI\fI\u02e2\tI\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+ - "K\u0001K\u0001K\u0003K\u02ec\bK\u0001L\u0001L\u0001L\u0001L\u0003L\u02f2"+ - "\bL\u0001L\u0001L\u0001L\u0001L\u0001L\u0000\u0004\u0002\n\u0012\u0014"+ - "M\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a"+ - "\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082"+ - "\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u0000"+ - "\t\u0001\u0000EF\u0001\u0000GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002\u0000"+ - "%%++\u0002\u0000..11\u0002\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0013"+ - "\u0013\u001a\u001b\u0319\u0000\u009a\u0001\u0000\u0000\u0000\u0002\u009d"+ - "\u0001\u0000\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006\u00c6"+ - "\u0001\u0000\u0000\u0000\b\u00c8\u0001\u0000\u0000\u0000\n\u00e8\u0001"+ - "\u0000\u0000\u0000\f\u0113\u0001\u0000\u0000\u0000\u000e\u0115\u0001\u0000"+ - "\u0000\u0000\u0010\u0122\u0001\u0000\u0000\u0000\u0012\u0128\u0001\u0000"+ - "\u0000\u0000\u0014\u013d\u0001\u0000\u0000\u0000\u0016\u0147\u0001\u0000"+ - "\u0000\u0000\u0018\u015a\u0001\u0000\u0000\u0000\u001a\u015c\u0001\u0000"+ - "\u0000\u0000\u001c\u0167\u0001\u0000\u0000\u0000\u001e\u016b\u0001\u0000"+ - "\u0000\u0000 \u016d\u0001\u0000\u0000\u0000\"\u0170\u0001\u0000\u0000"+ - "\u0000$\u017b\u0001\u0000\u0000\u0000&\u017f\u0001\u0000\u0000\u0000("+ - "\u0187\u0001\u0000\u0000\u0000*\u018c\u0001\u0000\u0000\u0000,\u01a1\u0001"+ - "\u0000\u0000\u0000.\u01a3\u0001\u0000\u0000\u00000\u01a5\u0001\u0000\u0000"+ - "\u00002\u01a7\u0001\u0000\u0000\u00004\u01a9\u0001\u0000\u0000\u00006"+ - "\u01ad\u0001\u0000\u0000\u00008\u01af\u0001\u0000\u0000\u0000:\u01b8\u0001"+ - "\u0000\u0000\u0000<\u01bc\u0001\u0000\u0000\u0000>\u01cc\u0001\u0000\u0000"+ - "\u0000@\u01cf\u0001\u0000\u0000\u0000B\u01d7\u0001\u0000\u0000\u0000D"+ - "\u01df\u0001\u0000\u0000\u0000F\u01e4\u0001\u0000\u0000\u0000H\u01ec\u0001"+ - "\u0000\u0000\u0000J\u01f4\u0001\u0000\u0000\u0000L\u01fc\u0001\u0000\u0000"+ - "\u0000N\u0201\u0001\u0000\u0000\u0000P\u022d\u0001\u0000\u0000\u0000R"+ - "\u0231\u0001\u0000\u0000\u0000T\u0235\u0001\u0000\u0000\u0000V\u023a\u0001"+ - "\u0000\u0000\u0000X\u023c\u0001\u0000\u0000\u0000Z\u023f\u0001\u0000\u0000"+ - "\u0000\\\u0248\u0001\u0000\u0000\u0000^\u0250\u0001\u0000\u0000\u0000"+ - "`\u0253\u0001\u0000\u0000\u0000b\u0256\u0001\u0000\u0000\u0000d\u0267"+ - "\u0001\u0000\u0000\u0000f\u0269\u0001\u0000\u0000\u0000h\u026f\u0001\u0000"+ - "\u0000\u0000j\u0273\u0001\u0000\u0000\u0000l\u0276\u0001\u0000\u0000\u0000"+ - "n\u027e\u0001\u0000\u0000\u0000p\u0282\u0001\u0000\u0000\u0000r\u0286"+ - "\u0001\u0000\u0000\u0000t\u0289\u0001\u0000\u0000\u0000v\u028e\u0001\u0000"+ - "\u0000\u0000x\u0292\u0001\u0000\u0000\u0000z\u0294\u0001\u0000\u0000\u0000"+ - "|\u0296\u0001\u0000\u0000\u0000~\u0299\u0001\u0000\u0000\u0000\u0080\u029d"+ - "\u0001\u0000\u0000\u0000\u0082\u02a0\u0001\u0000\u0000\u0000\u0084\u02b4"+ - "\u0001\u0000\u0000\u0000\u0086\u02b8\u0001\u0000\u0000\u0000\u0088\u02c5"+ - "\u0001\u0000\u0000\u0000\u008a\u02c8\u0001\u0000\u0000\u0000\u008c\u02cd"+ - "\u0001\u0000\u0000\u0000\u008e\u02d3\u0001\u0000\u0000\u0000\u0090\u02d8"+ - "\u0001\u0000\u0000\u0000\u0092\u02da\u0001\u0000\u0000\u0000\u0094\u02e3"+ - "\u0001\u0000\u0000\u0000\u0096\u02e5\u0001\u0000\u0000\u0000\u0098\u02ed"+ - "\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b\u009c"+ - "\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d\u009e"+ - "\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000\u009f"+ - "\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2"+ - "\u0005 \u0000\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001"+ - "\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001"+ - "\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001"+ - "\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003"+ - "|>\u0000\u00a9\u00af\u0003*\u0015\u0000\u00aa\u00af\u0003 \u0010\u0000"+ - "\u00ab\u00af\u0003\u0080@\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad"+ - "\u00af\u0003<\u001e\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9"+ - "\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab"+ - "\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005"+ - "\u0001\u0000\u0000\u0000\u00b0\u00c7\u0003>\u001f\u0000\u00b1\u00c7\u0003"+ - "\b\u0004\u0000\u00b2\u00c7\u0003^/\u0000\u00b3\u00c7\u0003X,\u0000\u00b4"+ - "\u00c7\u0003@ \u0000\u00b5\u00c7\u0003Z-\u0000\u00b6\u00c7\u0003`0\u0000"+ - "\u00b7\u00c7\u0003b1\u0000\u00b8\u00c7\u0003f3\u0000\u00b9\u00c7\u0003"+ - "h4\u0000\u00ba\u00c7\u0003\u0082A\u0000\u00bb\u00c7\u0003j5\u0000\u00bc"+ - "\u00c7\u0003\u008eG\u0000\u00bd\u00c7\u0003\u0086C\u0000\u00be\u00c7\u0003"+ - "\u0098L\u0000\u00bf\u00c7\u0003\u0088D\u0000\u00c0\u00c1\u0004\u0003\u0002"+ - "\u0000\u00c1\u00c7\u0003\u008cF\u0000\u00c2\u00c3\u0004\u0003\u0003\u0000"+ - "\u00c3\u00c7\u0003\u008aE\u0000\u00c4\u00c5\u0004\u0003\u0004\u0000\u00c5"+ - "\u00c7\u0003\u0096K\u0000\u00c6\u00b0\u0001\u0000\u0000\u0000\u00c6\u00b1"+ - "\u0001\u0000\u0000\u0000\u00c6\u00b2\u0001\u0000\u0000\u0000\u00c6\u00b3"+ - "\u0001\u0000\u0000\u0000\u00c6\u00b4\u0001\u0000\u0000\u0000\u00c6\u00b5"+ - "\u0001\u0000\u0000\u0000\u00c6\u00b6\u0001\u0000\u0000\u0000\u00c6\u00b7"+ - "\u0001\u0000\u0000\u0000\u00c6\u00b8\u0001\u0000\u0000\u0000\u00c6\u00b9"+ - "\u0001\u0000\u0000\u0000\u00c6\u00ba\u0001\u0000\u0000\u0000\u00c6\u00bb"+ - "\u0001\u0000\u0000\u0000\u00c6\u00bc\u0001\u0000\u0000\u0000\u00c6\u00bd"+ - "\u0001\u0000\u0000\u0000\u00c6\u00be\u0001\u0000\u0000\u0000\u00c6\u00bf"+ - "\u0001\u0000\u0000\u0000\u00c6\u00c0\u0001\u0000\u0000\u0000\u00c6\u00c2"+ - "\u0001\u0000\u0000\u0000\u00c6\u00c4\u0001\u0000\u0000\u0000\u00c7\u0007"+ - "\u0001\u0000\u0000\u0000\u00c8\u00c9\u0005\u0012\u0000\u0000\u00c9\u00ca"+ - "\u0003\n\u0005\u0000\u00ca\t\u0001\u0000\u0000\u0000\u00cb\u00cc\u0006"+ - "\u0005\uffff\uffff\u0000\u00cc\u00cd\u00054\u0000\u0000\u00cd\u00e9\u0003"+ - "\n\u0005\b\u00ce\u00e9\u0003\u0010\b\u0000\u00cf\u00e9\u0003\f\u0006\u0000"+ - "\u00d0\u00d2\u0003\u0010\b\u0000\u00d1\u00d3\u00054\u0000\u0000\u00d2"+ - "\u00d1\u0001\u0000\u0000\u0000\u00d2\u00d3\u0001\u0000\u0000\u0000\u00d3"+ - "\u00d4\u0001\u0000\u0000\u0000\u00d4\u00d5\u0005/\u0000\u0000\u00d5\u00d6"+ - "\u00053\u0000\u0000\u00d6\u00db\u0003\u0010\b\u0000\u00d7\u00d8\u0005"+ - "*\u0000\u0000\u00d8\u00da\u0003\u0010\b\u0000\u00d9\u00d7\u0001\u0000"+ - "\u0000\u0000\u00da\u00dd\u0001\u0000\u0000\u0000\u00db\u00d9\u0001\u0000"+ - "\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u00de\u0001\u0000"+ - "\u0000\u0000\u00dd\u00db\u0001\u0000\u0000\u0000\u00de\u00df\u0005;\u0000"+ - "\u0000\u00df\u00e9\u0001\u0000\u0000\u0000\u00e0\u00e1\u0003\u0010\b\u0000"+ - "\u00e1\u00e3\u00050\u0000\u0000\u00e2\u00e4\u00054\u0000\u0000\u00e3\u00e2"+ - "\u0001\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e5"+ - "\u0001\u0000\u0000\u0000\u00e5\u00e6\u00055\u0000\u0000\u00e6\u00e9\u0001"+ - "\u0000\u0000\u0000\u00e7\u00e9\u0003\u000e\u0007\u0000\u00e8\u00cb\u0001"+ - "\u0000\u0000\u0000\u00e8\u00ce\u0001\u0000\u0000\u0000\u00e8\u00cf\u0001"+ - "\u0000\u0000\u0000\u00e8\u00d0\u0001\u0000\u0000\u0000\u00e8\u00e0\u0001"+ - "\u0000\u0000\u0000\u00e8\u00e7\u0001\u0000\u0000\u0000\u00e9\u00f2\u0001"+ - "\u0000\u0000\u0000\u00ea\u00eb\n\u0005\u0000\u0000\u00eb\u00ec\u0005$"+ - "\u0000\u0000\u00ec\u00f1\u0003\n\u0005\u0006\u00ed\u00ee\n\u0004\u0000"+ - "\u0000\u00ee\u00ef\u00058\u0000\u0000\u00ef\u00f1\u0003\n\u0005\u0005"+ - "\u00f0\u00ea\u0001\u0000\u0000\u0000\u00f0\u00ed\u0001\u0000\u0000\u0000"+ - "\u00f1\u00f4\u0001\u0000\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000\u0000"+ - "\u00f2\u00f3\u0001\u0000\u0000\u0000\u00f3\u000b\u0001\u0000\u0000\u0000"+ - "\u00f4\u00f2\u0001\u0000\u0000\u0000\u00f5\u00f7\u0003\u0010\b\u0000\u00f6"+ - "\u00f8\u00054\u0000\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8"+ - "\u0001\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u00fa"+ - "\u00052\u0000\u0000\u00fa\u00fb\u0003x<\u0000\u00fb\u0114\u0001\u0000"+ - "\u0000\u0000\u00fc\u00fe\u0003\u0010\b\u0000\u00fd\u00ff\u00054\u0000"+ - "\u0000\u00fe\u00fd\u0001\u0000\u0000\u0000\u00fe\u00ff\u0001\u0000\u0000"+ - "\u0000\u00ff\u0100\u0001\u0000\u0000\u0000\u0100\u0101\u0005:\u0000\u0000"+ - "\u0101\u0102\u0003x<\u0000\u0102\u0114\u0001\u0000\u0000\u0000\u0103\u0105"+ - "\u0003\u0010\b\u0000\u0104\u0106\u00054\u0000\u0000\u0105\u0104\u0001"+ - "\u0000\u0000\u0000\u0105\u0106\u0001\u0000\u0000\u0000\u0106\u0107\u0001"+ - "\u0000\u0000\u0000\u0107\u0108\u00052\u0000\u0000\u0108\u0109\u00053\u0000"+ - "\u0000\u0109\u010e\u0003x<\u0000\u010a\u010b\u0005*\u0000\u0000\u010b"+ - "\u010d\u0003x<\u0000\u010c\u010a\u0001\u0000\u0000\u0000\u010d\u0110\u0001"+ - "\u0000\u0000\u0000\u010e\u010c\u0001\u0000\u0000\u0000\u010e\u010f\u0001"+ - "\u0000\u0000\u0000\u010f\u0111\u0001\u0000\u0000\u0000\u0110\u010e\u0001"+ - "\u0000\u0000\u0000\u0111\u0112\u0005;\u0000\u0000\u0112\u0114\u0001\u0000"+ - "\u0000\u0000\u0113\u00f5\u0001\u0000\u0000\u0000\u0113\u00fc\u0001\u0000"+ - "\u0000\u0000\u0113\u0103\u0001\u0000\u0000\u0000\u0114\r\u0001\u0000\u0000"+ - "\u0000\u0115\u0118\u0003F#\u0000\u0116\u0117\u0005(\u0000\u0000\u0117"+ - "\u0119\u0003\u001e\u000f\u0000\u0118\u0116\u0001\u0000\u0000\u0000\u0118"+ - "\u0119\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a"+ - "\u011b\u0005)\u0000\u0000\u011b\u011c\u0003P(\u0000\u011c\u000f\u0001"+ - "\u0000\u0000\u0000\u011d\u0123\u0003\u0012\t\u0000\u011e\u011f\u0003\u0012"+ - "\t\u0000\u011f\u0120\u0003z=\u0000\u0120\u0121\u0003\u0012\t\u0000\u0121"+ - "\u0123\u0001\u0000\u0000\u0000\u0122\u011d\u0001\u0000\u0000\u0000\u0122"+ - "\u011e\u0001\u0000\u0000\u0000\u0123\u0011\u0001\u0000\u0000\u0000\u0124"+ - "\u0125\u0006\t\uffff\uffff\u0000\u0125\u0129\u0003\u0014\n\u0000\u0126"+ - "\u0127\u0007\u0000\u0000\u0000\u0127\u0129\u0003\u0012\t\u0003\u0128\u0124"+ - "\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0129\u0132"+ - "\u0001\u0000\u0000\u0000\u012a\u012b\n\u0002\u0000\u0000\u012b\u012c\u0007"+ - "\u0001\u0000\u0000\u012c\u0131\u0003\u0012\t\u0003\u012d\u012e\n\u0001"+ - "\u0000\u0000\u012e\u012f\u0007\u0000\u0000\u0000\u012f\u0131\u0003\u0012"+ - "\t\u0002\u0130\u012a\u0001\u0000\u0000\u0000\u0130\u012d\u0001\u0000\u0000"+ - "\u0000\u0131\u0134\u0001\u0000\u0000\u0000\u0132\u0130\u0001\u0000\u0000"+ - "\u0000\u0132\u0133\u0001\u0000\u0000\u0000\u0133\u0013\u0001\u0000\u0000"+ - "\u0000\u0134\u0132\u0001\u0000\u0000\u0000\u0135\u0136\u0006\n\uffff\uffff"+ - "\u0000\u0136\u013e\u0003P(\u0000\u0137\u013e\u0003F#\u0000\u0138\u013e"+ - "\u0003\u0016\u000b\u0000\u0139\u013a\u00053\u0000\u0000\u013a\u013b\u0003"+ - "\n\u0005\u0000\u013b\u013c\u0005;\u0000\u0000\u013c\u013e\u0001\u0000"+ - "\u0000\u0000\u013d\u0135\u0001\u0000\u0000\u0000\u013d\u0137\u0001\u0000"+ - "\u0000\u0000\u013d\u0138\u0001\u0000\u0000\u0000\u013d\u0139\u0001\u0000"+ - "\u0000\u0000\u013e\u0144\u0001\u0000\u0000\u0000\u013f\u0140\n\u0001\u0000"+ - "\u0000\u0140\u0141\u0005(\u0000\u0000\u0141\u0143\u0003\u001e\u000f\u0000"+ - "\u0142\u013f\u0001\u0000\u0000\u0000\u0143\u0146\u0001\u0000\u0000\u0000"+ - "\u0144\u0142\u0001\u0000\u0000\u0000\u0144\u0145\u0001\u0000\u0000\u0000"+ - "\u0145\u0015\u0001\u0000\u0000\u0000\u0146\u0144\u0001\u0000\u0000\u0000"+ - "\u0147\u0148\u0003\u0018\f\u0000\u0148\u0156\u00053\u0000\u0000\u0149"+ - "\u0157\u0005G\u0000\u0000\u014a\u014f\u0003\n\u0005\u0000\u014b\u014c"+ - "\u0005*\u0000\u0000\u014c\u014e\u0003\n\u0005\u0000\u014d\u014b\u0001"+ - "\u0000\u0000\u0000\u014e\u0151\u0001\u0000\u0000\u0000\u014f\u014d\u0001"+ - "\u0000\u0000\u0000\u014f\u0150\u0001\u0000\u0000\u0000\u0150\u0154\u0001"+ - "\u0000\u0000\u0000\u0151\u014f\u0001\u0000\u0000\u0000\u0152\u0153\u0005"+ - "*\u0000\u0000\u0153\u0155\u0003\u001a\r\u0000\u0154\u0152\u0001\u0000"+ - "\u0000\u0000\u0154\u0155\u0001\u0000\u0000\u0000\u0155\u0157\u0001\u0000"+ - "\u0000\u0000\u0156\u0149\u0001\u0000\u0000\u0000\u0156\u014a\u0001\u0000"+ - "\u0000\u0000\u0156\u0157\u0001\u0000\u0000\u0000\u0157\u0158\u0001\u0000"+ - "\u0000\u0000\u0158\u0159\u0005;\u0000\u0000\u0159\u0017\u0001\u0000\u0000"+ - "\u0000\u015a\u015b\u0003V+\u0000\u015b\u0019\u0001\u0000\u0000\u0000\u015c"+ - "\u015d\u0005J\u0000\u0000\u015d\u0162\u0003\u001c\u000e\u0000\u015e\u015f"+ - "\u0005*\u0000\u0000\u015f\u0161\u0003\u001c\u000e\u0000\u0160\u015e\u0001"+ - "\u0000\u0000\u0000\u0161\u0164\u0001\u0000\u0000\u0000\u0162\u0160\u0001"+ - "\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000\u0000\u0163\u0165\u0001"+ - "\u0000\u0000\u0000\u0164\u0162\u0001\u0000\u0000\u0000\u0165\u0166\u0005"+ - "K\u0000\u0000\u0166\u001b\u0001\u0000\u0000\u0000\u0167\u0168\u0003x<"+ - "\u0000\u0168\u0169\u0005)\u0000\u0000\u0169\u016a\u0003P(\u0000\u016a"+ - "\u001d\u0001\u0000\u0000\u0000\u016b\u016c\u0003L&\u0000\u016c\u001f\u0001"+ - "\u0000\u0000\u0000\u016d\u016e\u0005\r\u0000\u0000\u016e\u016f\u0003\""+ - "\u0011\u0000\u016f!\u0001\u0000\u0000\u0000\u0170\u0175\u0003$\u0012\u0000"+ - "\u0171\u0172\u0005*\u0000\u0000\u0172\u0174\u0003$\u0012\u0000\u0173\u0171"+ - "\u0001\u0000\u0000\u0000\u0174\u0177\u0001\u0000\u0000\u0000\u0175\u0173"+ - "\u0001\u0000\u0000\u0000\u0175\u0176\u0001\u0000\u0000\u0000\u0176#\u0001"+ - "\u0000\u0000\u0000\u0177\u0175\u0001\u0000\u0000\u0000\u0178\u0179\u0003"+ - "F#\u0000\u0179\u017a\u0005&\u0000\u0000\u017a\u017c\u0001\u0000\u0000"+ - "\u0000\u017b\u0178\u0001\u0000\u0000\u0000\u017b\u017c\u0001\u0000\u0000"+ - "\u0000\u017c\u017d\u0001\u0000\u0000\u0000\u017d\u017e\u0003\n\u0005\u0000"+ - "\u017e%\u0001\u0000\u0000\u0000\u017f\u0184\u0003(\u0014\u0000\u0180\u0181"+ - "\u0005*\u0000\u0000\u0181\u0183\u0003(\u0014\u0000\u0182\u0180\u0001\u0000"+ - "\u0000\u0000\u0183\u0186\u0001\u0000\u0000\u0000\u0184\u0182\u0001\u0000"+ - "\u0000\u0000\u0184\u0185\u0001\u0000\u0000\u0000\u0185\'\u0001\u0000\u0000"+ - "\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0187\u018a\u0003F#\u0000\u0188"+ - "\u0189\u0005&\u0000\u0000\u0189\u018b\u0003\n\u0005\u0000\u018a\u0188"+ - "\u0001\u0000\u0000\u0000\u018a\u018b\u0001\u0000\u0000\u0000\u018b)\u0001"+ - "\u0000\u0000\u0000\u018c\u018d\u0005\u0007\u0000\u0000\u018d\u0192\u0003"+ - ",\u0016\u0000\u018e\u018f\u0005*\u0000\u0000\u018f\u0191\u0003,\u0016"+ - "\u0000\u0190\u018e\u0001\u0000\u0000\u0000\u0191\u0194\u0001\u0000\u0000"+ - "\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0192\u0193\u0001\u0000\u0000"+ - "\u0000\u0193\u0196\u0001\u0000\u0000\u0000\u0194\u0192\u0001\u0000\u0000"+ - "\u0000\u0195\u0197\u00036\u001b\u0000\u0196\u0195\u0001\u0000\u0000\u0000"+ - "\u0196\u0197\u0001\u0000\u0000\u0000\u0197+\u0001\u0000\u0000\u0000\u0198"+ - "\u0199\u0003.\u0017\u0000\u0199\u019a\u0005)\u0000\u0000\u019a\u019b\u0003"+ - "2\u0019\u0000\u019b\u01a2\u0001\u0000\u0000\u0000\u019c\u019d\u00032\u0019"+ - "\u0000\u019d\u019e\u0005(\u0000\u0000\u019e\u019f\u00030\u0018\u0000\u019f"+ - "\u01a2\u0001\u0000\u0000\u0000\u01a0\u01a2\u00034\u001a\u0000\u01a1\u0198"+ - "\u0001\u0000\u0000\u0000\u01a1\u019c\u0001\u0000\u0000\u0000\u01a1\u01a0"+ - "\u0001\u0000\u0000\u0000\u01a2-\u0001\u0000\u0000\u0000\u01a3\u01a4\u0005"+ - "Z\u0000\u0000\u01a4/\u0001\u0000\u0000\u0000\u01a5\u01a6\u0005Z\u0000"+ - "\u0000\u01a61\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005Z\u0000\u0000\u01a8"+ - "3\u0001\u0000\u0000\u0000\u01a9\u01aa\u0007\u0002\u0000\u0000\u01aa5\u0001"+ - "\u0000\u0000\u0000\u01ab\u01ae\u00038\u001c\u0000\u01ac\u01ae\u0003:\u001d"+ - "\u0000\u01ad\u01ab\u0001\u0000\u0000\u0000\u01ad\u01ac\u0001\u0000\u0000"+ - "\u0000\u01ae7\u0001\u0000\u0000\u0000\u01af\u01b0\u0005Y\u0000\u0000\u01b0"+ - "\u01b5\u0005Z\u0000\u0000\u01b1\u01b2\u0005*\u0000\u0000\u01b2\u01b4\u0005"+ - "Z\u0000\u0000\u01b3\u01b1\u0001\u0000\u0000\u0000\u01b4\u01b7\u0001\u0000"+ - "\u0000\u0000\u01b5\u01b3\u0001\u0000\u0000\u0000\u01b5\u01b6\u0001\u0000"+ - "\u0000\u0000\u01b69\u0001\u0000\u0000\u0000\u01b7\u01b5\u0001\u0000\u0000"+ - "\u0000\u01b8\u01b9\u0005O\u0000\u0000\u01b9\u01ba\u00038\u001c\u0000\u01ba"+ - "\u01bb\u0005P\u0000\u0000\u01bb;\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005"+ - "\u0017\u0000\u0000\u01bd\u01c2\u0003,\u0016\u0000\u01be\u01bf\u0005*\u0000"+ - "\u0000\u01bf\u01c1\u0003,\u0016\u0000\u01c0\u01be\u0001\u0000\u0000\u0000"+ - "\u01c1\u01c4\u0001\u0000\u0000\u0000\u01c2\u01c0\u0001\u0000\u0000\u0000"+ - "\u01c2\u01c3\u0001\u0000\u0000\u0000\u01c3\u01c6\u0001\u0000\u0000\u0000"+ - "\u01c4\u01c2\u0001\u0000\u0000\u0000\u01c5\u01c7\u0003B!\u0000\u01c6\u01c5"+ - "\u0001\u0000\u0000\u0000\u01c6\u01c7\u0001\u0000\u0000\u0000\u01c7\u01ca"+ - "\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005\'\u0000\u0000\u01c9\u01cb\u0003"+ - "\"\u0011\u0000\u01ca\u01c8\u0001\u0000\u0000\u0000\u01ca\u01cb\u0001\u0000"+ - "\u0000\u0000\u01cb=\u0001\u0000\u0000\u0000\u01cc\u01cd\u0005\u0005\u0000"+ - "\u0000\u01cd\u01ce\u0003\"\u0011\u0000\u01ce?\u0001\u0000\u0000\u0000"+ - "\u01cf\u01d1\u0005\u0011\u0000\u0000\u01d0\u01d2\u0003B!\u0000\u01d1\u01d0"+ - "\u0001\u0000\u0000\u0000\u01d1\u01d2\u0001\u0000\u0000\u0000\u01d2\u01d5"+ - "\u0001\u0000\u0000\u0000\u01d3\u01d4\u0005\'\u0000\u0000\u01d4\u01d6\u0003"+ - "\"\u0011\u0000\u01d5\u01d3\u0001\u0000\u0000\u0000\u01d5\u01d6\u0001\u0000"+ - "\u0000\u0000\u01d6A\u0001\u0000\u0000\u0000\u01d7\u01dc\u0003D\"\u0000"+ - "\u01d8\u01d9\u0005*\u0000\u0000\u01d9\u01db\u0003D\"\u0000\u01da\u01d8"+ - "\u0001\u0000\u0000\u0000\u01db\u01de\u0001\u0000\u0000\u0000\u01dc\u01da"+ - "\u0001\u0000\u0000\u0000\u01dc\u01dd\u0001\u0000\u0000\u0000\u01ddC\u0001"+ - "\u0000\u0000\u0000\u01de\u01dc\u0001\u0000\u0000\u0000\u01df\u01e2\u0003"+ - "$\u0012\u0000\u01e0\u01e1\u0005\u0012\u0000\u0000\u01e1\u01e3\u0003\n"+ - "\u0005\u0000\u01e2\u01e0\u0001\u0000\u0000\u0000\u01e2\u01e3\u0001\u0000"+ - "\u0000\u0000\u01e3E\u0001\u0000\u0000\u0000\u01e4\u01e9\u0003V+\u0000"+ - "\u01e5\u01e6\u0005,\u0000\u0000\u01e6\u01e8\u0003V+\u0000\u01e7\u01e5"+ - "\u0001\u0000\u0000\u0000\u01e8\u01eb\u0001\u0000\u0000\u0000\u01e9\u01e7"+ - "\u0001\u0000\u0000\u0000\u01e9\u01ea\u0001\u0000\u0000\u0000\u01eaG\u0001"+ - "\u0000\u0000\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01ec\u01f1\u0003"+ - "N\'\u0000\u01ed\u01ee\u0005,\u0000\u0000\u01ee\u01f0\u0003N\'\u0000\u01ef"+ - "\u01ed\u0001\u0000\u0000\u0000\u01f0\u01f3\u0001\u0000\u0000\u0000\u01f1"+ - "\u01ef\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001\u0000\u0000\u0000\u01f2"+ - "I\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f4\u01f9"+ - "\u0003H$\u0000\u01f5\u01f6\u0005*\u0000\u0000\u01f6\u01f8\u0003H$\u0000"+ - "\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f8\u01fb\u0001\u0000\u0000\u0000"+ - "\u01f9\u01f7\u0001\u0000\u0000\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000"+ - "\u01faK\u0001\u0000\u0000\u0000\u01fb\u01f9\u0001\u0000\u0000\u0000\u01fc"+ - "\u01fd\u0007\u0003\u0000\u0000\u01fdM\u0001\u0000\u0000\u0000\u01fe\u0202"+ - "\u0005^\u0000\u0000\u01ff\u0202\u0003R)\u0000\u0200\u0202\u0003T*\u0000"+ - "\u0201\u01fe\u0001\u0000\u0000\u0000\u0201\u01ff\u0001\u0000\u0000\u0000"+ - "\u0201\u0200\u0001\u0000\u0000\u0000\u0202O\u0001\u0000\u0000\u0000\u0203"+ - "\u022e\u00055\u0000\u0000\u0204\u0205\u0003v;\u0000\u0205\u0206\u0005"+ - "Q\u0000\u0000\u0206\u022e\u0001\u0000\u0000\u0000\u0207\u022e\u0003t:"+ - "\u0000\u0208\u022e\u0003v;\u0000\u0209\u022e\u0003p8\u0000\u020a\u022e"+ - "\u0003R)\u0000\u020b\u022e\u0003x<\u0000\u020c\u020d\u0005O\u0000\u0000"+ - "\u020d\u0212\u0003r9\u0000\u020e\u020f\u0005*\u0000\u0000\u020f\u0211"+ - "\u0003r9\u0000\u0210\u020e\u0001\u0000\u0000\u0000\u0211\u0214\u0001\u0000"+ - "\u0000\u0000\u0212\u0210\u0001\u0000\u0000\u0000\u0212\u0213\u0001\u0000"+ - "\u0000\u0000\u0213\u0215\u0001\u0000\u0000\u0000\u0214\u0212\u0001\u0000"+ - "\u0000\u0000\u0215\u0216\u0005P\u0000\u0000\u0216\u022e\u0001\u0000\u0000"+ - "\u0000\u0217\u0218\u0005O\u0000\u0000\u0218\u021d\u0003p8\u0000\u0219"+ - "\u021a\u0005*\u0000\u0000\u021a\u021c\u0003p8\u0000\u021b\u0219\u0001"+ - "\u0000\u0000\u0000\u021c\u021f\u0001\u0000\u0000\u0000\u021d\u021b\u0001"+ - "\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u0220\u0001"+ - "\u0000\u0000\u0000\u021f\u021d\u0001\u0000\u0000\u0000\u0220\u0221\u0005"+ - "P\u0000\u0000\u0221\u022e\u0001\u0000\u0000\u0000\u0222\u0223\u0005O\u0000"+ - "\u0000\u0223\u0228\u0003x<\u0000\u0224\u0225\u0005*\u0000\u0000\u0225"+ - "\u0227\u0003x<\u0000\u0226\u0224\u0001\u0000\u0000\u0000\u0227\u022a\u0001"+ - "\u0000\u0000\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0228\u0229\u0001"+ - "\u0000\u0000\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u0228\u0001"+ - "\u0000\u0000\u0000\u022b\u022c\u0005P\u0000\u0000\u022c\u022e\u0001\u0000"+ - "\u0000\u0000\u022d\u0203\u0001\u0000\u0000\u0000\u022d\u0204\u0001\u0000"+ - "\u0000\u0000\u022d\u0207\u0001\u0000\u0000\u0000\u022d\u0208\u0001\u0000"+ - "\u0000\u0000\u022d\u0209\u0001\u0000\u0000\u0000\u022d\u020a\u0001\u0000"+ - "\u0000\u0000\u022d\u020b\u0001\u0000\u0000\u0000\u022d\u020c\u0001\u0000"+ - "\u0000\u0000\u022d\u0217\u0001\u0000\u0000\u0000\u022d\u0222\u0001\u0000"+ - "\u0000\u0000\u022eQ\u0001\u0000\u0000\u0000\u022f\u0232\u00059\u0000\u0000"+ - "\u0230\u0232\u0005M\u0000\u0000\u0231\u022f\u0001\u0000\u0000\u0000\u0231"+ - "\u0230\u0001\u0000\u0000\u0000\u0232S\u0001\u0000\u0000\u0000\u0233\u0236"+ - "\u0005L\u0000\u0000\u0234\u0236\u0005N\u0000\u0000\u0235\u0233\u0001\u0000"+ - "\u0000\u0000\u0235\u0234\u0001\u0000\u0000\u0000\u0236U\u0001\u0000\u0000"+ - "\u0000\u0237\u023b\u0003L&\u0000\u0238\u023b\u0003R)\u0000\u0239\u023b"+ - "\u0003T*\u0000\u023a\u0237\u0001\u0000\u0000\u0000\u023a\u0238\u0001\u0000"+ - "\u0000\u0000\u023a\u0239\u0001\u0000\u0000\u0000\u023bW\u0001\u0000\u0000"+ - "\u0000\u023c\u023d\u0005\n\u0000\u0000\u023d\u023e\u0003P(\u0000\u023e"+ - "Y\u0001\u0000\u0000\u0000\u023f\u0240\u0005\u0010\u0000\u0000\u0240\u0245"+ - "\u0003\\.\u0000\u0241\u0242\u0005*\u0000\u0000\u0242\u0244\u0003\\.\u0000"+ - "\u0243\u0241\u0001\u0000\u0000\u0000\u0244\u0247\u0001\u0000\u0000\u0000"+ - "\u0245\u0243\u0001\u0000\u0000\u0000\u0245\u0246\u0001\u0000\u0000\u0000"+ - "\u0246[\u0001\u0000\u0000\u0000\u0247\u0245\u0001\u0000\u0000\u0000\u0248"+ - "\u024a\u0003\n\u0005\u0000\u0249\u024b\u0007\u0004\u0000\u0000\u024a\u0249"+ - "\u0001\u0000\u0000\u0000\u024a\u024b\u0001\u0000\u0000\u0000\u024b\u024e"+ - "\u0001\u0000\u0000\u0000\u024c\u024d\u00056\u0000\u0000\u024d\u024f\u0007"+ - "\u0005\u0000\u0000\u024e\u024c\u0001\u0000\u0000\u0000\u024e\u024f\u0001"+ - "\u0000\u0000\u0000\u024f]\u0001\u0000\u0000\u0000\u0250\u0251\u0005\t"+ - "\u0000\u0000\u0251\u0252\u0003J%\u0000\u0252_\u0001\u0000\u0000\u0000"+ - "\u0253\u0254\u0005\u0003\u0000\u0000\u0254\u0255\u0003J%\u0000\u0255a"+ - "\u0001\u0000\u0000\u0000\u0256\u0257\u0005\f\u0000\u0000\u0257\u025c\u0003"+ - "d2\u0000\u0258\u0259\u0005*\u0000\u0000\u0259\u025b\u0003d2\u0000\u025a"+ - "\u0258\u0001\u0000\u0000\u0000\u025b\u025e\u0001\u0000\u0000\u0000\u025c"+ - "\u025a\u0001\u0000\u0000\u0000\u025c\u025d\u0001\u0000\u0000\u0000\u025d"+ - "c\u0001\u0000\u0000\u0000\u025e\u025c\u0001\u0000\u0000\u0000\u025f\u0260"+ - "\u0003H$\u0000\u0260\u0261\u0005b\u0000\u0000\u0261\u0262\u0003H$\u0000"+ - "\u0262\u0268\u0001\u0000\u0000\u0000\u0263\u0264\u0003H$\u0000\u0264\u0265"+ - "\u0005&\u0000\u0000\u0265\u0266\u0003H$\u0000\u0266\u0268\u0001\u0000"+ - "\u0000\u0000\u0267\u025f\u0001\u0000\u0000\u0000\u0267\u0263\u0001\u0000"+ - "\u0000\u0000\u0268e\u0001\u0000\u0000\u0000\u0269\u026a\u0005\u0002\u0000"+ - "\u0000\u026a\u026b\u0003\u0014\n\u0000\u026b\u026d\u0003x<\u0000\u026c"+ - "\u026e\u0003l6\u0000\u026d\u026c\u0001\u0000\u0000\u0000\u026d\u026e\u0001"+ - "\u0000\u0000\u0000\u026eg\u0001\u0000\u0000\u0000\u026f\u0270\u0005\b"+ - "\u0000\u0000\u0270\u0271\u0003\u0014\n\u0000\u0271\u0272\u0003x<\u0000"+ - "\u0272i\u0001\u0000\u0000\u0000\u0273\u0274\u0005\u000b\u0000\u0000\u0274"+ - "\u0275\u0003F#\u0000\u0275k\u0001\u0000\u0000\u0000\u0276\u027b\u0003"+ - "n7\u0000\u0277\u0278\u0005*\u0000\u0000\u0278\u027a\u0003n7\u0000\u0279"+ - "\u0277\u0001\u0000\u0000\u0000\u027a\u027d\u0001\u0000\u0000\u0000\u027b"+ - "\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c"+ - "m\u0001\u0000\u0000\u0000\u027d\u027b\u0001\u0000\u0000\u0000\u027e\u027f"+ - "\u0003L&\u0000\u027f\u0280\u0005&\u0000\u0000\u0280\u0281\u0003P(\u0000"+ - "\u0281o\u0001\u0000\u0000\u0000\u0282\u0283\u0007\u0006\u0000\u0000\u0283"+ - "q\u0001\u0000\u0000\u0000\u0284\u0287\u0003t:\u0000\u0285\u0287\u0003"+ - "v;\u0000\u0286\u0284\u0001\u0000\u0000\u0000\u0286\u0285\u0001\u0000\u0000"+ - "\u0000\u0287s\u0001\u0000\u0000\u0000\u0288\u028a\u0007\u0000\u0000\u0000"+ - "\u0289\u0288\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000\u0000\u0000"+ - "\u028a\u028b\u0001\u0000\u0000\u0000\u028b\u028c\u0005#\u0000\u0000\u028c"+ - "u\u0001\u0000\u0000\u0000\u028d\u028f\u0007\u0000\u0000\u0000\u028e\u028d"+ - "\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000\u0000\u028f\u0290"+ - "\u0001\u0000\u0000\u0000\u0290\u0291\u0005\"\u0000\u0000\u0291w\u0001"+ - "\u0000\u0000\u0000\u0292\u0293\u0005!\u0000\u0000\u0293y\u0001\u0000\u0000"+ - "\u0000\u0294\u0295\u0007\u0007\u0000\u0000\u0295{\u0001\u0000\u0000\u0000"+ - "\u0296\u0297\u0005\u0006\u0000\u0000\u0297\u0298\u0003~?\u0000\u0298}"+ - "\u0001\u0000\u0000\u0000\u0299\u029a\u0005O\u0000\u0000\u029a\u029b\u0003"+ - "\u0002\u0001\u0000\u029b\u029c\u0005P\u0000\u0000\u029c\u007f\u0001\u0000"+ - "\u0000\u0000\u029d\u029e\u0005\u000f\u0000\u0000\u029e\u029f\u0005p\u0000"+ - "\u0000\u029f\u0081\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005\u0004\u0000"+ - "\u0000\u02a1\u02a4\u0005f\u0000\u0000\u02a2\u02a3\u00057\u0000\u0000\u02a3"+ - "\u02a5\u0003H$\u0000\u02a4\u02a2\u0001\u0000\u0000\u0000\u02a4\u02a5\u0001"+ - "\u0000\u0000\u0000\u02a5\u02af\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005"+ - "=\u0000\u0000\u02a7\u02ac\u0003\u0084B\u0000\u02a8\u02a9\u0005*\u0000"+ - "\u0000\u02a9\u02ab\u0003\u0084B\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000"+ - "\u02ab\u02ae\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000"+ - "\u02ac\u02ad\u0001\u0000\u0000\u0000\u02ad\u02b0\u0001\u0000\u0000\u0000"+ - "\u02ae\u02ac\u0001\u0000\u0000\u0000\u02af\u02a6\u0001\u0000\u0000\u0000"+ - "\u02af\u02b0\u0001\u0000\u0000\u0000\u02b0\u0083\u0001\u0000\u0000\u0000"+ - "\u02b1\u02b2\u0003H$\u0000\u02b2\u02b3\u0005&\u0000\u0000\u02b3\u02b5"+ - "\u0001\u0000\u0000\u0000\u02b4\u02b1\u0001\u0000\u0000\u0000\u02b4\u02b5"+ - "\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7"+ - "\u0003H$\u0000\u02b7\u0085\u0001\u0000\u0000\u0000\u02b8\u02b9\u0005\u0014"+ - "\u0000\u0000\u02b9\u02bc\u0003F#\u0000\u02ba\u02bb\u00057\u0000\u0000"+ - "\u02bb\u02bd\u0003F#\u0000\u02bc\u02ba\u0001\u0000\u0000\u0000\u02bc\u02bd"+ - "\u0001\u0000\u0000\u0000\u02bd\u02c3\u0001\u0000\u0000\u0000\u02be\u02bf"+ - "\u0005b\u0000\u0000\u02bf\u02c0\u0003F#\u0000\u02c0\u02c1\u0005*\u0000"+ - "\u0000\u02c1\u02c2\u0003F#\u0000\u02c2\u02c4\u0001\u0000\u0000\u0000\u02c3"+ - "\u02be\u0001\u0000\u0000\u0000\u02c3\u02c4\u0001\u0000\u0000\u0000\u02c4"+ - "\u0087\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005\u000e\u0000\u0000\u02c6"+ - "\u02c7\u0003P(\u0000\u02c7\u0089\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005"+ - "\u0016\u0000\u0000\u02c9\u02ca\u0003,\u0016\u0000\u02ca\u02cb\u00057\u0000"+ - "\u0000\u02cb\u02cc\u0003J%\u0000\u02cc\u008b\u0001\u0000\u0000\u0000\u02cd"+ - "\u02ce\u0005\u0015\u0000\u0000\u02ce\u02d1\u0003B!\u0000\u02cf\u02d0\u0005"+ - "\'\u0000\u0000\u02d0\u02d2\u0003\"\u0011\u0000\u02d1\u02cf\u0001\u0000"+ - "\u0000\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2\u008d\u0001\u0000"+ - "\u0000\u0000\u02d3\u02d4\u0007\b\u0000\u0000\u02d4\u02d5\u0005~\u0000"+ - "\u0000\u02d5\u02d6\u0003\u0090H\u0000\u02d6\u02d7\u0003\u0092I\u0000\u02d7"+ - "\u008f\u0001\u0000\u0000\u0000\u02d8\u02d9\u0003,\u0016\u0000\u02d9\u0091"+ - "\u0001\u0000\u0000\u0000\u02da\u02db\u00057\u0000\u0000\u02db\u02e0\u0003"+ - "\u0094J\u0000\u02dc\u02dd\u0005*\u0000\u0000\u02dd\u02df\u0003\u0094J"+ - "\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02df\u02e2\u0001\u0000\u0000"+ - "\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e0\u02e1\u0001\u0000\u0000"+ - "\u0000\u02e1\u0093\u0001\u0000\u0000\u0000\u02e2\u02e0\u0001\u0000\u0000"+ - "\u0000\u02e3\u02e4\u0003\u0010\b\u0000\u02e4\u0095\u0001\u0000\u0000\u0000"+ - "\u02e5\u02e6\u0005\u0018\u0000\u0000\u02e6\u02e7\u0003P(\u0000\u02e7\u02e8"+ - "\u00057\u0000\u0000\u02e8\u02eb\u0003&\u0013\u0000\u02e9\u02ea\u0005="+ - "\u0000\u0000\u02ea\u02ec\u0003V+\u0000\u02eb\u02e9\u0001\u0000\u0000\u0000"+ - "\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec\u0097\u0001\u0000\u0000\u0000"+ - "\u02ed\u02f1\u0005\u0001\u0000\u0000\u02ee\u02ef\u0003F#\u0000\u02ef\u02f0"+ - "\u0005&\u0000\u0000\u02f0\u02f2\u0001\u0000\u0000\u0000\u02f1\u02ee\u0001"+ - "\u0000\u0000\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f3\u0001"+ - "\u0000\u0000\u0000\u02f3\u02f4\u0003\u0014\n\u0000\u02f4\u02f5\u0005="+ - "\u0000\u0000\u02f5\u02f6\u0003V+\u0000\u02f6\u0099\u0001\u0000\u0000\u0000"+ - "H\u00a5\u00ae\u00c6\u00d2\u00db\u00e3\u00e8\u00f0\u00f2\u00f7\u00fe\u0105"+ - "\u010e\u0113\u0118\u0122\u0128\u0130\u0132\u013d\u0144\u014f\u0154\u0156"+ - "\u0162\u0175\u017b\u0184\u018a\u0192\u0196\u01a1\u01ad\u01b5\u01c2\u01c6"+ - "\u01ca\u01d1\u01d5\u01dc\u01e2\u01e9\u01f1\u01f9\u0201\u0212\u021d\u0228"+ - "\u022d\u0231\u0235\u023a\u0245\u024a\u024e\u025c\u0267\u026d\u027b\u0286"+ - "\u0289\u028e\u02a4\u02ac\u02af\u02b4\u02bc\u02c3\u02d1\u02e0\u02eb\u02f1"; + "I\u0005I\u02e5\bI\nI\fI\u02e8\tI\u0001J\u0001J\u0001K\u0001K\u0001K\u0005"+ + "K\u02ef\bK\nK\fK\u02f2\tK\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0003"+ + "M\u02fa\bM\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N\u0003N\u0302\bN\u0001"+ + "O\u0001O\u0001O\u0001O\u0003O\u0308\bO\u0001O\u0001O\u0001O\u0001O\u0001"+ + "O\u0000\u0004\u0002\n\u0012\u0014P\u0000\u0002\u0004\u0006\b\n\f\u000e"+ + "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDF"+ + "HJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c"+ + "\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u0000\t\u0001\u0000"+ + "EF\u0001\u0000GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000"+ + "..11\u0002\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0013\u0013\u001a\u001b"+ + "\u032e\u0000\u00a0\u0001\u0000\u0000\u0000\u0002\u00a3\u0001\u0000\u0000"+ + "\u0000\u0004\u00b4\u0001\u0000\u0000\u0000\u0006\u00cc\u0001\u0000\u0000"+ + "\u0000\b\u00ce\u0001\u0000\u0000\u0000\n\u00ee\u0001\u0000\u0000\u0000"+ + "\f\u0119\u0001\u0000\u0000\u0000\u000e\u011b\u0001\u0000\u0000\u0000\u0010"+ + "\u0128\u0001\u0000\u0000\u0000\u0012\u012e\u0001\u0000\u0000\u0000\u0014"+ + "\u0143\u0001\u0000\u0000\u0000\u0016\u014d\u0001\u0000\u0000\u0000\u0018"+ + "\u0160\u0001\u0000\u0000\u0000\u001a\u0162\u0001\u0000\u0000\u0000\u001c"+ + "\u016d\u0001\u0000\u0000\u0000\u001e\u0171\u0001\u0000\u0000\u0000 \u0173"+ + "\u0001\u0000\u0000\u0000\"\u0176\u0001\u0000\u0000\u0000$\u0181\u0001"+ + "\u0000\u0000\u0000&\u0185\u0001\u0000\u0000\u0000(\u018d\u0001\u0000\u0000"+ + "\u0000*\u0192\u0001\u0000\u0000\u0000,\u01a7\u0001\u0000\u0000\u0000."+ + "\u01a9\u0001\u0000\u0000\u00000\u01ab\u0001\u0000\u0000\u00002\u01ad\u0001"+ + "\u0000\u0000\u00004\u01af\u0001\u0000\u0000\u00006\u01b3\u0001\u0000\u0000"+ + "\u00008\u01b5\u0001\u0000\u0000\u0000:\u01be\u0001\u0000\u0000\u0000<"+ + "\u01c2\u0001\u0000\u0000\u0000>\u01d2\u0001\u0000\u0000\u0000@\u01d5\u0001"+ + "\u0000\u0000\u0000B\u01dd\u0001\u0000\u0000\u0000D\u01e5\u0001\u0000\u0000"+ + "\u0000F\u01ea\u0001\u0000\u0000\u0000H\u01f2\u0001\u0000\u0000\u0000J"+ + "\u01fa\u0001\u0000\u0000\u0000L\u0202\u0001\u0000\u0000\u0000N\u0207\u0001"+ + "\u0000\u0000\u0000P\u0233\u0001\u0000\u0000\u0000R\u0237\u0001\u0000\u0000"+ + "\u0000T\u023b\u0001\u0000\u0000\u0000V\u0240\u0001\u0000\u0000\u0000X"+ + "\u0242\u0001\u0000\u0000\u0000Z\u0245\u0001\u0000\u0000\u0000\\\u024e"+ + "\u0001\u0000\u0000\u0000^\u0256\u0001\u0000\u0000\u0000`\u0259\u0001\u0000"+ + "\u0000\u0000b\u025c\u0001\u0000\u0000\u0000d\u026d\u0001\u0000\u0000\u0000"+ + "f\u026f\u0001\u0000\u0000\u0000h\u0275\u0001\u0000\u0000\u0000j\u0279"+ + "\u0001\u0000\u0000\u0000l\u027c\u0001\u0000\u0000\u0000n\u0284\u0001\u0000"+ + "\u0000\u0000p\u0288\u0001\u0000\u0000\u0000r\u028c\u0001\u0000\u0000\u0000"+ + "t\u028f\u0001\u0000\u0000\u0000v\u0294\u0001\u0000\u0000\u0000x\u0298"+ + "\u0001\u0000\u0000\u0000z\u029a\u0001\u0000\u0000\u0000|\u029c\u0001\u0000"+ + "\u0000\u0000~\u029f\u0001\u0000\u0000\u0000\u0080\u02a3\u0001\u0000\u0000"+ + "\u0000\u0082\u02a6\u0001\u0000\u0000\u0000\u0084\u02ba\u0001\u0000\u0000"+ + "\u0000\u0086\u02be\u0001\u0000\u0000\u0000\u0088\u02cb\u0001\u0000\u0000"+ + "\u0000\u008a\u02ce\u0001\u0000\u0000\u0000\u008c\u02d3\u0001\u0000\u0000"+ + "\u0000\u008e\u02d9\u0001\u0000\u0000\u0000\u0090\u02de\u0001\u0000\u0000"+ + "\u0000\u0092\u02e0\u0001\u0000\u0000\u0000\u0094\u02e9\u0001\u0000\u0000"+ + "\u0000\u0096\u02eb\u0001\u0000\u0000\u0000\u0098\u02f3\u0001\u0000\u0000"+ + "\u0000\u009a\u02f9\u0001\u0000\u0000\u0000\u009c\u02fb\u0001\u0000\u0000"+ + "\u0000\u009e\u0303\u0001\u0000\u0000\u0000\u00a0\u00a1\u0003\u0002\u0001"+ + "\u0000\u00a1\u00a2\u0005\u0000\u0000\u0001\u00a2\u0001\u0001\u0000\u0000"+ + "\u0000\u00a3\u00a4\u0006\u0001\uffff\uffff\u0000\u00a4\u00a5\u0003\u0004"+ + "\u0002\u0000\u00a5\u00ab\u0001\u0000\u0000\u0000\u00a6\u00a7\n\u0001\u0000"+ + "\u0000\u00a7\u00a8\u0005 \u0000\u0000\u00a8\u00aa\u0003\u0006\u0003\u0000"+ + "\u00a9\u00a6\u0001\u0000\u0000\u0000\u00aa\u00ad\u0001\u0000\u0000\u0000"+ + "\u00ab\u00a9\u0001\u0000\u0000\u0000\u00ab\u00ac\u0001\u0000\u0000\u0000"+ + "\u00ac\u0003\u0001\u0000\u0000\u0000\u00ad\u00ab\u0001\u0000\u0000\u0000"+ + "\u00ae\u00b5\u0003|>\u0000\u00af\u00b5\u0003*\u0015\u0000\u00b0\u00b5"+ + "\u0003 \u0010\u0000\u00b1\u00b5\u0003\u0080@\u0000\u00b2\u00b3\u0004\u0002"+ + "\u0001\u0000\u00b3\u00b5\u0003<\u001e\u0000\u00b4\u00ae\u0001\u0000\u0000"+ + "\u0000\u00b4\u00af\u0001\u0000\u0000\u0000\u00b4\u00b0\u0001\u0000\u0000"+ + "\u0000\u00b4\u00b1\u0001\u0000\u0000\u0000\u00b4\u00b2\u0001\u0000\u0000"+ + "\u0000\u00b5\u0005\u0001\u0000\u0000\u0000\u00b6\u00cd\u0003>\u001f\u0000"+ + "\u00b7\u00cd\u0003\b\u0004\u0000\u00b8\u00cd\u0003^/\u0000\u00b9\u00cd"+ + "\u0003X,\u0000\u00ba\u00cd\u0003@ \u0000\u00bb\u00cd\u0003Z-\u0000\u00bc"+ + "\u00cd\u0003`0\u0000\u00bd\u00cd\u0003b1\u0000\u00be\u00cd\u0003f3\u0000"+ + "\u00bf\u00cd\u0003h4\u0000\u00c0\u00cd\u0003\u0082A\u0000\u00c1\u00cd"+ + "\u0003j5\u0000\u00c2\u00cd\u0003\u008eG\u0000\u00c3\u00cd\u0003\u0086"+ + "C\u0000\u00c4\u00cd\u0003\u009eO\u0000\u00c5\u00cd\u0003\u0088D\u0000"+ + "\u00c6\u00c7\u0004\u0003\u0002\u0000\u00c7\u00cd\u0003\u008cF\u0000\u00c8"+ + "\u00c9\u0004\u0003\u0003\u0000\u00c9\u00cd\u0003\u008aE\u0000\u00ca\u00cb"+ + "\u0004\u0003\u0004\u0000\u00cb\u00cd\u0003\u009cN\u0000\u00cc\u00b6\u0001"+ + "\u0000\u0000\u0000\u00cc\u00b7\u0001\u0000\u0000\u0000\u00cc\u00b8\u0001"+ + "\u0000\u0000\u0000\u00cc\u00b9\u0001\u0000\u0000\u0000\u00cc\u00ba\u0001"+ + "\u0000\u0000\u0000\u00cc\u00bb\u0001\u0000\u0000\u0000\u00cc\u00bc\u0001"+ + "\u0000\u0000\u0000\u00cc\u00bd\u0001\u0000\u0000\u0000\u00cc\u00be\u0001"+ + "\u0000\u0000\u0000\u00cc\u00bf\u0001\u0000\u0000\u0000\u00cc\u00c0\u0001"+ + "\u0000\u0000\u0000\u00cc\u00c1\u0001\u0000\u0000\u0000\u00cc\u00c2\u0001"+ + "\u0000\u0000\u0000\u00cc\u00c3\u0001\u0000\u0000\u0000\u00cc\u00c4\u0001"+ + "\u0000\u0000\u0000\u00cc\u00c5\u0001\u0000\u0000\u0000\u00cc\u00c6\u0001"+ + "\u0000\u0000\u0000\u00cc\u00c8\u0001\u0000\u0000\u0000\u00cc\u00ca\u0001"+ + "\u0000\u0000\u0000\u00cd\u0007\u0001\u0000\u0000\u0000\u00ce\u00cf\u0005"+ + "\u0012\u0000\u0000\u00cf\u00d0\u0003\n\u0005\u0000\u00d0\t\u0001\u0000"+ + "\u0000\u0000\u00d1\u00d2\u0006\u0005\uffff\uffff\u0000\u00d2\u00d3\u0005"+ + "4\u0000\u0000\u00d3\u00ef\u0003\n\u0005\b\u00d4\u00ef\u0003\u0010\b\u0000"+ + "\u00d5\u00ef\u0003\f\u0006\u0000\u00d6\u00d8\u0003\u0010\b\u0000\u00d7"+ + "\u00d9\u00054\u0000\u0000\u00d8\u00d7\u0001\u0000\u0000\u0000\u00d8\u00d9"+ + "\u0001\u0000\u0000\u0000\u00d9\u00da\u0001\u0000\u0000\u0000\u00da\u00db"+ + "\u0005/\u0000\u0000\u00db\u00dc\u00053\u0000\u0000\u00dc\u00e1\u0003\u0010"+ + "\b\u0000\u00dd\u00de\u0005*\u0000\u0000\u00de\u00e0\u0003\u0010\b\u0000"+ + "\u00df\u00dd\u0001\u0000\u0000\u0000\u00e0\u00e3\u0001\u0000\u0000\u0000"+ + "\u00e1\u00df\u0001\u0000\u0000\u0000\u00e1\u00e2\u0001\u0000\u0000\u0000"+ + "\u00e2\u00e4\u0001\u0000\u0000\u0000\u00e3\u00e1\u0001\u0000\u0000\u0000"+ + "\u00e4\u00e5\u0005;\u0000\u0000\u00e5\u00ef\u0001\u0000\u0000\u0000\u00e6"+ + "\u00e7\u0003\u0010\b\u0000\u00e7\u00e9\u00050\u0000\u0000\u00e8\u00ea"+ + "\u00054\u0000\u0000\u00e9\u00e8\u0001\u0000\u0000\u0000\u00e9\u00ea\u0001"+ + "\u0000\u0000\u0000\u00ea\u00eb\u0001\u0000\u0000\u0000\u00eb\u00ec\u0005"+ + "5\u0000\u0000\u00ec\u00ef\u0001\u0000\u0000\u0000\u00ed\u00ef\u0003\u000e"+ + "\u0007\u0000\u00ee\u00d1\u0001\u0000\u0000\u0000\u00ee\u00d4\u0001\u0000"+ + "\u0000\u0000\u00ee\u00d5\u0001\u0000\u0000\u0000\u00ee\u00d6\u0001\u0000"+ + "\u0000\u0000\u00ee\u00e6\u0001\u0000\u0000\u0000\u00ee\u00ed\u0001\u0000"+ + "\u0000\u0000\u00ef\u00f8\u0001\u0000\u0000\u0000\u00f0\u00f1\n\u0005\u0000"+ + "\u0000\u00f1\u00f2\u0005$\u0000\u0000\u00f2\u00f7\u0003\n\u0005\u0006"+ + "\u00f3\u00f4\n\u0004\u0000\u0000\u00f4\u00f5\u00058\u0000\u0000\u00f5"+ + "\u00f7\u0003\n\u0005\u0005\u00f6\u00f0\u0001\u0000\u0000\u0000\u00f6\u00f3"+ + "\u0001\u0000\u0000\u0000\u00f7\u00fa\u0001\u0000\u0000\u0000\u00f8\u00f6"+ + "\u0001\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u000b"+ + "\u0001\u0000\u0000\u0000\u00fa\u00f8\u0001\u0000\u0000\u0000\u00fb\u00fd"+ + "\u0003\u0010\b\u0000\u00fc\u00fe\u00054\u0000\u0000\u00fd\u00fc\u0001"+ + "\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u00ff\u0001"+ + "\u0000\u0000\u0000\u00ff\u0100\u00052\u0000\u0000\u0100\u0101\u0003x<"+ + "\u0000\u0101\u011a\u0001\u0000\u0000\u0000\u0102\u0104\u0003\u0010\b\u0000"+ + "\u0103\u0105\u00054\u0000\u0000\u0104\u0103\u0001\u0000\u0000\u0000\u0104"+ + "\u0105\u0001\u0000\u0000\u0000\u0105\u0106\u0001\u0000\u0000\u0000\u0106"+ + "\u0107\u0005:\u0000\u0000\u0107\u0108\u0003x<\u0000\u0108\u011a\u0001"+ + "\u0000\u0000\u0000\u0109\u010b\u0003\u0010\b\u0000\u010a\u010c\u00054"+ + "\u0000\u0000\u010b\u010a\u0001\u0000\u0000\u0000\u010b\u010c\u0001\u0000"+ + "\u0000\u0000\u010c\u010d\u0001\u0000\u0000\u0000\u010d\u010e\u00052\u0000"+ + "\u0000\u010e\u010f\u00053\u0000\u0000\u010f\u0114\u0003x<\u0000\u0110"+ + "\u0111\u0005*\u0000\u0000\u0111\u0113\u0003x<\u0000\u0112\u0110\u0001"+ + "\u0000\u0000\u0000\u0113\u0116\u0001\u0000\u0000\u0000\u0114\u0112\u0001"+ + "\u0000\u0000\u0000\u0114\u0115\u0001\u0000\u0000\u0000\u0115\u0117\u0001"+ + "\u0000\u0000\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0117\u0118\u0005"+ + ";\u0000\u0000\u0118\u011a\u0001\u0000\u0000\u0000\u0119\u00fb\u0001\u0000"+ + "\u0000\u0000\u0119\u0102\u0001\u0000\u0000\u0000\u0119\u0109\u0001\u0000"+ + "\u0000\u0000\u011a\r\u0001\u0000\u0000\u0000\u011b\u011e\u0003F#\u0000"+ + "\u011c\u011d\u0005(\u0000\u0000\u011d\u011f\u0003\u001e\u000f\u0000\u011e"+ + "\u011c\u0001\u0000\u0000\u0000\u011e\u011f\u0001\u0000\u0000\u0000\u011f"+ + "\u0120\u0001\u0000\u0000\u0000\u0120\u0121\u0005)\u0000\u0000\u0121\u0122"+ + "\u0003P(\u0000\u0122\u000f\u0001\u0000\u0000\u0000\u0123\u0129\u0003\u0012"+ + "\t\u0000\u0124\u0125\u0003\u0012\t\u0000\u0125\u0126\u0003z=\u0000\u0126"+ + "\u0127\u0003\u0012\t\u0000\u0127\u0129\u0001\u0000\u0000\u0000\u0128\u0123"+ + "\u0001\u0000\u0000\u0000\u0128\u0124\u0001\u0000\u0000\u0000\u0129\u0011"+ + "\u0001\u0000\u0000\u0000\u012a\u012b\u0006\t\uffff\uffff\u0000\u012b\u012f"+ + "\u0003\u0014\n\u0000\u012c\u012d\u0007\u0000\u0000\u0000\u012d\u012f\u0003"+ + "\u0012\t\u0003\u012e\u012a\u0001\u0000\u0000\u0000\u012e\u012c\u0001\u0000"+ + "\u0000\u0000\u012f\u0138\u0001\u0000\u0000\u0000\u0130\u0131\n\u0002\u0000"+ + "\u0000\u0131\u0132\u0007\u0001\u0000\u0000\u0132\u0137\u0003\u0012\t\u0003"+ + "\u0133\u0134\n\u0001\u0000\u0000\u0134\u0135\u0007\u0000\u0000\u0000\u0135"+ + "\u0137\u0003\u0012\t\u0002\u0136\u0130\u0001\u0000\u0000\u0000\u0136\u0133"+ + "\u0001\u0000\u0000\u0000\u0137\u013a\u0001\u0000\u0000\u0000\u0138\u0136"+ + "\u0001\u0000\u0000\u0000\u0138\u0139\u0001\u0000\u0000\u0000\u0139\u0013"+ + "\u0001\u0000\u0000\u0000\u013a\u0138\u0001\u0000\u0000\u0000\u013b\u013c"+ + "\u0006\n\uffff\uffff\u0000\u013c\u0144\u0003P(\u0000\u013d\u0144\u0003"+ + "F#\u0000\u013e\u0144\u0003\u0016\u000b\u0000\u013f\u0140\u00053\u0000"+ + "\u0000\u0140\u0141\u0003\n\u0005\u0000\u0141\u0142\u0005;\u0000\u0000"+ + "\u0142\u0144\u0001\u0000\u0000\u0000\u0143\u013b\u0001\u0000\u0000\u0000"+ + "\u0143\u013d\u0001\u0000\u0000\u0000\u0143\u013e\u0001\u0000\u0000\u0000"+ + "\u0143\u013f\u0001\u0000\u0000\u0000\u0144\u014a\u0001\u0000\u0000\u0000"+ + "\u0145\u0146\n\u0001\u0000\u0000\u0146\u0147\u0005(\u0000\u0000\u0147"+ + "\u0149\u0003\u001e\u000f\u0000\u0148\u0145\u0001\u0000\u0000\u0000\u0149"+ + "\u014c\u0001\u0000\u0000\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a"+ + "\u014b\u0001\u0000\u0000\u0000\u014b\u0015\u0001\u0000\u0000\u0000\u014c"+ + "\u014a\u0001\u0000\u0000\u0000\u014d\u014e\u0003\u0018\f\u0000\u014e\u015c"+ + "\u00053\u0000\u0000\u014f\u015d\u0005G\u0000\u0000\u0150\u0155\u0003\n"+ + "\u0005\u0000\u0151\u0152\u0005*\u0000\u0000\u0152\u0154\u0003\n\u0005"+ + "\u0000\u0153\u0151\u0001\u0000\u0000\u0000\u0154\u0157\u0001\u0000\u0000"+ + "\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0155\u0156\u0001\u0000\u0000"+ + "\u0000\u0156\u015a\u0001\u0000\u0000\u0000\u0157\u0155\u0001\u0000\u0000"+ + "\u0000\u0158\u0159\u0005*\u0000\u0000\u0159\u015b\u0003\u001a\r\u0000"+ + "\u015a\u0158\u0001\u0000\u0000\u0000\u015a\u015b\u0001\u0000\u0000\u0000"+ + "\u015b\u015d\u0001\u0000\u0000\u0000\u015c\u014f\u0001\u0000\u0000\u0000"+ + "\u015c\u0150\u0001\u0000\u0000\u0000\u015c\u015d\u0001\u0000\u0000\u0000"+ + "\u015d\u015e\u0001\u0000\u0000\u0000\u015e\u015f\u0005;\u0000\u0000\u015f"+ + "\u0017\u0001\u0000\u0000\u0000\u0160\u0161\u0003V+\u0000\u0161\u0019\u0001"+ + "\u0000\u0000\u0000\u0162\u0163\u0005J\u0000\u0000\u0163\u0168\u0003\u001c"+ + "\u000e\u0000\u0164\u0165\u0005*\u0000\u0000\u0165\u0167\u0003\u001c\u000e"+ + "\u0000\u0166\u0164\u0001\u0000\u0000\u0000\u0167\u016a\u0001\u0000\u0000"+ + "\u0000\u0168\u0166\u0001\u0000\u0000\u0000\u0168\u0169\u0001\u0000\u0000"+ + "\u0000\u0169\u016b\u0001\u0000\u0000\u0000\u016a\u0168\u0001\u0000\u0000"+ + "\u0000\u016b\u016c\u0005K\u0000\u0000\u016c\u001b\u0001\u0000\u0000\u0000"+ + "\u016d\u016e\u0003x<\u0000\u016e\u016f\u0005)\u0000\u0000\u016f\u0170"+ + "\u0003P(\u0000\u0170\u001d\u0001\u0000\u0000\u0000\u0171\u0172\u0003L"+ + "&\u0000\u0172\u001f\u0001\u0000\u0000\u0000\u0173\u0174\u0005\r\u0000"+ + "\u0000\u0174\u0175\u0003\"\u0011\u0000\u0175!\u0001\u0000\u0000\u0000"+ + "\u0176\u017b\u0003$\u0012\u0000\u0177\u0178\u0005*\u0000\u0000\u0178\u017a"+ + "\u0003$\u0012\u0000\u0179\u0177\u0001\u0000\u0000\u0000\u017a\u017d\u0001"+ + "\u0000\u0000\u0000\u017b\u0179\u0001\u0000\u0000\u0000\u017b\u017c\u0001"+ + "\u0000\u0000\u0000\u017c#\u0001\u0000\u0000\u0000\u017d\u017b\u0001\u0000"+ + "\u0000\u0000\u017e\u017f\u0003F#\u0000\u017f\u0180\u0005&\u0000\u0000"+ + "\u0180\u0182\u0001\u0000\u0000\u0000\u0181\u017e\u0001\u0000\u0000\u0000"+ + "\u0181\u0182\u0001\u0000\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000"+ + "\u0183\u0184\u0003\n\u0005\u0000\u0184%\u0001\u0000\u0000\u0000\u0185"+ + "\u018a\u0003(\u0014\u0000\u0186\u0187\u0005*\u0000\u0000\u0187\u0189\u0003"+ + "(\u0014\u0000\u0188\u0186\u0001\u0000\u0000\u0000\u0189\u018c\u0001\u0000"+ + "\u0000\u0000\u018a\u0188\u0001\u0000\u0000\u0000\u018a\u018b\u0001\u0000"+ + "\u0000\u0000\u018b\'\u0001\u0000\u0000\u0000\u018c\u018a\u0001\u0000\u0000"+ + "\u0000\u018d\u0190\u0003F#\u0000\u018e\u018f\u0005&\u0000\u0000\u018f"+ + "\u0191\u0003\n\u0005\u0000\u0190\u018e\u0001\u0000\u0000\u0000\u0190\u0191"+ + "\u0001\u0000\u0000\u0000\u0191)\u0001\u0000\u0000\u0000\u0192\u0193\u0005"+ + "\u0007\u0000\u0000\u0193\u0198\u0003,\u0016\u0000\u0194\u0195\u0005*\u0000"+ + "\u0000\u0195\u0197\u0003,\u0016\u0000\u0196\u0194\u0001\u0000\u0000\u0000"+ + "\u0197\u019a\u0001\u0000\u0000\u0000\u0198\u0196\u0001\u0000\u0000\u0000"+ + "\u0198\u0199\u0001\u0000\u0000\u0000\u0199\u019c\u0001\u0000\u0000\u0000"+ + "\u019a\u0198\u0001\u0000\u0000\u0000\u019b\u019d\u00036\u001b\u0000\u019c"+ + "\u019b\u0001\u0000\u0000\u0000\u019c\u019d\u0001\u0000\u0000\u0000\u019d"+ + "+\u0001\u0000\u0000\u0000\u019e\u019f\u0003.\u0017\u0000\u019f\u01a0\u0005"+ + ")\u0000\u0000\u01a0\u01a1\u00032\u0019\u0000\u01a1\u01a8\u0001\u0000\u0000"+ + "\u0000\u01a2\u01a3\u00032\u0019\u0000\u01a3\u01a4\u0005(\u0000\u0000\u01a4"+ + "\u01a5\u00030\u0018\u0000\u01a5\u01a8\u0001\u0000\u0000\u0000\u01a6\u01a8"+ + "\u00034\u001a\u0000\u01a7\u019e\u0001\u0000\u0000\u0000\u01a7\u01a2\u0001"+ + "\u0000\u0000\u0000\u01a7\u01a6\u0001\u0000\u0000\u0000\u01a8-\u0001\u0000"+ + "\u0000\u0000\u01a9\u01aa\u0005Z\u0000\u0000\u01aa/\u0001\u0000\u0000\u0000"+ + "\u01ab\u01ac\u0005Z\u0000\u0000\u01ac1\u0001\u0000\u0000\u0000\u01ad\u01ae"+ + "\u0005Z\u0000\u0000\u01ae3\u0001\u0000\u0000\u0000\u01af\u01b0\u0007\u0002"+ + "\u0000\u0000\u01b05\u0001\u0000\u0000\u0000\u01b1\u01b4\u00038\u001c\u0000"+ + "\u01b2\u01b4\u0003:\u001d\u0000\u01b3\u01b1\u0001\u0000\u0000\u0000\u01b3"+ + "\u01b2\u0001\u0000\u0000\u0000\u01b47\u0001\u0000\u0000\u0000\u01b5\u01b6"+ + "\u0005Y\u0000\u0000\u01b6\u01bb\u0005Z\u0000\u0000\u01b7\u01b8\u0005*"+ + "\u0000\u0000\u01b8\u01ba\u0005Z\u0000\u0000\u01b9\u01b7\u0001\u0000\u0000"+ + "\u0000\u01ba\u01bd\u0001\u0000\u0000\u0000\u01bb\u01b9\u0001\u0000\u0000"+ + "\u0000\u01bb\u01bc\u0001\u0000\u0000\u0000\u01bc9\u0001\u0000\u0000\u0000"+ + "\u01bd\u01bb\u0001\u0000\u0000\u0000\u01be\u01bf\u0005O\u0000\u0000\u01bf"+ + "\u01c0\u00038\u001c\u0000\u01c0\u01c1\u0005P\u0000\u0000\u01c1;\u0001"+ + "\u0000\u0000\u0000\u01c2\u01c3\u0005\u0017\u0000\u0000\u01c3\u01c8\u0003"+ + ",\u0016\u0000\u01c4\u01c5\u0005*\u0000\u0000\u01c5\u01c7\u0003,\u0016"+ + "\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c7\u01ca\u0001\u0000\u0000"+ + "\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000\u0000"+ + "\u0000\u01c9\u01cc\u0001\u0000\u0000\u0000\u01ca\u01c8\u0001\u0000\u0000"+ + "\u0000\u01cb\u01cd\u0003B!\u0000\u01cc\u01cb\u0001\u0000\u0000\u0000\u01cc"+ + "\u01cd\u0001\u0000\u0000\u0000\u01cd\u01d0\u0001\u0000\u0000\u0000\u01ce"+ + "\u01cf\u0005\'\u0000\u0000\u01cf\u01d1\u0003\"\u0011\u0000\u01d0\u01ce"+ + "\u0001\u0000\u0000\u0000\u01d0\u01d1\u0001\u0000\u0000\u0000\u01d1=\u0001"+ + "\u0000\u0000\u0000\u01d2\u01d3\u0005\u0005\u0000\u0000\u01d3\u01d4\u0003"+ + "\"\u0011\u0000\u01d4?\u0001\u0000\u0000\u0000\u01d5\u01d7\u0005\u0011"+ + "\u0000\u0000\u01d6\u01d8\u0003B!\u0000\u01d7\u01d6\u0001\u0000\u0000\u0000"+ + "\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8\u01db\u0001\u0000\u0000\u0000"+ + "\u01d9\u01da\u0005\'\u0000\u0000\u01da\u01dc\u0003\"\u0011\u0000\u01db"+ + "\u01d9\u0001\u0000\u0000\u0000\u01db\u01dc\u0001\u0000\u0000\u0000\u01dc"+ + "A\u0001\u0000\u0000\u0000\u01dd\u01e2\u0003D\"\u0000\u01de\u01df\u0005"+ + "*\u0000\u0000\u01df\u01e1\u0003D\"\u0000\u01e0\u01de\u0001\u0000\u0000"+ + "\u0000\u01e1\u01e4\u0001\u0000\u0000\u0000\u01e2\u01e0\u0001\u0000\u0000"+ + "\u0000\u01e2\u01e3\u0001\u0000\u0000\u0000\u01e3C\u0001\u0000\u0000\u0000"+ + "\u01e4\u01e2\u0001\u0000\u0000\u0000\u01e5\u01e8\u0003$\u0012\u0000\u01e6"+ + "\u01e7\u0005\u0012\u0000\u0000\u01e7\u01e9\u0003\n\u0005\u0000\u01e8\u01e6"+ + "\u0001\u0000\u0000\u0000\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9E\u0001"+ + "\u0000\u0000\u0000\u01ea\u01ef\u0003V+\u0000\u01eb\u01ec\u0005,\u0000"+ + "\u0000\u01ec\u01ee\u0003V+\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ee"+ + "\u01f1\u0001\u0000\u0000\u0000\u01ef\u01ed\u0001\u0000\u0000\u0000\u01ef"+ + "\u01f0\u0001\u0000\u0000\u0000\u01f0G\u0001\u0000\u0000\u0000\u01f1\u01ef"+ + "\u0001\u0000\u0000\u0000\u01f2\u01f7\u0003N\'\u0000\u01f3\u01f4\u0005"+ + ",\u0000\u0000\u01f4\u01f6\u0003N\'\u0000\u01f5\u01f3\u0001\u0000\u0000"+ + "\u0000\u01f6\u01f9\u0001\u0000\u0000\u0000\u01f7\u01f5\u0001\u0000\u0000"+ + "\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8I\u0001\u0000\u0000\u0000"+ + "\u01f9\u01f7\u0001\u0000\u0000\u0000\u01fa\u01ff\u0003H$\u0000\u01fb\u01fc"+ + "\u0005*\u0000\u0000\u01fc\u01fe\u0003H$\u0000\u01fd\u01fb\u0001\u0000"+ + "\u0000\u0000\u01fe\u0201\u0001\u0000\u0000\u0000\u01ff\u01fd\u0001\u0000"+ + "\u0000\u0000\u01ff\u0200\u0001\u0000\u0000\u0000\u0200K\u0001\u0000\u0000"+ + "\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0203\u0007\u0003\u0000"+ + "\u0000\u0203M\u0001\u0000\u0000\u0000\u0204\u0208\u0005^\u0000\u0000\u0205"+ + "\u0208\u0003R)\u0000\u0206\u0208\u0003T*\u0000\u0207\u0204\u0001\u0000"+ + "\u0000\u0000\u0207\u0205\u0001\u0000\u0000\u0000\u0207\u0206\u0001\u0000"+ + "\u0000\u0000\u0208O\u0001\u0000\u0000\u0000\u0209\u0234\u00055\u0000\u0000"+ + "\u020a\u020b\u0003v;\u0000\u020b\u020c\u0005Q\u0000\u0000\u020c\u0234"+ + "\u0001\u0000\u0000\u0000\u020d\u0234\u0003t:\u0000\u020e\u0234\u0003v"+ + ";\u0000\u020f\u0234\u0003p8\u0000\u0210\u0234\u0003R)\u0000\u0211\u0234"+ + "\u0003x<\u0000\u0212\u0213\u0005O\u0000\u0000\u0213\u0218\u0003r9\u0000"+ + "\u0214\u0215\u0005*\u0000\u0000\u0215\u0217\u0003r9\u0000\u0216\u0214"+ + "\u0001\u0000\u0000\u0000\u0217\u021a\u0001\u0000\u0000\u0000\u0218\u0216"+ + "\u0001\u0000\u0000\u0000\u0218\u0219\u0001\u0000\u0000\u0000\u0219\u021b"+ + "\u0001\u0000\u0000\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021b\u021c"+ + "\u0005P\u0000\u0000\u021c\u0234\u0001\u0000\u0000\u0000\u021d\u021e\u0005"+ + "O\u0000\u0000\u021e\u0223\u0003p8\u0000\u021f\u0220\u0005*\u0000\u0000"+ + "\u0220\u0222\u0003p8\u0000\u0221\u021f\u0001\u0000\u0000\u0000\u0222\u0225"+ + "\u0001\u0000\u0000\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0223\u0224"+ + "\u0001\u0000\u0000\u0000\u0224\u0226\u0001\u0000\u0000\u0000\u0225\u0223"+ + "\u0001\u0000\u0000\u0000\u0226\u0227\u0005P\u0000\u0000\u0227\u0234\u0001"+ + "\u0000\u0000\u0000\u0228\u0229\u0005O\u0000\u0000\u0229\u022e\u0003x<"+ + "\u0000\u022a\u022b\u0005*\u0000\u0000\u022b\u022d\u0003x<\u0000\u022c"+ + "\u022a\u0001\u0000\u0000\u0000\u022d\u0230\u0001\u0000\u0000\u0000\u022e"+ + "\u022c\u0001\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000\u022f"+ + "\u0231\u0001\u0000\u0000\u0000\u0230\u022e\u0001\u0000\u0000\u0000\u0231"+ + "\u0232\u0005P\u0000\u0000\u0232\u0234\u0001\u0000\u0000\u0000\u0233\u0209"+ + "\u0001\u0000\u0000\u0000\u0233\u020a\u0001\u0000\u0000\u0000\u0233\u020d"+ + "\u0001\u0000\u0000\u0000\u0233\u020e\u0001\u0000\u0000\u0000\u0233\u020f"+ + "\u0001\u0000\u0000\u0000\u0233\u0210\u0001\u0000\u0000\u0000\u0233\u0211"+ + "\u0001\u0000\u0000\u0000\u0233\u0212\u0001\u0000\u0000\u0000\u0233\u021d"+ + "\u0001\u0000\u0000\u0000\u0233\u0228\u0001\u0000\u0000\u0000\u0234Q\u0001"+ + "\u0000\u0000\u0000\u0235\u0238\u00059\u0000\u0000\u0236\u0238\u0005M\u0000"+ + "\u0000\u0237\u0235\u0001\u0000\u0000\u0000\u0237\u0236\u0001\u0000\u0000"+ + "\u0000\u0238S\u0001\u0000\u0000\u0000\u0239\u023c\u0005L\u0000\u0000\u023a"+ + "\u023c\u0005N\u0000\u0000\u023b\u0239\u0001\u0000\u0000\u0000\u023b\u023a"+ + "\u0001\u0000\u0000\u0000\u023cU\u0001\u0000\u0000\u0000\u023d\u0241\u0003"+ + "L&\u0000\u023e\u0241\u0003R)\u0000\u023f\u0241\u0003T*\u0000\u0240\u023d"+ + "\u0001\u0000\u0000\u0000\u0240\u023e\u0001\u0000\u0000\u0000\u0240\u023f"+ + "\u0001\u0000\u0000\u0000\u0241W\u0001\u0000\u0000\u0000\u0242\u0243\u0005"+ + "\n\u0000\u0000\u0243\u0244\u0003P(\u0000\u0244Y\u0001\u0000\u0000\u0000"+ + "\u0245\u0246\u0005\u0010\u0000\u0000\u0246\u024b\u0003\\.\u0000\u0247"+ + "\u0248\u0005*\u0000\u0000\u0248\u024a\u0003\\.\u0000\u0249\u0247\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\n\u0005"+ + "\u0000\u024f\u0251\u0007\u0004\u0000\u0000\u0250\u024f\u0001\u0000\u0000"+ + "\u0000\u0250\u0251\u0001\u0000\u0000\u0000\u0251\u0254\u0001\u0000\u0000"+ + "\u0000\u0252\u0253\u00056\u0000\u0000\u0253\u0255\u0007\u0005\u0000\u0000"+ + "\u0254\u0252\u0001\u0000\u0000\u0000\u0254\u0255\u0001\u0000\u0000\u0000"+ + "\u0255]\u0001\u0000\u0000\u0000\u0256\u0257\u0005\t\u0000\u0000\u0257"+ + "\u0258\u0003J%\u0000\u0258_\u0001\u0000\u0000\u0000\u0259\u025a\u0005"+ + "\u0003\u0000\u0000\u025a\u025b\u0003J%\u0000\u025ba\u0001\u0000\u0000"+ + "\u0000\u025c\u025d\u0005\f\u0000\u0000\u025d\u0262\u0003d2\u0000\u025e"+ + "\u025f\u0005*\u0000\u0000\u025f\u0261\u0003d2\u0000\u0260\u025e\u0001"+ + "\u0000\u0000\u0000\u0261\u0264\u0001\u0000\u0000\u0000\u0262\u0260\u0001"+ + "\u0000\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263c\u0001\u0000"+ + "\u0000\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0265\u0266\u0003H$\u0000"+ + "\u0266\u0267\u0005b\u0000\u0000\u0267\u0268\u0003H$\u0000\u0268\u026e"+ + "\u0001\u0000\u0000\u0000\u0269\u026a\u0003H$\u0000\u026a\u026b\u0005&"+ + "\u0000\u0000\u026b\u026c\u0003H$\u0000\u026c\u026e\u0001\u0000\u0000\u0000"+ + "\u026d\u0265\u0001\u0000\u0000\u0000\u026d\u0269\u0001\u0000\u0000\u0000"+ + "\u026ee\u0001\u0000\u0000\u0000\u026f\u0270\u0005\u0002\u0000\u0000\u0270"+ + "\u0271\u0003\u0014\n\u0000\u0271\u0273\u0003x<\u0000\u0272\u0274\u0003"+ + "l6\u0000\u0273\u0272\u0001\u0000\u0000\u0000\u0273\u0274\u0001\u0000\u0000"+ + "\u0000\u0274g\u0001\u0000\u0000\u0000\u0275\u0276\u0005\b\u0000\u0000"+ + "\u0276\u0277\u0003\u0014\n\u0000\u0277\u0278\u0003x<\u0000\u0278i\u0001"+ + "\u0000\u0000\u0000\u0279\u027a\u0005\u000b\u0000\u0000\u027a\u027b\u0003"+ + "F#\u0000\u027bk\u0001\u0000\u0000\u0000\u027c\u0281\u0003n7\u0000\u027d"+ + "\u027e\u0005*\u0000\u0000\u027e\u0280\u0003n7\u0000\u027f\u027d\u0001"+ + "\u0000\u0000\u0000\u0280\u0283\u0001\u0000\u0000\u0000\u0281\u027f\u0001"+ + "\u0000\u0000\u0000\u0281\u0282\u0001\u0000\u0000\u0000\u0282m\u0001\u0000"+ + "\u0000\u0000\u0283\u0281\u0001\u0000\u0000\u0000\u0284\u0285\u0003L&\u0000"+ + "\u0285\u0286\u0005&\u0000\u0000\u0286\u0287\u0003P(\u0000\u0287o\u0001"+ + "\u0000\u0000\u0000\u0288\u0289\u0007\u0006\u0000\u0000\u0289q\u0001\u0000"+ + "\u0000\u0000\u028a\u028d\u0003t:\u0000\u028b\u028d\u0003v;\u0000\u028c"+ + "\u028a\u0001\u0000\u0000\u0000\u028c\u028b\u0001\u0000\u0000\u0000\u028d"+ + "s\u0001\u0000\u0000\u0000\u028e\u0290\u0007\u0000\u0000\u0000\u028f\u028e"+ + "\u0001\u0000\u0000\u0000\u028f\u0290\u0001\u0000\u0000\u0000\u0290\u0291"+ + "\u0001\u0000\u0000\u0000\u0291\u0292\u0005#\u0000\u0000\u0292u\u0001\u0000"+ + "\u0000\u0000\u0293\u0295\u0007\u0000\u0000\u0000\u0294\u0293\u0001\u0000"+ + "\u0000\u0000\u0294\u0295\u0001\u0000\u0000\u0000\u0295\u0296\u0001\u0000"+ + "\u0000\u0000\u0296\u0297\u0005\"\u0000\u0000\u0297w\u0001\u0000\u0000"+ + "\u0000\u0298\u0299\u0005!\u0000\u0000\u0299y\u0001\u0000\u0000\u0000\u029a"+ + "\u029b\u0007\u0007\u0000\u0000\u029b{\u0001\u0000\u0000\u0000\u029c\u029d"+ + "\u0005\u0006\u0000\u0000\u029d\u029e\u0003~?\u0000\u029e}\u0001\u0000"+ + "\u0000\u0000\u029f\u02a0\u0005O\u0000\u0000\u02a0\u02a1\u0003\u0002\u0001"+ + "\u0000\u02a1\u02a2\u0005P\u0000\u0000\u02a2\u007f\u0001\u0000\u0000\u0000"+ + "\u02a3\u02a4\u0005\u000f\u0000\u0000\u02a4\u02a5\u0005p\u0000\u0000\u02a5"+ + "\u0081\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005\u0004\u0000\u0000\u02a7"+ + "\u02aa\u0005f\u0000\u0000\u02a8\u02a9\u00057\u0000\u0000\u02a9\u02ab\u0003"+ + "H$\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000"+ + "\u0000\u02ab\u02b5\u0001\u0000\u0000\u0000\u02ac\u02ad\u0005=\u0000\u0000"+ + "\u02ad\u02b2\u0003\u0084B\u0000\u02ae\u02af\u0005*\u0000\u0000\u02af\u02b1"+ + "\u0003\u0084B\u0000\u02b0\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b4\u0001"+ + "\u0000\u0000\u0000\u02b2\u02b0\u0001\u0000\u0000\u0000\u02b2\u02b3\u0001"+ + "\u0000\u0000\u0000\u02b3\u02b6\u0001\u0000\u0000\u0000\u02b4\u02b2\u0001"+ + "\u0000\u0000\u0000\u02b5\u02ac\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001"+ + "\u0000\u0000\u0000\u02b6\u0083\u0001\u0000\u0000\u0000\u02b7\u02b8\u0003"+ + "H$\u0000\u02b8\u02b9\u0005&\u0000\u0000\u02b9\u02bb\u0001\u0000\u0000"+ + "\u0000\u02ba\u02b7\u0001\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000"+ + "\u0000\u02bb\u02bc\u0001\u0000\u0000\u0000\u02bc\u02bd\u0003H$\u0000\u02bd"+ + "\u0085\u0001\u0000\u0000\u0000\u02be\u02bf\u0005\u0014\u0000\u0000\u02bf"+ + "\u02c2\u0003F#\u0000\u02c0\u02c1\u00057\u0000\u0000\u02c1\u02c3\u0003"+ + "F#\u0000\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2\u02c3\u0001\u0000\u0000"+ + "\u0000\u02c3\u02c9\u0001\u0000\u0000\u0000\u02c4\u02c5\u0005b\u0000\u0000"+ + "\u02c5\u02c6\u0003F#\u0000\u02c6\u02c7\u0005*\u0000\u0000\u02c7\u02c8"+ + "\u0003F#\u0000\u02c8\u02ca\u0001\u0000\u0000\u0000\u02c9\u02c4\u0001\u0000"+ + "\u0000\u0000\u02c9\u02ca\u0001\u0000\u0000\u0000\u02ca\u0087\u0001\u0000"+ + "\u0000\u0000\u02cb\u02cc\u0005\u000e\u0000\u0000\u02cc\u02cd\u0003P(\u0000"+ + "\u02cd\u0089\u0001\u0000\u0000\u0000\u02ce\u02cf\u0005\u0016\u0000\u0000"+ + "\u02cf\u02d0\u0003,\u0016\u0000\u02d0\u02d1\u00057\u0000\u0000\u02d1\u02d2"+ + "\u0003J%\u0000\u02d2\u008b\u0001\u0000\u0000\u0000\u02d3\u02d4\u0005\u0015"+ + "\u0000\u0000\u02d4\u02d7\u0003B!\u0000\u02d5\u02d6\u0005\'\u0000\u0000"+ + "\u02d6\u02d8\u0003\"\u0011\u0000\u02d7\u02d5\u0001\u0000\u0000\u0000\u02d7"+ + "\u02d8\u0001\u0000\u0000\u0000\u02d8\u008d\u0001\u0000\u0000\u0000\u02d9"+ + "\u02da\u0007\b\u0000\u0000\u02da\u02db\u0005~\u0000\u0000\u02db\u02dc"+ + "\u0003\u0090H\u0000\u02dc\u02dd\u0003\u0092I\u0000\u02dd\u008f\u0001\u0000"+ + "\u0000\u0000\u02de\u02df\u0003,\u0016\u0000\u02df\u0091\u0001\u0000\u0000"+ + "\u0000\u02e0\u02e1\u00057\u0000\u0000\u02e1\u02e6\u0003\u0094J\u0000\u02e2"+ + "\u02e3\u0005*\u0000\u0000\u02e3\u02e5\u0003\u0094J\u0000\u02e4\u02e2\u0001"+ + "\u0000\u0000\u0000\u02e5\u02e8\u0001\u0000\u0000\u0000\u02e6\u02e4\u0001"+ + "\u0000\u0000\u0000\u02e6\u02e7\u0001\u0000\u0000\u0000\u02e7\u0093\u0001"+ + "\u0000\u0000\u0000\u02e8\u02e6\u0001\u0000\u0000\u0000\u02e9\u02ea\u0003"+ + "\u0010\b\u0000\u02ea\u0095\u0001\u0000\u0000\u0000\u02eb\u02f0\u0003\u0098"+ + "L\u0000\u02ec\u02ed\u0005*\u0000\u0000\u02ed\u02ef\u0003\u0098L\u0000"+ + "\u02ee\u02ec\u0001\u0000\u0000\u0000\u02ef\u02f2\u0001\u0000\u0000\u0000"+ + "\u02f0\u02ee\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000"+ + "\u02f1\u0097\u0001\u0000\u0000\u0000\u02f2\u02f0\u0001\u0000\u0000\u0000"+ + "\u02f3\u02f4\u0003L&\u0000\u02f4\u02f5\u0005&\u0000\u0000\u02f5\u02f6"+ + "\u0003\u009aM\u0000\u02f6\u0099\u0001\u0000\u0000\u0000\u02f7\u02fa\u0003"+ + "P(\u0000\u02f8\u02fa\u0003L&\u0000\u02f9\u02f7\u0001\u0000\u0000\u0000"+ + "\u02f9\u02f8\u0001\u0000\u0000\u0000\u02fa\u009b\u0001\u0000\u0000\u0000"+ + "\u02fb\u02fc\u0005\u0018\u0000\u0000\u02fc\u02fd\u0003P(\u0000\u02fd\u02fe"+ + "\u00057\u0000\u0000\u02fe\u0301\u0003&\u0013\u0000\u02ff\u0300\u0005="+ + "\u0000\u0000\u0300\u0302\u0003\u0096K\u0000\u0301\u02ff\u0001\u0000\u0000"+ + "\u0000\u0301\u0302\u0001\u0000\u0000\u0000\u0302\u009d\u0001\u0000\u0000"+ + "\u0000\u0303\u0307\u0005\u0001\u0000\u0000\u0304\u0305\u0003F#\u0000\u0305"+ + "\u0306\u0005&\u0000\u0000\u0306\u0308\u0001\u0000\u0000\u0000\u0307\u0304"+ + "\u0001\u0000\u0000\u0000\u0307\u0308\u0001\u0000\u0000\u0000\u0308\u0309"+ + "\u0001\u0000\u0000\u0000\u0309\u030a\u0003\u0014\n\u0000\u030a\u030b\u0005"+ + "=\u0000\u0000\u030b\u030c\u0003V+\u0000\u030c\u009f\u0001\u0000\u0000"+ + "\u0000J\u00ab\u00b4\u00cc\u00d8\u00e1\u00e9\u00ee\u00f6\u00f8\u00fd\u0104"+ + "\u010b\u0114\u0119\u011e\u0128\u012e\u0136\u0138\u0143\u014a\u0155\u015a"+ + "\u015c\u0168\u017b\u0181\u018a\u0190\u0198\u019c\u01a7\u01b3\u01bb\u01c8"+ + "\u01cc\u01d0\u01d7\u01db\u01e2\u01e8\u01ef\u01f7\u01ff\u0207\u0218\u0223"+ + "\u022e\u0233\u0237\u023b\u0240\u024b\u0250\u0254\u0262\u026d\u0273\u0281"+ + "\u028c\u028f\u0294\u02aa\u02b2\u02b5\u02ba\u02c2\u02c9\u02d7\u02e6\u02f0"+ + "\u02f9\u0301\u0307"; 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 14f992376d1ed..e5d3d8dfa0602 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 @@ -1244,6 +1244,42 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

*/ @Override public void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext 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 16a851b40218f..771ca6d8d921d 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 @@ -734,6 +734,27 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext 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 f1382615dfe2d..232290e4a2b2e 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 @@ -1111,6 +1111,36 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptions}. + * @param ctx the parse tree + */ + void enterInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptions}. + * @param ctx the parse tree + */ + void exitInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#inferenceCommandOption}. + * @param ctx the parse tree + */ + void enterInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOption}. + * @param ctx the parse tree + */ + void exitInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptionValue}. + * @param ctx the parse tree + */ + void enterInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptionValue}. + * @param ctx the parse tree + */ + void exitInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext ctx); /** * Enter a parse tree produced by {@link EsqlBaseParser#rerankCommand}. * @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 51890695dcaa6..d25901c2fdc3d 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 @@ -668,6 +668,24 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptions}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInferenceCommandOptions(EsqlBaseParser.InferenceCommandOptionsContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOption}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInferenceCommandOption(EsqlBaseParser.InferenceCommandOptionContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#inferenceCommandOptionValue}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInferenceCommandOptionValue(EsqlBaseParser.InferenceCommandOptionValueContext ctx); /** * Visit a parse tree produced by {@link EsqlBaseParser#rerankCommand}. * @param ctx the parse tree diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index b5b81983486cf..34a9de0e3bae8 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java @@ -649,10 +649,27 @@ public PlanFactory visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { }; } + private void checkForRemoteClusters(LogicalPlan plan, Source source, String commandName) { + plan.forEachUp(UnresolvedRelation.class, r -> { + for (var indexPattern : Strings.splitStringByCommaToArray(r.indexPattern().indexPattern())) { + if (RemoteClusterAware.isRemoteIndexName(indexPattern)) { + throw new ParsingException( + source, + "invalid index pattern [{}], remote clusters are not supported with {}", + r.indexPattern().indexPattern(), + commandName + ); + } + } + }); + } + @Override public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { Source source = source(ctx); + List rerankFields = visitRerankFields(ctx.rerankFields()); Expression queryText = expression(ctx.queryText); + if (queryText instanceof Literal queryTextLiteral && DataType.isString(queryText.dataType())) { if (queryTextLiteral.value() == null) { throw new ParsingException( @@ -669,16 +686,72 @@ public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { ); } - Literal inferenceId = ctx.inferenceId != null ? inferenceId(ctx.inferenceId) : Literal.keyword(source, Rerank.DEFAULT_INFERENCE_ID); + return p -> { + checkForRemoteClusters(p, source, "RERANK"); + return visitRerankOptions(new Rerank(source, p, queryText, rerankFields), ctx.inferenceCommandOptions()); + }; + } + + private Rerank visitRerankOptions(Rerank rerank, EsqlBaseParser.InferenceCommandOptionsContext ctx) { + if (ctx == null) { + return rerank; + } + + Rerank.Builder rerankBuilder = new Rerank.Builder(rerank); + + for (var option : ctx.inferenceCommandOption()) { + String optionName = visitIdentifier(option.identifier()); + EsqlBaseParser.InferenceCommandOptionValueContext optionValue = option.inferenceCommandOptionValue(); + if (optionName.equals(Rerank.INFERENCE_ID_OPTION_NAME)) { + rerankBuilder.withInferenceId(visitInferenceId(optionValue)); + } else if (optionName.equals(Rerank.SCORE_COLUMN_OPTION_NAME)) { + rerankBuilder.withScoreAttribute(visitRerankScoreAttribute(optionName, optionValue)); + } else { + throw new ParsingException( + source(option.identifier()), + "Unknowm parameter [{}] in RERANK command", + option.identifier().getText() + ); + } + } + + return rerankBuilder.build(); + } + + private UnresolvedAttribute visitRerankScoreAttribute(String optionName, EsqlBaseParser.InferenceCommandOptionValueContext ctx) { + if (ctx.constant() == null && ctx.identifier() == null) { + throw new ParsingException(source(ctx), "Parameter [{}] is null or undefined", optionName); + } + + Expression optionValue = ctx.identifier() != null + ? Literal.keyword(source(ctx.identifier()), visitIdentifier(ctx.identifier())) + : expression(ctx.constant()); + + if (optionValue instanceof UnresolvedAttribute scoreAttribute) { + return scoreAttribute; + } else if (optionValue instanceof Literal literal) { + if (literal.value() == null) { + throw new ParsingException(optionValue.source(), "Parameter [{}] is null or undefined", optionName); + } + + if (literal.value() instanceof BytesRef attributeName) { + return new UnresolvedAttribute(literal.source(), BytesRefs.toString(attributeName)); + } + } - return p -> new Rerank(source, p, inferenceId, queryText, visitRerankFields(ctx.rerankFields())); + throw new ParsingException( + source(ctx), + "Option [{}] expects a valid attribute in RERANK command. [{}] provided.", + optionName, + ctx.constant().getText() + ); } @Override public PlanFactory visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) { Source source = source(ctx); Expression prompt = expression(ctx.prompt); - Literal inferenceId = inferenceId(ctx.inferenceId); + Literal inferenceId = visitInferenceId(ctx.inferenceId); Attribute targetField = ctx.targetField == null ? new UnresolvedAttribute(source, Completion.DEFAULT_OUTPUT_FIELD_NAME) : visitQualifiedName(ctx.targetField); @@ -686,27 +759,43 @@ public PlanFactory visitCompletionCommand(EsqlBaseParser.CompletionCommandContex return p -> new Completion(source, p, inferenceId, prompt, targetField); } - public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) { + private Literal visitInferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) { if (ctx.identifier() != null) { return Literal.keyword(source(ctx), visitIdentifier(ctx.identifier())); } - if (expression(ctx.parameter()) instanceof Literal literalParam) { - if (literalParam.value() != null) { - return literalParam; + return visitInferenceId(expression(ctx.parameter())); + } + + private Literal visitInferenceId(EsqlBaseParser.InferenceCommandOptionValueContext ctx) { + if (ctx.identifier() != null) { + return Literal.keyword(source(ctx), visitIdentifier(ctx.identifier())); + } + + return visitInferenceId(expression(ctx.constant())); + } + + private Literal visitInferenceId(Expression expression) { + if (expression instanceof Literal literal) { + if (literal.value() == null) { + throw new ParsingException( + expression.source(), + "Parameter [{}] is null or undefined and cannot be used as inference id", + expression.source().text() + ); } - throw new ParsingException( - source(ctx.parameter()), - "Query parameter [{}] is null or undefined and cannot be used as inference id", - ctx.parameter().getText() - ); + return literal; + } else if (expression instanceof UnresolvedAttribute attribute) { + // Support for unquoted inference id + return Literal.keyword(expression.source(), attribute.name()); } throw new ParsingException( - source(ctx.parameter()), - "Query parameter [{}] is not a string and cannot be used as inference id", - ctx.parameter().getText() + expression.source(), + "Query parameter [{}] is not a string and cannot be used as inference id [{}]", + expression.source().text(), + expression.getClass() ); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java index a577229f51aef..c4115caf111d1 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java @@ -22,9 +22,7 @@ import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; -import org.elasticsearch.xpack.esql.plan.GeneratingPlan; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; -import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic; import java.io.IOException; import java.util.List; @@ -34,12 +32,7 @@ import static org.elasticsearch.xpack.esql.core.type.DataType.TEXT; import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes; -public class Completion extends InferencePlan - implements - GeneratingPlan, - SortAgnostic, - TelemetryAware, - PostAnalysisVerificationAware { +public class Completion extends InferencePlan implements TelemetryAware, PostAnalysisVerificationAware { public static final String DEFAULT_OUTPUT_FIELD_NAME = "completion"; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java index 3d199fba495c6..620e8726865d6 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java @@ -12,13 +12,18 @@ import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.GeneratingPlan; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import java.io.IOException; import java.util.Objects; -public abstract class InferencePlan> extends UnaryPlan { +public abstract class InferencePlan> extends UnaryPlan + implements + SortAgnostic, + GeneratingPlan> { private final Expression inferenceId; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index 7156c5c97a8fe..308bdccfc0a01 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -18,17 +18,14 @@ import org.elasticsearch.xpack.esql.core.expression.AttributeSet; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Expressions; +import org.elasticsearch.xpack.esql.core.expression.Literal; import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; +import org.elasticsearch.xpack.esql.core.expression.NameId; import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; -import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; -import org.elasticsearch.xpack.esql.plan.QueryPlan; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; -import org.elasticsearch.xpack.esql.plan.logical.OrderBy; -import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic; -import org.elasticsearch.xpack.esql.plan.logical.SurrogateLogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import java.io.IOException; @@ -37,21 +34,29 @@ import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes; import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes; +import static org.elasticsearch.xpack.esql.parser.ParserUtils.source; -public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan, TelemetryAware { +public class Rerank extends InferencePlan implements TelemetryAware { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); public static final String DEFAULT_INFERENCE_ID = ".rerank-v1-elasticsearch"; + public static final String INFERENCE_ID_OPTION_NAME = "inferenceId"; + public static final String SCORE_COLUMN_OPTION_NAME = "scoreColumn"; + private final Attribute scoreAttribute; private final Expression queryText; private final List rerankFields; private List lazyOutput; - public Rerank(Source source, LogicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) { - super(source, child, inferenceId); - this.queryText = queryText; - this.rerankFields = rerankFields; - this.scoreAttribute = new UnresolvedAttribute(source, MetadataAttribute.SCORE); + public Rerank(Source source, LogicalPlan child, Expression queryText, List rerankFields) { + this( + source, + child, + Literal.keyword(Source.EMPTY, DEFAULT_INFERENCE_ID), + queryText, + rerankFields, + new UnresolvedAttribute(Source.EMPTY, MetadataAttribute.SCORE) + ); } public Rerank( @@ -129,13 +134,25 @@ public UnaryPlan replaceChild(LogicalPlan newChild) { @Override protected AttributeSet computeReferences() { - AttributeSet.Builder refs = computeReferences(rerankFields).asBuilder(); + return computeReferences(rerankFields); + } + + public List generatedAttributes() { + return List.of(scoreAttribute); + } + + @Override + public Rerank withGeneratedNames(List newNames) { + checkNumberOfNewNames(newNames); + return new Rerank(source(), child(), inferenceId(), queryText, rerankFields, this.renameScoreAttribute(newNames.get(0))); + } - if (planHasAttribute(child(), scoreAttribute)) { - refs.add(scoreAttribute); + private Attribute renameScoreAttribute(String newName) { + if (newName.equals(scoreAttribute.name())) { + return scoreAttribute; } - return refs.build(); + return scoreAttribute.withName(newName).withId(new NameId()); } public static AttributeSet computeReferences(List fields) { @@ -169,24 +186,33 @@ public int hashCode() { return Objects.hash(super.hashCode(), queryText, rerankFields, scoreAttribute); } - @Override - public LogicalPlan surrogate() { - Order sortOrder = new Order(source(), scoreAttribute, Order.OrderDirection.DESC, Order.NullsPosition.ANY); - return new OrderBy(source(), this, List.of(sortOrder)); - } - @Override public List output() { if (lazyOutput == null) { - lazyOutput = planHasAttribute(child(), scoreAttribute) - ? child().output() - : mergeOutputAttributes(List.of(scoreAttribute), child().output()); + lazyOutput = mergeOutputAttributes(List.of(scoreAttribute), child().output()); } - return lazyOutput; } - public static boolean planHasAttribute(QueryPlan plan, Attribute attribute) { - return plan.outputSet().stream().anyMatch(attr -> attr.equals(attribute)); + public static class Builder { + private Rerank rerank; + + public Builder(Rerank rerank) { + this.rerank = rerank; + } + + public Rerank build() { + return rerank; + } + + public Builder withInferenceId(Expression inferenceId) { + this.rerank = this.rerank.withInferenceId(inferenceId); + return this; + } + + public Builder withScoreAttribute(Attribute scoreAttribute) { + this.rerank = this.rerank.withScoreAttribute(scoreAttribute); + return this; + } } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java index 4570775af2ed1..ad852d0ac20db 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java @@ -26,7 +26,6 @@ import java.util.Objects; import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes; -import static org.elasticsearch.xpack.esql.plan.logical.inference.Rerank.planHasAttribute; public class RerankExec extends InferenceExec { @@ -39,6 +38,7 @@ public class RerankExec extends InferenceExec { private final Expression queryText; private final List rerankFields; private final Attribute scoreAttribute; + private List lazyOutput; public RerankExec( Source source, @@ -102,22 +102,15 @@ public UnaryExec replaceChild(PhysicalPlan newChild) { @Override public List output() { - if (planHasAttribute(child(), scoreAttribute)) { - return child().output(); + if (lazyOutput == null) { + lazyOutput = mergeOutputAttributes(List.of(scoreAttribute), child().output()); } - - return mergeOutputAttributes(List.of(scoreAttribute), child().output()); + return lazyOutput; } @Override protected AttributeSet computeReferences() { - AttributeSet.Builder refs = Rerank.computeReferences(rerankFields).asBuilder(); - - if (planHasAttribute(child(), scoreAttribute)) { - refs.add(scoreAttribute); - } - - return refs.build(); + return Rerank.computeReferences(rerankFields); } @Override diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index ca527b1e6c91a..281dd8f480831 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -543,17 +543,28 @@ private PhysicalOperation planEnrich(EnrichExec enrich, LocalExecutionPlannerCon private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerContext context) { PhysicalOperation source = plan(rerank.child(), context); - Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>(); - - for (var rerankField : rerank.rerankFields()) { - rerankFieldsEvaluatorSuppliers.put( - new ColumnInfoImpl(rerankField.name(), rerankField.dataType(), null), - EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout) - ); + EvalOperator.ExpressionEvaluator.Factory rowEncoderFactory; + if (rerank.rerankFields().size() > 1) { + // If there is more than one field used for reranking we are encoded the input in a YAML doc, using field names as key. + // The input value will looks like + // text_field: foo bar + // multivalue_text_field: + // - value 1 + // - value 2 + // integer_field: 132 + Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>(); + + for (var rerankField : rerank.rerankFields()) { + rerankFieldsEvaluatorSuppliers.put( + new ColumnInfoImpl(rerankField.name(), rerankField.dataType(), null), + EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout) + ); + } + rowEncoderFactory = XContentRowEncoder.yamlRowEncoderFactory(rerankFieldsEvaluatorSuppliers); + } else { + rowEncoderFactory = EvalMapper.toEvaluator(context.foldCtx(), rerank.rerankFields().get(0).child(), source.layout); } - XContentRowEncoder.Factory rowEncoderFactory = XContentRowEncoder.yamlRowEncoderFactory(rerankFieldsEvaluatorSuppliers); - String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx)); String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx)); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index f92a238b482dc..2bcd864d7f515 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -118,6 +118,7 @@ import static org.elasticsearch.xpack.esql.core.type.DataType.DATETIME; import static org.elasticsearch.xpack.esql.core.type.DataType.DATE_NANOS; import static org.elasticsearch.xpack.esql.core.type.DataType.DATE_PERIOD; +import static org.elasticsearch.xpack.esql.core.type.DataType.DOUBLE; import static org.elasticsearch.xpack.esql.core.type.DataType.LONG; import static org.elasticsearch.xpack.esql.core.type.DataType.UNSUPPORTED; import static org.elasticsearch.xpack.esql.type.EsqlDataTypeConverter.dateTimeToString; @@ -3240,7 +3241,7 @@ public void testResolveRerankInferenceId() { { LogicalPlan plan = analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `reranking-inference-id`", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH inferenceId=`reranking-inference-id`", "mapping-books.json" ); Rerank rerank = as(as(plan, Limit.class).child(), Rerank.class); @@ -3251,7 +3252,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `completion-inference-id`", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH inferenceId=`completion-inference-id`", "mapping-books.json" ) @@ -3269,7 +3270,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `error-inference-id`", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH inferenceId=`error-inference-id`", "mapping-books.json" ) @@ -3281,7 +3282,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `unknown-inference-id`", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH inferenceId=`unknown-inference-id`", "mapping-books.json" ) @@ -3300,7 +3301,7 @@ public void testResolveRerankFields() { | WHERE title:"italian food recipe" OR description:"italian food recipe" | KEEP description, title, year, _score | DROP description - | RERANK "italian food recipe" ON title WITH `reranking-inference-id` + | RERANK "italian food recipe" ON title WITH inferenceId=`reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3324,7 +3325,8 @@ public void testResolveRerankFields() { LogicalPlan plan = analyze(""" FROM books METADATA _score | WHERE title:"food" - | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH `reranking-inference-id` + | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year + WITH inferenceId=`reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3362,7 +3364,7 @@ public void testResolveRerankFields() { LogicalPlan plan = analyze(""" FROM books METADATA _score | WHERE title:"food" - | RERANK "food" ON title, SUBSTRING(description, 0, 100), yearRenamed=year WITH `reranking-inference-id` + | RERANK "food" ON title, SUBSTRING(description, 0, 100), yearRenamed=year WITH inferenceId=`reranking-inference-id` """, "mapping-books.json"); } catch (ParsingException ex) { assertThat( @@ -3376,7 +3378,7 @@ public void testResolveRerankFields() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH `reranking-inference-id`", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH inferenceId=`reranking-inference-id`", "mapping-books.json" ) @@ -3393,7 +3395,7 @@ public void testResolveRerankScoreField() { LogicalPlan plan = analyze(""" FROM books METADATA _score | WHERE title:"italian food recipe" OR description:"italian food recipe" - | RERANK "italian food recipe" ON title WITH `reranking-inference-id` + | RERANK "italian food recipe" ON title WITH inferenceId=`reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3411,7 +3413,7 @@ public void testResolveRerankScoreField() { LogicalPlan plan = analyze(""" FROM books | WHERE title:"italian food recipe" OR description:"italian food recipe" - | RERANK "italian food recipe" ON title WITH `reranking-inference-id` + | RERANK "italian food recipe" ON title WITH inferenceId=`reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3423,6 +3425,42 @@ public void testResolveRerankScoreField() { assertThat(rerank.scoreAttribute(), equalTo(MetadataAttribute.create(EMPTY, MetadataAttribute.SCORE))); assertThat(rerank.output(), hasItem(rerank.scoreAttribute())); } + + { + // When using a custom fields that does not exist + LogicalPlan plan = analyze(""" + FROM books METADATA _score + | WHERE title:"italian food recipe" OR description:"italian food recipe" + | RERANK "italian food recipe" ON title WITH inferenceId=`reranking-inference-id`, scoreColumn=rerank_score + """, "mapping-books.json"); + + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + + Attribute scoreAttribute = rerank.scoreAttribute(); + assertThat(scoreAttribute.name(), equalTo("rerank_score")); + assertThat(scoreAttribute.dataType(), equalTo(DOUBLE)); + assertThat(rerank.output(), hasItem(scoreAttribute)); + } + + { + // When using a custom fields that already exists + LogicalPlan plan = analyze(""" + FROM books METADATA _score + | WHERE title:"italian food recipe" OR description:"italian food recipe" + | EVAL rerank_score = _score + | RERANK "italian food recipe" ON title WITH inferenceId=`reranking-inference-id`, scoreColumn=rerank_score + """, "mapping-books.json"); + + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + + Attribute scoreAttribute = rerank.scoreAttribute(); + assertThat(scoreAttribute.name(), equalTo("rerank_score")); + assertThat(scoreAttribute.dataType(), equalTo(DOUBLE)); + assertThat(rerank.output(), hasItem(scoreAttribute)); + assertThat(rerank.child().output().stream().anyMatch(scoreAttribute::equals), is(true)); + } } public void testResolveCompletionInferenceId() { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java index 1ccc5ffe72324..2dd97d6811aab 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java @@ -98,9 +98,9 @@ import org.elasticsearch.xpack.esql.optimizer.rules.logical.OptimizerRules; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PruneRedundantOrderBy; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineLimits; -import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownCompletion; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval; +import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownInferencePlan; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownRegexExtract; import org.elasticsearch.xpack.esql.optimizer.rules.logical.SplitInWithFoldableValue; import org.elasticsearch.xpack.esql.parser.EsqlParser; @@ -124,6 +124,7 @@ import org.elasticsearch.xpack.esql.plan.logical.TopN; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; @@ -5588,8 +5589,20 @@ record PushdownShadowingGeneratingPlanTestCase( new Concat(EMPTY, randomLiteral(TEXT), List.of(attr)), new ReferenceAttribute(EMPTY, "y", KEYWORD) ), - new PushDownCompletion() - ) }; + new PushDownInferencePlan() + ), + // | RERANK "some text" ON x WITH inferenceID=inferenceID, scoreColumn=y + new PushdownShadowingGeneratingPlanTestCase( + (plan, attr) -> new Rerank( + EMPTY, + plan, + randomLiteral(TEXT), + randomLiteral(TEXT), + List.of(new Alias(EMPTY, attr.name(), attr)), + new ReferenceAttribute(EMPTY, "y", KEYWORD) + ), + new PushDownInferencePlan() + ), }; /** * Consider diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java index 3c3b9c405cb67..d9c5f8577d34c 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java @@ -14,6 +14,7 @@ import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.FieldAttribute; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.function.aggregate.Count; import org.elasticsearch.xpack.esql.expression.function.fulltext.Match; @@ -32,6 +33,7 @@ import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject; import java.util.ArrayList; @@ -252,8 +254,8 @@ public void testSelectivelyPushDownFilterPastFunctionAgg() { assertEquals(expected, new PushDownAndCombineFilters().apply(fb)); } - // from ... | where a > 1 | COMPLETION completion="some prompt" WITH reranker | where b < 2 and match(completion, some text) - // => ... | where a > 1 AND b < 2| COMPLETION completion="some prompt" WITH reranker | match(completion, some text) + // from ... | where a > 1 | COMPLETION completion="some prompt" WITH inferenceId | where b < 2 and match(completion, some text) + // => ... | where a > 1 AND b < 2| COMPLETION completion="some prompt" WITH inferenceId | where match(completion, some text) public void testPushDownFilterPastCompletion() { FieldAttribute a = getFieldAttribute("a"); FieldAttribute b = getFieldAttribute("b"); @@ -289,13 +291,57 @@ public void testPushDownFilterPastCompletion() { assertEquals(expectedOptimizedPlan, new PushDownAndCombineFilters().apply(filterB)); } + // from ... | where a > 1 | RERANK "query" ON title WITH inferenceId | where b < 2 and _score > 1 + // => ... | where a > 1 AND b < 2| RERANK "query" ON title WITH inferenceId | where _score > 1 + public void testPushDownFilterPastRerank() { + FieldAttribute a = getFieldAttribute("a"); + FieldAttribute b = getFieldAttribute("b"); + EsRelation relation = relation(List.of(a, b)); + + GreaterThan conditionA = greaterThanOf(getFieldAttribute("a"), ONE); + Filter filterA = new Filter(EMPTY, relation, conditionA); + + Rerank rerank = rerank(filterA); + + LessThan conditionB = lessThanOf(getFieldAttribute("b"), TWO); + GreaterThan scoreCondition = greaterThanOf(rerank.scoreAttribute(), ONE); + + Filter filterB = new Filter(EMPTY, rerank, new And(EMPTY, conditionB, scoreCondition)); + + LogicalPlan expectedOptimizedPlan = new Filter( + EMPTY, + new Rerank( + EMPTY, + new Filter(EMPTY, relation, new And(EMPTY, conditionA, conditionB)), + rerank.inferenceId(), + rerank.queryText(), + rerank.rerankFields(), + rerank.scoreAttribute() + ), + scoreCondition + ); + + assertEquals(expectedOptimizedPlan, new PushDownAndCombineFilters().apply(filterB)); + } + private static Completion completion(LogicalPlan child) { return new Completion( EMPTY, child, - randomLiteral(DataType.TEXT), - randomLiteral(DataType.TEXT), - referenceAttribute(randomIdentifier(), DataType.TEXT) + randomLiteral(DataType.KEYWORD), + randomLiteral(randomBoolean() ? DataType.TEXT : DataType.KEYWORD), + referenceAttribute(randomIdentifier(), DataType.KEYWORD) + ); + } + + private static Rerank rerank(LogicalPlan child) { + return new Rerank( + EMPTY, + child, + randomLiteral(DataType.KEYWORD), + randomLiteral(randomBoolean() ? DataType.TEXT : DataType.KEYWORD), + randomList(1, 10, () -> new Alias(EMPTY, randomIdentifier(), randomLiteral(DataType.KEYWORD))), + referenceAttribute(randomBoolean() ? MetadataAttribute.SCORE : randomIdentifier(), DataType.DOUBLE) ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java index 6e6ac5e0fa0a8..b1626e4b77ce8 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java @@ -24,6 +24,7 @@ import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import java.util.List; import java.util.function.BiConsumer; @@ -35,6 +36,7 @@ import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext; import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY; import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER; +import static org.elasticsearch.xpack.esql.core.type.DataType.KEYWORD; import static org.elasticsearch.xpack.esql.core.type.DataType.TEXT; import static org.elasticsearch.xpack.esql.optimizer.LocalLogicalPlanOptimizerTests.relation; @@ -75,13 +77,31 @@ public void checkOptimizedPlan(LogicalPlan basePlan, LogicalPlan optimizedPlan) ), new PushDownLimitTestCase<>( Completion.class, - (plan, attr) -> new Completion(EMPTY, plan, randomLiteral(TEXT), randomLiteral(TEXT), attr), + (plan, attr) -> new Completion(EMPTY, plan, randomLiteral(KEYWORD), randomLiteral(KEYWORD), attr), (basePlan, optimizedPlan) -> { assertEquals(basePlan.source(), optimizedPlan.source()); assertEquals(basePlan.inferenceId(), optimizedPlan.inferenceId()); assertEquals(basePlan.prompt(), optimizedPlan.prompt()); assertEquals(basePlan.targetField(), optimizedPlan.targetField()); } + ), + new PushDownLimitTestCase<>( + Rerank.class, + (plan, attr) -> new Rerank( + EMPTY, + plan, + randomLiteral(KEYWORD), + randomLiteral(KEYWORD), + randomList(1, 10, () -> new Alias(EMPTY, randomIdentifier(), randomLiteral(KEYWORD))), + attr + ), + (basePlan, optimizedPlan) -> { + assertEquals(basePlan.source(), optimizedPlan.source()); + assertEquals(basePlan.inferenceId(), optimizedPlan.inferenceId()); + assertEquals(basePlan.queryText(), optimizedPlan.queryText()); + assertEquals(basePlan.rerankFields(), optimizedPlan.rerankFields()); + assertEquals(basePlan.scoreAttribute(), optimizedPlan.scoreAttribute()); + } ) ); 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 9fc9d118474de..23c4256a6b743 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 @@ -3314,13 +3314,74 @@ public void testInvalidJoinPatterns() { } } - public void testRerankDefaultInferenceId() { + public void testRerankDefaultInferenceIdAndScoreAttribute() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); var plan = processingCommand("RERANK \"query text\" ON title"); var rerank = as(plan, Rerank.class); assertThat(rerank.inferenceId(), equalTo(literalString(".rerank-v1-elasticsearch"))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testRerankInferenceId() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceId=inferenceId"); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceId"))); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); + } + + public void testRerankQuotedInferenceId() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceId=\"inferenceId\""); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceId"))); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); + } + + public void testRerankScoreAttribute() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH scoreColumn=rerank_score"); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.inferenceId(), equalTo(literalString(".rerank-v1-elasticsearch"))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("rerank_score"))); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testRerankQuotedScoreAttribute() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH scoreColumn=\"rerank_score\""); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.inferenceId(), equalTo(literalString(".rerank-v1-elasticsearch"))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("rerank_score"))); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testRerankInferenceIdAnddScoreAttribute() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceId=inferenceId, scoreColumn=rerank_score"); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceId"))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("rerank_score"))); assertThat(rerank.queryText(), equalTo(literalString("query text"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); } @@ -3328,18 +3389,19 @@ public void testRerankDefaultInferenceId() { public void testRerankSingleField() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceID"); + var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceId=inferenceID"); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); } public void testRerankMultipleFields() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH inferenceID"); + var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH inferenceId=inferenceID"); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); @@ -3354,12 +3416,15 @@ public void testRerankMultipleFields() { ) ) ); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); } public void testRerankComputedFields() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand("RERANK \"query text\" ON title, short_description = SUBSTRING(description, 0, 100) WITH inferenceID"); + var plan = processingCommand( + "RERANK \"query text\" ON title, short_description = SUBSTRING(description, 0, 100) WITH inferenceId=inferenceID" + ); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); @@ -3373,24 +3438,43 @@ public void testRerankComputedFields() { ) ) ); + assertThat(rerank.scoreAttribute(), equalTo(attribute("_score"))); } public void testRerankWithPositionalParameters() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var queryParams = new QueryParams(List.of(paramAsConstant(null, "query text"), paramAsConstant(null, "reranker"))); - var rerank = as(parser.createStatement("row a = 1 | RERANK ? ON title WITH ?", queryParams), Rerank.class); + var queryParams = new QueryParams( + List.of(paramAsConstant(null, "query text"), paramAsConstant(null, "reranker"), paramAsConstant(null, "rerank_score")) + ); + var rerank = as( + parser.createStatement("row a = 1 | RERANK ? ON title WITH inferenceId=?, scoreColumn=? ", queryParams), + Rerank.class + ); assertThat(rerank.queryText(), equalTo(literalString("query text"))); assertThat(rerank.inferenceId(), equalTo(literalString("reranker"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + assertThat(rerank.scoreAttribute(), equalTo(attribute("rerank_score"))); } public void testRerankWithNamedParameters() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var queryParams = new QueryParams(List.of(paramAsConstant("queryText", "query text"), paramAsConstant("inferenceId", "reranker"))); - var rerank = as(parser.createStatement("row a = 1 | RERANK ?queryText ON title WITH ?inferenceId", queryParams), Rerank.class); + var queryParams = new QueryParams( + List.of( + paramAsConstant("queryText", "query text"), + paramAsConstant("inferenceId", "reranker"), + paramAsConstant("scoreColumnName", "rerank_score") + ) + ); + var rerank = as( + parser.createStatement( + "row a = 1 | RERANK ?queryText ON title WITH inferenceId=?inferenceId, scoreColumn=?scoreColumnName", + queryParams + ), + Rerank.class + ); assertThat(rerank.queryText(), equalTo(literalString("query text"))); assertThat(rerank.inferenceId(), equalTo(literalString("reranker"))); @@ -3401,6 +3485,12 @@ public void testInvalidRerank() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); expectError("FROM foo* | RERANK ON title WITH inferenceId", "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING"); expectError("FROM foo* | RERANK \"query text\" WITH inferenceId", "line 1:33: mismatched input 'WITH' expecting 'on'"); + + var fromPatterns = randomIndexPatterns(CROSS_CLUSTER); + expectError( + "FROM " + fromPatterns + " | RERANK \"query text\" ON title WITH inferenceId=inferenceId", + "invalid index pattern [" + unquoteIndexPattern(fromPatterns) + "], remote clusters are not supported with RERANK" + ); } public void testCompletionUsingFieldAsPrompt() {