diff --git a/docs/changelog/145225.yaml b/docs/changelog/145225.yaml new file mode 100644 index 0000000000000..a7cb3d25bfed6 --- /dev/null +++ b/docs/changelog/145225.yaml @@ -0,0 +1,6 @@ +area: ES|QL +issues: + - 112918 +pr: 145225 +summary: Adds LIMIT BY ESQL command in Tech Preview +type: enhancement diff --git a/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitBy.md b/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitBy.md new file mode 100644 index 0000000000000..699e9c2a3c395 --- /dev/null +++ b/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitBy.md @@ -0,0 +1,14 @@ +% This is generated by ESQL's CommandDocsTests. Do not edit it. See ../README.md for how to regenerate it. + +```esql +FROM employees +| SORT salary DESC +| LIMIT 1 BY gender +| KEEP first_name, last_name, salary, gender +``` + +| first_name:keyword | last_name:keyword | salary:integer | gender:keyword | +| --- | --- | --- | --- | +| Otmar | Herbst | 74999 | M | +| Tzvetan | Zielinski | 74572 | F | +| Lillian | Haddadi | 73717 | null | diff --git a/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitByMultipleGroups.md b/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitByMultipleGroups.md new file mode 100644 index 0000000000000..0e39aaf6d0c04 --- /dev/null +++ b/docs/reference/query-languages/esql/_snippets/commands/examples/limit.csv-spec/limitByMultipleGroups.md @@ -0,0 +1,7 @@ +% This is generated by ESQL's CommandDocsTests. Do not edit it. See ../README.md for how to regenerate it. + +```esql +FROM employees +| SORT salary DESC +| LIMIT 1 BY languages, gender +``` diff --git a/docs/reference/query-languages/esql/_snippets/commands/layout/limit.md b/docs/reference/query-languages/esql/_snippets/commands/layout/limit.md index 267eeea22c7d9..5ee84fbbcea0a 100644 --- a/docs/reference/query-languages/esql/_snippets/commands/layout/limit.md +++ b/docs/reference/query-languages/esql/_snippets/commands/layout/limit.md @@ -7,23 +7,62 @@ The `LIMIT` processing command limits the number of rows returned. ## Syntax +::::{applies-switch} + +:::{applies-item} { stack: ga, "serverless": "ga"} ```esql LIMIT max_number_of_rows ``` +::: + +:::{applies-item} { "stack": "preview 9.4+", "serverless": "preview" } +```esql +LIMIT max_number_of_rows [BY grouping_expr1[, ..., grouping_exprN]] +``` +::: +:::: ## Parameters `max_number_of_rows` -: The maximum number of rows to return. +: The maximum number of rows to return. When `BY` is specified, the maximum +number of rows to return **per group**. + +`grouping_exprX` {applies_to}`serverless: preview` {applies_to}`stack: preview 9.4+` +: An expression that outputs the values to group by. ## Description Use the `LIMIT` processing command to limit the number of rows returned. +When `BY` is specified, up to `max_number_of_rows` rows are retained for each +distinct combination of the grouping expressions. +Precede `LIMIT BY` with a `SORT` to keep the top N for each group. + :::{include} ../../common/result-set-size-limitation.md ::: -## Example +## Examples + +### Limit :::{include} ../examples/limit.csv-spec/basic.md ::: + +### With groups +```{applies_to} +stack: preview 9.4 +serverless: preview +``` + +:::{include} ../examples/limit.csv-spec/limitBy.md +::: + +### Group by multiple values +```{applies_to} +stack: preview 9.4 +serverless: preview +``` + +:::{include} ../examples/limit.csv-spec/limitByMultipleGroups.md +::: diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/limit.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/limit.csv-spec index e6dae15567f5d..31f72490214b2 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/limit.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/limit.csv-spec @@ -19,6 +19,56 @@ emp_no:integer // LIMIT BY // +docsLimitBy +required_capability: esql_limit_by + +// tag::limitBy[] +FROM employees +| SORT salary DESC +| LIMIT 1 BY gender +| KEEP first_name, last_name, salary, gender +// end::limitBy[] +; + +// tag::limitBy-result[] +first_name:keyword | last_name:keyword | salary:integer | gender:keyword +Otmar | Herbst | 74999 | M +Tzvetan | Zielinski | 74572 | F +Lillian | Haddadi | 73717 | null +// end::limitBy-result[] +; + +docsLimitByMultipleGroups +required_capability: esql_limit_by + +// tag::limitByMultipleGroups[] +FROM employees +| SORT salary DESC +| LIMIT 1 BY languages, gender +// end::limitByMultipleGroups[] +| SORT languages DESC NULLS LAST, gender DESC NULLS LAST, salary DESC +| KEEP first_name, last_name, salary, languages, gender +; + +first_name:keyword | last_name:keyword | salary:integer | languages:integer | gender:keyword +Premal | Baek | 52833 | 5 | M +Arumugam | Ossenbruggen | 66817 | 5 | F +Patricio | Bridgland | 48942 | 5 | null +Mayumi | Schueller | 65367 | 4 | M +Tzvetan | Zielinski | 74572 | 4 | F +Duangkaew | Piveteau | 45797 | 4 | null +Moss | Shanbhogue | 74970 | 3 | M +Erez | Ritzmann | 62405 | 3 | F +Georgi | Facello | 57305 | 2 | M +Valter | Sullins | 73578 | 2 | F +Kazuhito | Cappelletti | 61358 | 2 | null +null | Merlo | 70011 | 1 | M +Sumant | Peac | 66174 | 1 | F +Lillian | Haddadi | 73717 | 1 | null +Otmar | Herbst | 74999 | null | M +Divier | Reistad | 73851 | null | F +; + limitBy required_capability: esql_limit_by @@ -354,6 +404,7 @@ Mayumi | Schueller | 65367 | 4 | M sortLimitByQualifiedName required_capability: esql_topn_by +required_capability: name_qualifiers FROM employees | SORT salary DESC diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 0ede7d409c748..acd77a2b29588 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -226,7 +226,7 @@ limitCommand ; limitByGroupKey: - {this.isDevVersion()}? BY booleanExpression (COMMA booleanExpression)* + BY booleanExpression (COMMA booleanExpression)* ; sortCommand diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java index dda2ca9181125..2e1c7e440b0ac 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java @@ -2351,12 +2351,12 @@ public enum Cap { * Enables the feature LIMIT n BY expr1, expr2 for retaining at most n docs per group. * The feature will not work if we had SORT | LIMIT n BY */ - ESQL_LIMIT_BY(Build.current().isSnapshot()), + ESQL_LIMIT_BY, /** * Enables the SORT | LIMIT n BY expr1, expr2 support, see ESQL_LIMIT_BY for more context */ - ESQL_TOPN_BY(Build.current().isSnapshot()), + ESQL_TOPN_BY, /** * Corrects a bug with ENRICH when a shard does not contain an index field and we use LIMIT BY on top 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 b8f83fa43a734..3eee17dce6eff 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 @@ -461,4 +461,4 @@ promqlIndexString atn: -[4, 1, 169, 1168, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 1, 0, 5, 0, 232, 8, 0, 10, 0, 12, 0, 235, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 249, 8, 2, 10, 2, 12, 2, 252, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 263, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 295, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 308, 8, 8, 10, 8, 12, 8, 311, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 316, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 333, 8, 13, 10, 13, 12, 13, 336, 9, 13, 1, 13, 3, 13, 339, 8, 13, 1, 14, 1, 14, 3, 14, 343, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 349, 8, 15, 10, 15, 12, 15, 352, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 364, 8, 16, 1, 16, 3, 16, 367, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 381, 8, 21, 10, 21, 12, 21, 384, 9, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 391, 8, 23, 1, 23, 1, 23, 3, 23, 395, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 400, 8, 24, 10, 24, 12, 24, 403, 9, 24, 1, 25, 1, 25, 1, 25, 3, 25, 408, 8, 25, 1, 26, 1, 26, 1, 26, 3, 26, 413, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 422, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 427, 8, 27, 10, 27, 12, 27, 430, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 435, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 444, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 449, 8, 29, 10, 29, 12, 29, 452, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 457, 8, 30, 10, 30, 12, 30, 460, 9, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 33, 1, 33, 3, 33, 471, 8, 33, 1, 34, 1, 34, 3, 34, 475, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 480, 8, 35, 1, 36, 1, 36, 3, 36, 484, 8, 36, 1, 37, 1, 37, 1, 37, 3, 37, 489, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 496, 8, 38, 10, 38, 12, 38, 499, 9, 38, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 505, 8, 39, 10, 39, 12, 39, 508, 9, 39, 1, 40, 1, 40, 3, 40, 512, 8, 40, 1, 40, 1, 40, 3, 40, 516, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 528, 8, 43, 10, 43, 12, 43, 531, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 541, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 547, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 552, 8, 46, 10, 46, 12, 46, 555, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 563, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 570, 8, 49, 10, 49, 12, 49, 573, 9, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 592, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 598, 8, 54, 10, 54, 12, 54, 601, 9, 54, 3, 54, 603, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 610, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 620, 8, 58, 10, 58, 12, 58, 623, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 632, 8, 59, 1, 60, 1, 60, 1, 60, 1, 61, 4, 61, 638, 8, 61, 11, 61, 12, 61, 639, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 652, 8, 63, 10, 63, 12, 63, 655, 9, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 663, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 674, 8, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 684, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 690, 8, 67, 3, 67, 692, 8, 67, 1, 68, 1, 68, 3, 68, 696, 8, 68, 1, 68, 5, 68, 699, 8, 68, 10, 68, 12, 68, 702, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 715, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 720, 8, 70, 10, 70, 12, 70, 723, 9, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 761, 8, 79, 1, 80, 1, 80, 3, 80, 765, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 775, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 784, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 791, 8, 82, 10, 82, 12, 82, 794, 9, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 801, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 806, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 814, 8, 82, 10, 82, 12, 82, 817, 9, 82, 1, 83, 1, 83, 3, 83, 821, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 828, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 835, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 842, 8, 83, 10, 83, 12, 83, 845, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 851, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 858, 8, 83, 10, 83, 12, 83, 861, 9, 83, 1, 83, 1, 83, 3, 83, 865, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 870, 8, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 880, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 886, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 894, 8, 86, 10, 86, 12, 86, 897, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 907, 8, 87, 1, 87, 1, 87, 1, 87, 5, 87, 912, 8, 87, 10, 87, 12, 87, 915, 9, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 923, 8, 88, 10, 88, 12, 88, 926, 9, 88, 1, 88, 1, 88, 3, 88, 930, 8, 88, 3, 88, 932, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 939, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 945, 8, 90, 10, 90, 12, 90, 948, 9, 90, 3, 90, 950, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 960, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 975, 8, 93, 10, 93, 12, 93, 978, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 986, 8, 93, 10, 93, 12, 93, 989, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 997, 8, 93, 10, 93, 12, 93, 1000, 9, 93, 1, 93, 1, 93, 3, 93, 1004, 8, 93, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 1010, 8, 95, 1, 96, 3, 96, 1013, 8, 96, 1, 96, 1, 96, 1, 97, 3, 97, 1018, 8, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 3, 101, 1034, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1039, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1045, 8, 102, 10, 102, 12, 102, 1048, 9, 102, 1, 103, 1, 103, 5, 103, 1052, 8, 103, 10, 103, 12, 103, 1055, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1060, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1067, 8, 103, 10, 103, 12, 103, 1070, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1075, 8, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1080, 8, 103, 10, 103, 12, 103, 1083, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1088, 8, 103, 1, 103, 1, 103, 4, 103, 1092, 8, 103, 11, 103, 12, 103, 1093, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1100, 8, 103, 10, 103, 12, 103, 1103, 9, 103, 1, 103, 4, 103, 1106, 8, 103, 11, 103, 12, 103, 1107, 3, 103, 1110, 8, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 1123, 8, 107, 10, 107, 12, 107, 1126, 9, 107, 1, 107, 1, 107, 3, 107, 1130, 8, 107, 1, 108, 1, 108, 1, 109, 4, 109, 1135, 8, 109, 11, 109, 12, 109, 1136, 1, 109, 1, 109, 5, 109, 1141, 8, 109, 10, 109, 12, 109, 1144, 9, 109, 1, 109, 3, 109, 1147, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1158, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 0, 5, 4, 126, 164, 172, 174, 115, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 0, 14, 2, 0, 59, 59, 114, 114, 1, 0, 108, 109, 2, 0, 63, 63, 70, 70, 2, 0, 73, 73, 76, 76, 2, 0, 48, 48, 59, 59, 1, 0, 94, 95, 1, 0, 96, 98, 2, 0, 72, 72, 85, 85, 2, 0, 87, 87, 89, 93, 2, 0, 30, 30, 32, 33, 3, 0, 59, 59, 102, 102, 108, 109, 8, 0, 59, 59, 64, 64, 66, 67, 69, 69, 102, 102, 108, 109, 114, 114, 156, 158, 2, 0, 108, 108, 114, 114, 3, 0, 59, 59, 108, 108, 114, 114, 1223, 0, 233, 1, 0, 0, 0, 2, 239, 1, 0, 0, 0, 4, 242, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 8, 294, 1, 0, 0, 0, 10, 296, 1, 0, 0, 0, 12, 299, 1, 0, 0, 0, 14, 301, 1, 0, 0, 0, 16, 304, 1, 0, 0, 0, 18, 315, 1, 0, 0, 0, 20, 319, 1, 0, 0, 0, 22, 322, 1, 0, 0, 0, 24, 325, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 342, 1, 0, 0, 0, 30, 344, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 368, 1, 0, 0, 0, 36, 370, 1, 0, 0, 0, 38, 372, 1, 0, 0, 0, 40, 374, 1, 0, 0, 0, 42, 376, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 388, 1, 0, 0, 0, 48, 396, 1, 0, 0, 0, 50, 404, 1, 0, 0, 0, 52, 421, 1, 0, 0, 0, 54, 423, 1, 0, 0, 0, 56, 443, 1, 0, 0, 0, 58, 445, 1, 0, 0, 0, 60, 453, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 466, 1, 0, 0, 0, 66, 470, 1, 0, 0, 0, 68, 474, 1, 0, 0, 0, 70, 479, 1, 0, 0, 0, 72, 483, 1, 0, 0, 0, 74, 485, 1, 0, 0, 0, 76, 490, 1, 0, 0, 0, 78, 500, 1, 0, 0, 0, 80, 509, 1, 0, 0, 0, 82, 517, 1, 0, 0, 0, 84, 520, 1, 0, 0, 0, 86, 523, 1, 0, 0, 0, 88, 540, 1, 0, 0, 0, 90, 542, 1, 0, 0, 0, 92, 548, 1, 0, 0, 0, 94, 556, 1, 0, 0, 0, 96, 562, 1, 0, 0, 0, 98, 564, 1, 0, 0, 0, 100, 574, 1, 0, 0, 0, 102, 577, 1, 0, 0, 0, 104, 580, 1, 0, 0, 0, 106, 584, 1, 0, 0, 0, 108, 587, 1, 0, 0, 0, 110, 604, 1, 0, 0, 0, 112, 609, 1, 0, 0, 0, 114, 613, 1, 0, 0, 0, 116, 616, 1, 0, 0, 0, 118, 631, 1, 0, 0, 0, 120, 633, 1, 0, 0, 0, 122, 637, 1, 0, 0, 0, 124, 641, 1, 0, 0, 0, 126, 645, 1, 0, 0, 0, 128, 656, 1, 0, 0, 0, 130, 658, 1, 0, 0, 0, 132, 669, 1, 0, 0, 0, 134, 691, 1, 0, 0, 0, 136, 693, 1, 0, 0, 0, 138, 714, 1, 0, 0, 0, 140, 716, 1, 0, 0, 0, 142, 724, 1, 0, 0, 0, 144, 726, 1, 0, 0, 0, 146, 728, 1, 0, 0, 0, 148, 733, 1, 0, 0, 0, 150, 736, 1, 0, 0, 0, 152, 741, 1, 0, 0, 0, 154, 746, 1, 0, 0, 0, 156, 752, 1, 0, 0, 0, 158, 756, 1, 0, 0, 0, 160, 762, 1, 0, 0, 0, 162, 774, 1, 0, 0, 0, 164, 805, 1, 0, 0, 0, 166, 864, 1, 0, 0, 0, 168, 866, 1, 0, 0, 0, 170, 879, 1, 0, 0, 0, 172, 885, 1, 0, 0, 0, 174, 906, 1, 0, 0, 0, 176, 916, 1, 0, 0, 0, 178, 938, 1, 0, 0, 0, 180, 940, 1, 0, 0, 0, 182, 953, 1, 0, 0, 0, 184, 959, 1, 0, 0, 0, 186, 1003, 1, 0, 0, 0, 188, 1005, 1, 0, 0, 0, 190, 1009, 1, 0, 0, 0, 192, 1012, 1, 0, 0, 0, 194, 1017, 1, 0, 0, 0, 196, 1021, 1, 0, 0, 0, 198, 1023, 1, 0, 0, 0, 200, 1025, 1, 0, 0, 0, 202, 1038, 1, 0, 0, 0, 204, 1040, 1, 0, 0, 0, 206, 1109, 1, 0, 0, 0, 208, 1111, 1, 0, 0, 0, 210, 1113, 1, 0, 0, 0, 212, 1117, 1, 0, 0, 0, 214, 1129, 1, 0, 0, 0, 216, 1131, 1, 0, 0, 0, 218, 1146, 1, 0, 0, 0, 220, 1157, 1, 0, 0, 0, 222, 1159, 1, 0, 0, 0, 224, 1161, 1, 0, 0, 0, 226, 1163, 1, 0, 0, 0, 228, 1165, 1, 0, 0, 0, 230, 232, 3, 156, 78, 0, 231, 230, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 236, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 2, 1, 0, 237, 238, 5, 0, 0, 1, 238, 1, 1, 0, 0, 0, 239, 240, 3, 4, 2, 0, 240, 241, 5, 0, 0, 1, 241, 3, 1, 0, 0, 0, 242, 243, 6, 2, -1, 0, 243, 244, 3, 6, 3, 0, 244, 250, 1, 0, 0, 0, 245, 246, 10, 1, 0, 0, 246, 247, 5, 58, 0, 0, 247, 249, 3, 8, 4, 0, 248, 245, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 5, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 263, 3, 20, 10, 0, 254, 263, 3, 14, 7, 0, 255, 263, 3, 106, 53, 0, 256, 263, 3, 22, 11, 0, 257, 263, 3, 206, 103, 0, 258, 259, 4, 3, 1, 0, 259, 263, 3, 102, 51, 0, 260, 261, 4, 3, 2, 0, 261, 263, 3, 24, 12, 0, 262, 253, 1, 0, 0, 0, 262, 254, 1, 0, 0, 0, 262, 255, 1, 0, 0, 0, 262, 256, 1, 0, 0, 0, 262, 257, 1, 0, 0, 0, 262, 258, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, 263, 7, 1, 0, 0, 0, 264, 295, 3, 44, 22, 0, 265, 295, 3, 10, 5, 0, 266, 295, 3, 82, 41, 0, 267, 295, 3, 74, 37, 0, 268, 295, 3, 46, 23, 0, 269, 295, 3, 78, 39, 0, 270, 295, 3, 84, 42, 0, 271, 295, 3, 86, 43, 0, 272, 295, 3, 90, 45, 0, 273, 295, 3, 98, 49, 0, 274, 295, 3, 108, 54, 0, 275, 295, 3, 100, 50, 0, 276, 295, 3, 200, 100, 0, 277, 295, 3, 116, 58, 0, 278, 295, 3, 132, 66, 0, 279, 295, 3, 114, 57, 0, 280, 295, 3, 120, 60, 0, 281, 295, 3, 130, 65, 0, 282, 295, 3, 134, 67, 0, 283, 295, 3, 136, 68, 0, 284, 295, 3, 150, 75, 0, 285, 295, 3, 142, 71, 0, 286, 295, 3, 152, 76, 0, 287, 295, 3, 144, 72, 0, 288, 295, 3, 154, 77, 0, 289, 295, 3, 160, 80, 0, 290, 291, 4, 4, 3, 0, 291, 295, 3, 146, 73, 0, 292, 293, 4, 4, 4, 0, 293, 295, 3, 148, 74, 0, 294, 264, 1, 0, 0, 0, 294, 265, 1, 0, 0, 0, 294, 266, 1, 0, 0, 0, 294, 267, 1, 0, 0, 0, 294, 268, 1, 0, 0, 0, 294, 269, 1, 0, 0, 0, 294, 270, 1, 0, 0, 0, 294, 271, 1, 0, 0, 0, 294, 272, 1, 0, 0, 0, 294, 273, 1, 0, 0, 0, 294, 274, 1, 0, 0, 0, 294, 275, 1, 0, 0, 0, 294, 276, 1, 0, 0, 0, 294, 277, 1, 0, 0, 0, 294, 278, 1, 0, 0, 0, 294, 279, 1, 0, 0, 0, 294, 280, 1, 0, 0, 0, 294, 281, 1, 0, 0, 0, 294, 282, 1, 0, 0, 0, 294, 283, 1, 0, 0, 0, 294, 284, 1, 0, 0, 0, 294, 285, 1, 0, 0, 0, 294, 286, 1, 0, 0, 0, 294, 287, 1, 0, 0, 0, 294, 288, 1, 0, 0, 0, 294, 289, 1, 0, 0, 0, 294, 290, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 9, 1, 0, 0, 0, 296, 297, 5, 17, 0, 0, 297, 298, 3, 164, 82, 0, 298, 11, 1, 0, 0, 0, 299, 300, 3, 62, 31, 0, 300, 13, 1, 0, 0, 0, 301, 302, 5, 13, 0, 0, 302, 303, 3, 16, 8, 0, 303, 15, 1, 0, 0, 0, 304, 309, 3, 18, 9, 0, 305, 306, 5, 69, 0, 0, 306, 308, 3, 18, 9, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 17, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 3, 52, 26, 0, 313, 314, 5, 64, 0, 0, 314, 316, 1, 0, 0, 0, 315, 312, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 3, 164, 82, 0, 318, 19, 1, 0, 0, 0, 319, 320, 5, 23, 0, 0, 320, 321, 3, 26, 13, 0, 321, 21, 1, 0, 0, 0, 322, 323, 5, 24, 0, 0, 323, 324, 3, 26, 13, 0, 324, 23, 1, 0, 0, 0, 325, 326, 5, 25, 0, 0, 326, 327, 3, 72, 36, 0, 327, 328, 3, 96, 48, 0, 328, 25, 1, 0, 0, 0, 329, 334, 3, 28, 14, 0, 330, 331, 5, 69, 0, 0, 331, 333, 3, 28, 14, 0, 332, 330, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 337, 339, 3, 42, 21, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 27, 1, 0, 0, 0, 340, 343, 3, 32, 16, 0, 341, 343, 3, 30, 15, 0, 342, 340, 1, 0, 0, 0, 342, 341, 1, 0, 0, 0, 343, 29, 1, 0, 0, 0, 344, 345, 5, 106, 0, 0, 345, 350, 3, 20, 10, 0, 346, 347, 5, 58, 0, 0, 347, 349, 3, 8, 4, 0, 348, 346, 1, 0, 0, 0, 349, 352, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 353, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 353, 354, 5, 107, 0, 0, 354, 31, 1, 0, 0, 0, 355, 356, 3, 34, 17, 0, 356, 357, 5, 67, 0, 0, 357, 359, 1, 0, 0, 0, 358, 355, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 363, 3, 38, 19, 0, 361, 362, 5, 66, 0, 0, 362, 364, 3, 36, 18, 0, 363, 361, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 367, 1, 0, 0, 0, 365, 367, 3, 40, 20, 0, 366, 358, 1, 0, 0, 0, 366, 365, 1, 0, 0, 0, 367, 33, 1, 0, 0, 0, 368, 369, 5, 114, 0, 0, 369, 35, 1, 0, 0, 0, 370, 371, 5, 114, 0, 0, 371, 37, 1, 0, 0, 0, 372, 373, 5, 114, 0, 0, 373, 39, 1, 0, 0, 0, 374, 375, 7, 0, 0, 0, 375, 41, 1, 0, 0, 0, 376, 377, 5, 113, 0, 0, 377, 382, 5, 114, 0, 0, 378, 379, 5, 69, 0, 0, 379, 381, 5, 114, 0, 0, 380, 378, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 43, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 16, 8, 0, 387, 45, 1, 0, 0, 0, 388, 390, 5, 16, 0, 0, 389, 391, 3, 48, 24, 0, 390, 389, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 394, 1, 0, 0, 0, 392, 393, 5, 65, 0, 0, 393, 395, 3, 16, 8, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 47, 1, 0, 0, 0, 396, 401, 3, 50, 25, 0, 397, 398, 5, 69, 0, 0, 398, 400, 3, 50, 25, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 49, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 407, 3, 18, 9, 0, 405, 406, 5, 17, 0, 0, 406, 408, 3, 164, 82, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 51, 1, 0, 0, 0, 409, 410, 4, 26, 5, 0, 410, 412, 5, 104, 0, 0, 411, 413, 5, 108, 0, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 5, 105, 0, 0, 415, 416, 5, 71, 0, 0, 416, 417, 5, 104, 0, 0, 417, 418, 3, 54, 27, 0, 418, 419, 5, 105, 0, 0, 419, 422, 1, 0, 0, 0, 420, 422, 3, 54, 27, 0, 421, 409, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 428, 3, 70, 35, 0, 424, 425, 5, 71, 0, 0, 425, 427, 3, 70, 35, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 55, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 432, 4, 28, 6, 0, 432, 434, 5, 104, 0, 0, 433, 435, 5, 149, 0, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 5, 105, 0, 0, 437, 438, 5, 71, 0, 0, 438, 439, 5, 104, 0, 0, 439, 440, 3, 58, 29, 0, 440, 441, 5, 105, 0, 0, 441, 444, 1, 0, 0, 0, 442, 444, 3, 58, 29, 0, 443, 431, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 57, 1, 0, 0, 0, 445, 450, 3, 64, 32, 0, 446, 447, 5, 71, 0, 0, 447, 449, 3, 64, 32, 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, 59, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 453, 458, 3, 56, 28, 0, 454, 455, 5, 69, 0, 0, 455, 457, 3, 56, 28, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 61, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 7, 1, 0, 0, 462, 63, 1, 0, 0, 0, 463, 467, 5, 149, 0, 0, 464, 467, 3, 66, 33, 0, 465, 467, 3, 68, 34, 0, 466, 463, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 465, 1, 0, 0, 0, 467, 65, 1, 0, 0, 0, 468, 471, 5, 83, 0, 0, 469, 471, 5, 102, 0, 0, 470, 468, 1, 0, 0, 0, 470, 469, 1, 0, 0, 0, 471, 67, 1, 0, 0, 0, 472, 475, 5, 101, 0, 0, 473, 475, 5, 103, 0, 0, 474, 472, 1, 0, 0, 0, 474, 473, 1, 0, 0, 0, 475, 69, 1, 0, 0, 0, 476, 480, 3, 62, 31, 0, 477, 480, 3, 66, 33, 0, 478, 480, 3, 68, 34, 0, 479, 476, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 71, 1, 0, 0, 0, 481, 484, 3, 196, 98, 0, 482, 484, 3, 66, 33, 0, 483, 481, 1, 0, 0, 0, 483, 482, 1, 0, 0, 0, 484, 73, 1, 0, 0, 0, 485, 486, 5, 11, 0, 0, 486, 488, 3, 186, 93, 0, 487, 489, 3, 76, 38, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 75, 1, 0, 0, 0, 490, 491, 4, 38, 7, 0, 491, 492, 5, 65, 0, 0, 492, 497, 3, 164, 82, 0, 493, 494, 5, 69, 0, 0, 494, 496, 3, 164, 82, 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, 77, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 501, 5, 15, 0, 0, 501, 506, 3, 80, 40, 0, 502, 503, 5, 69, 0, 0, 503, 505, 3, 80, 40, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 79, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 511, 3, 164, 82, 0, 510, 512, 7, 2, 0, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 515, 1, 0, 0, 0, 513, 514, 5, 80, 0, 0, 514, 516, 7, 3, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 81, 1, 0, 0, 0, 517, 518, 5, 38, 0, 0, 518, 519, 3, 60, 30, 0, 519, 83, 1, 0, 0, 0, 520, 521, 5, 37, 0, 0, 521, 522, 3, 60, 30, 0, 522, 85, 1, 0, 0, 0, 523, 524, 5, 41, 0, 0, 524, 529, 3, 88, 44, 0, 525, 526, 5, 69, 0, 0, 526, 528, 3, 88, 44, 0, 527, 525, 1, 0, 0, 0, 528, 531, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 87, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 532, 533, 3, 56, 28, 0, 533, 534, 5, 159, 0, 0, 534, 535, 3, 56, 28, 0, 535, 541, 1, 0, 0, 0, 536, 537, 3, 56, 28, 0, 537, 538, 5, 64, 0, 0, 538, 539, 3, 56, 28, 0, 539, 541, 1, 0, 0, 0, 540, 532, 1, 0, 0, 0, 540, 536, 1, 0, 0, 0, 541, 89, 1, 0, 0, 0, 542, 543, 5, 8, 0, 0, 543, 544, 3, 174, 87, 0, 544, 546, 3, 196, 98, 0, 545, 547, 3, 92, 46, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 91, 1, 0, 0, 0, 548, 553, 3, 94, 47, 0, 549, 550, 5, 69, 0, 0, 550, 552, 3, 94, 47, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 93, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 3, 62, 31, 0, 557, 558, 5, 64, 0, 0, 558, 559, 3, 186, 93, 0, 559, 95, 1, 0, 0, 0, 560, 561, 5, 86, 0, 0, 561, 563, 3, 180, 90, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 97, 1, 0, 0, 0, 564, 565, 5, 10, 0, 0, 565, 566, 3, 174, 87, 0, 566, 571, 3, 196, 98, 0, 567, 568, 5, 69, 0, 0, 568, 570, 3, 196, 98, 0, 569, 567, 1, 0, 0, 0, 570, 573, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 99, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 574, 575, 5, 36, 0, 0, 575, 576, 3, 52, 26, 0, 576, 101, 1, 0, 0, 0, 577, 578, 5, 6, 0, 0, 578, 579, 3, 104, 52, 0, 579, 103, 1, 0, 0, 0, 580, 581, 5, 106, 0, 0, 581, 582, 3, 4, 2, 0, 582, 583, 5, 107, 0, 0, 583, 105, 1, 0, 0, 0, 584, 585, 5, 43, 0, 0, 585, 586, 5, 166, 0, 0, 586, 107, 1, 0, 0, 0, 587, 588, 5, 5, 0, 0, 588, 591, 3, 110, 55, 0, 589, 590, 5, 81, 0, 0, 590, 592, 3, 56, 28, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 602, 1, 0, 0, 0, 593, 594, 5, 86, 0, 0, 594, 599, 3, 112, 56, 0, 595, 596, 5, 69, 0, 0, 596, 598, 3, 112, 56, 0, 597, 595, 1, 0, 0, 0, 598, 601, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 602, 593, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 109, 1, 0, 0, 0, 604, 605, 7, 4, 0, 0, 605, 111, 1, 0, 0, 0, 606, 607, 3, 56, 28, 0, 607, 608, 5, 64, 0, 0, 608, 610, 1, 0, 0, 0, 609, 606, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 3, 56, 28, 0, 612, 113, 1, 0, 0, 0, 613, 614, 5, 14, 0, 0, 614, 615, 3, 186, 93, 0, 615, 115, 1, 0, 0, 0, 616, 617, 5, 4, 0, 0, 617, 621, 3, 52, 26, 0, 618, 620, 3, 118, 59, 0, 619, 618, 1, 0, 0, 0, 620, 623, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 117, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 5, 81, 0, 0, 625, 632, 3, 52, 26, 0, 626, 627, 5, 159, 0, 0, 627, 628, 3, 52, 26, 0, 628, 629, 5, 69, 0, 0, 629, 630, 3, 52, 26, 0, 630, 632, 1, 0, 0, 0, 631, 624, 1, 0, 0, 0, 631, 626, 1, 0, 0, 0, 632, 119, 1, 0, 0, 0, 633, 634, 5, 26, 0, 0, 634, 635, 3, 122, 61, 0, 635, 121, 1, 0, 0, 0, 636, 638, 3, 124, 62, 0, 637, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 123, 1, 0, 0, 0, 641, 642, 5, 106, 0, 0, 642, 643, 3, 126, 63, 0, 643, 644, 5, 107, 0, 0, 644, 125, 1, 0, 0, 0, 645, 646, 6, 63, -1, 0, 646, 647, 3, 128, 64, 0, 647, 653, 1, 0, 0, 0, 648, 649, 10, 1, 0, 0, 649, 650, 5, 58, 0, 0, 650, 652, 3, 128, 64, 0, 651, 648, 1, 0, 0, 0, 652, 655, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 127, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 656, 657, 3, 8, 4, 0, 657, 129, 1, 0, 0, 0, 658, 662, 5, 12, 0, 0, 659, 660, 3, 52, 26, 0, 660, 661, 5, 64, 0, 0, 661, 663, 1, 0, 0, 0, 662, 659, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 186, 93, 0, 665, 666, 5, 81, 0, 0, 666, 667, 3, 16, 8, 0, 667, 668, 3, 96, 48, 0, 668, 131, 1, 0, 0, 0, 669, 673, 5, 7, 0, 0, 670, 671, 3, 52, 26, 0, 671, 672, 5, 64, 0, 0, 672, 674, 1, 0, 0, 0, 673, 670, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 3, 174, 87, 0, 676, 677, 3, 96, 48, 0, 677, 133, 1, 0, 0, 0, 678, 679, 5, 28, 0, 0, 679, 680, 5, 127, 0, 0, 680, 683, 3, 48, 24, 0, 681, 682, 5, 65, 0, 0, 682, 684, 3, 16, 8, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 692, 1, 0, 0, 0, 685, 686, 5, 29, 0, 0, 686, 689, 3, 48, 24, 0, 687, 688, 5, 65, 0, 0, 688, 690, 3, 16, 8, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 678, 1, 0, 0, 0, 691, 685, 1, 0, 0, 0, 692, 135, 1, 0, 0, 0, 693, 695, 5, 27, 0, 0, 694, 696, 3, 62, 31, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 700, 1, 0, 0, 0, 697, 699, 3, 138, 69, 0, 698, 697, 1, 0, 0, 0, 699, 702, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 137, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 703, 704, 5, 122, 0, 0, 704, 705, 5, 65, 0, 0, 705, 715, 3, 52, 26, 0, 706, 707, 5, 123, 0, 0, 707, 708, 5, 65, 0, 0, 708, 715, 3, 140, 70, 0, 709, 710, 5, 121, 0, 0, 710, 711, 5, 65, 0, 0, 711, 715, 3, 52, 26, 0, 712, 713, 5, 86, 0, 0, 713, 715, 3, 180, 90, 0, 714, 703, 1, 0, 0, 0, 714, 706, 1, 0, 0, 0, 714, 709, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 715, 139, 1, 0, 0, 0, 716, 721, 3, 52, 26, 0, 717, 718, 5, 69, 0, 0, 718, 720, 3, 52, 26, 0, 719, 717, 1, 0, 0, 0, 720, 723, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 141, 1, 0, 0, 0, 723, 721, 1, 0, 0, 0, 724, 725, 5, 19, 0, 0, 725, 143, 1, 0, 0, 0, 726, 727, 5, 21, 0, 0, 727, 145, 1, 0, 0, 0, 728, 729, 5, 34, 0, 0, 729, 730, 3, 32, 16, 0, 730, 731, 5, 81, 0, 0, 731, 732, 3, 60, 30, 0, 732, 147, 1, 0, 0, 0, 733, 734, 5, 39, 0, 0, 734, 735, 3, 60, 30, 0, 735, 149, 1, 0, 0, 0, 736, 737, 5, 18, 0, 0, 737, 738, 3, 52, 26, 0, 738, 739, 5, 64, 0, 0, 739, 740, 3, 174, 87, 0, 740, 151, 1, 0, 0, 0, 741, 742, 5, 20, 0, 0, 742, 743, 3, 52, 26, 0, 743, 744, 5, 64, 0, 0, 744, 745, 3, 174, 87, 0, 745, 153, 1, 0, 0, 0, 746, 747, 5, 22, 0, 0, 747, 748, 3, 52, 26, 0, 748, 749, 5, 64, 0, 0, 749, 750, 3, 174, 87, 0, 750, 751, 3, 96, 48, 0, 751, 155, 1, 0, 0, 0, 752, 753, 5, 42, 0, 0, 753, 754, 3, 158, 79, 0, 754, 755, 5, 68, 0, 0, 755, 157, 1, 0, 0, 0, 756, 757, 3, 62, 31, 0, 757, 760, 5, 64, 0, 0, 758, 761, 3, 186, 93, 0, 759, 761, 3, 180, 90, 0, 760, 758, 1, 0, 0, 0, 760, 759, 1, 0, 0, 0, 761, 159, 1, 0, 0, 0, 762, 764, 5, 35, 0, 0, 763, 765, 3, 162, 81, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 5, 81, 0, 0, 767, 768, 3, 52, 26, 0, 768, 769, 5, 142, 0, 0, 769, 770, 3, 194, 97, 0, 770, 771, 3, 96, 48, 0, 771, 161, 1, 0, 0, 0, 772, 775, 3, 66, 33, 0, 773, 775, 3, 174, 87, 0, 774, 772, 1, 0, 0, 0, 774, 773, 1, 0, 0, 0, 775, 163, 1, 0, 0, 0, 776, 777, 6, 82, -1, 0, 777, 778, 5, 78, 0, 0, 778, 806, 3, 164, 82, 8, 779, 806, 3, 170, 85, 0, 780, 806, 3, 166, 83, 0, 781, 783, 3, 170, 85, 0, 782, 784, 5, 78, 0, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 5, 74, 0, 0, 786, 787, 5, 106, 0, 0, 787, 792, 3, 170, 85, 0, 788, 789, 5, 69, 0, 0, 789, 791, 3, 170, 85, 0, 790, 788, 1, 0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 795, 796, 5, 107, 0, 0, 796, 806, 1, 0, 0, 0, 797, 798, 3, 170, 85, 0, 798, 800, 5, 75, 0, 0, 799, 801, 5, 78, 0, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 79, 0, 0, 803, 806, 1, 0, 0, 0, 804, 806, 3, 168, 84, 0, 805, 776, 1, 0, 0, 0, 805, 779, 1, 0, 0, 0, 805, 780, 1, 0, 0, 0, 805, 781, 1, 0, 0, 0, 805, 797, 1, 0, 0, 0, 805, 804, 1, 0, 0, 0, 806, 815, 1, 0, 0, 0, 807, 808, 10, 5, 0, 0, 808, 809, 5, 62, 0, 0, 809, 814, 3, 164, 82, 6, 810, 811, 10, 4, 0, 0, 811, 812, 5, 82, 0, 0, 812, 814, 3, 164, 82, 5, 813, 807, 1, 0, 0, 0, 813, 810, 1, 0, 0, 0, 814, 817, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 165, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 820, 3, 170, 85, 0, 819, 821, 5, 78, 0, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 77, 0, 0, 823, 824, 3, 72, 36, 0, 824, 865, 1, 0, 0, 0, 825, 827, 3, 170, 85, 0, 826, 828, 5, 78, 0, 0, 827, 826, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 5, 84, 0, 0, 830, 831, 3, 72, 36, 0, 831, 865, 1, 0, 0, 0, 832, 834, 3, 170, 85, 0, 833, 835, 5, 78, 0, 0, 834, 833, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 5, 77, 0, 0, 837, 838, 5, 106, 0, 0, 838, 843, 3, 72, 36, 0, 839, 840, 5, 69, 0, 0, 840, 842, 3, 72, 36, 0, 841, 839, 1, 0, 0, 0, 842, 845, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 846, 847, 5, 107, 0, 0, 847, 865, 1, 0, 0, 0, 848, 850, 3, 170, 85, 0, 849, 851, 5, 78, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 84, 0, 0, 853, 854, 5, 106, 0, 0, 854, 859, 3, 72, 36, 0, 855, 856, 5, 69, 0, 0, 856, 858, 3, 72, 36, 0, 857, 855, 1, 0, 0, 0, 858, 861, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 5, 107, 0, 0, 863, 865, 1, 0, 0, 0, 864, 818, 1, 0, 0, 0, 864, 825, 1, 0, 0, 0, 864, 832, 1, 0, 0, 0, 864, 848, 1, 0, 0, 0, 865, 167, 1, 0, 0, 0, 866, 869, 3, 52, 26, 0, 867, 868, 5, 66, 0, 0, 868, 870, 3, 12, 6, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 5, 67, 0, 0, 872, 873, 3, 186, 93, 0, 873, 169, 1, 0, 0, 0, 874, 880, 3, 172, 86, 0, 875, 876, 3, 172, 86, 0, 876, 877, 3, 198, 99, 0, 877, 878, 3, 172, 86, 0, 878, 880, 1, 0, 0, 0, 879, 874, 1, 0, 0, 0, 879, 875, 1, 0, 0, 0, 880, 171, 1, 0, 0, 0, 881, 882, 6, 86, -1, 0, 882, 886, 3, 174, 87, 0, 883, 884, 7, 5, 0, 0, 884, 886, 3, 172, 86, 3, 885, 881, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 895, 1, 0, 0, 0, 887, 888, 10, 2, 0, 0, 888, 889, 7, 6, 0, 0, 889, 894, 3, 172, 86, 3, 890, 891, 10, 1, 0, 0, 891, 892, 7, 5, 0, 0, 892, 894, 3, 172, 86, 2, 893, 887, 1, 0, 0, 0, 893, 890, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 173, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 6, 87, -1, 0, 899, 907, 3, 186, 93, 0, 900, 907, 3, 52, 26, 0, 901, 907, 3, 176, 88, 0, 902, 903, 5, 106, 0, 0, 903, 904, 3, 164, 82, 0, 904, 905, 5, 107, 0, 0, 905, 907, 1, 0, 0, 0, 906, 898, 1, 0, 0, 0, 906, 900, 1, 0, 0, 0, 906, 901, 1, 0, 0, 0, 906, 902, 1, 0, 0, 0, 907, 913, 1, 0, 0, 0, 908, 909, 10, 1, 0, 0, 909, 910, 5, 66, 0, 0, 910, 912, 3, 12, 6, 0, 911, 908, 1, 0, 0, 0, 912, 915, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 175, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 917, 3, 178, 89, 0, 917, 931, 5, 106, 0, 0, 918, 932, 5, 96, 0, 0, 919, 924, 3, 164, 82, 0, 920, 921, 5, 69, 0, 0, 921, 923, 3, 164, 82, 0, 922, 920, 1, 0, 0, 0, 923, 926, 1, 0, 0, 0, 924, 922, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 929, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 927, 928, 5, 69, 0, 0, 928, 930, 3, 180, 90, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 918, 1, 0, 0, 0, 931, 919, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 5, 107, 0, 0, 934, 177, 1, 0, 0, 0, 935, 939, 3, 70, 35, 0, 936, 939, 5, 73, 0, 0, 937, 939, 5, 76, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 179, 1, 0, 0, 0, 940, 949, 5, 99, 0, 0, 941, 946, 3, 182, 91, 0, 942, 943, 5, 69, 0, 0, 943, 945, 3, 182, 91, 0, 944, 942, 1, 0, 0, 0, 945, 948, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 950, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 949, 941, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 5, 100, 0, 0, 952, 181, 1, 0, 0, 0, 953, 954, 3, 196, 98, 0, 954, 955, 5, 67, 0, 0, 955, 956, 3, 184, 92, 0, 956, 183, 1, 0, 0, 0, 957, 960, 3, 186, 93, 0, 958, 960, 3, 180, 90, 0, 959, 957, 1, 0, 0, 0, 959, 958, 1, 0, 0, 0, 960, 185, 1, 0, 0, 0, 961, 1004, 5, 79, 0, 0, 962, 963, 3, 194, 97, 0, 963, 964, 5, 108, 0, 0, 964, 1004, 1, 0, 0, 0, 965, 1004, 3, 192, 96, 0, 966, 1004, 3, 194, 97, 0, 967, 1004, 3, 188, 94, 0, 968, 1004, 3, 66, 33, 0, 969, 1004, 3, 196, 98, 0, 970, 971, 5, 104, 0, 0, 971, 976, 3, 190, 95, 0, 972, 973, 5, 69, 0, 0, 973, 975, 3, 190, 95, 0, 974, 972, 1, 0, 0, 0, 975, 978, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 979, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 979, 980, 5, 105, 0, 0, 980, 1004, 1, 0, 0, 0, 981, 982, 5, 104, 0, 0, 982, 987, 3, 188, 94, 0, 983, 984, 5, 69, 0, 0, 984, 986, 3, 188, 94, 0, 985, 983, 1, 0, 0, 0, 986, 989, 1, 0, 0, 0, 987, 985, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 990, 1, 0, 0, 0, 989, 987, 1, 0, 0, 0, 990, 991, 5, 105, 0, 0, 991, 1004, 1, 0, 0, 0, 992, 993, 5, 104, 0, 0, 993, 998, 3, 196, 98, 0, 994, 995, 5, 69, 0, 0, 995, 997, 3, 196, 98, 0, 996, 994, 1, 0, 0, 0, 997, 1000, 1, 0, 0, 0, 998, 996, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1001, 1002, 5, 105, 0, 0, 1002, 1004, 1, 0, 0, 0, 1003, 961, 1, 0, 0, 0, 1003, 962, 1, 0, 0, 0, 1003, 965, 1, 0, 0, 0, 1003, 966, 1, 0, 0, 0, 1003, 967, 1, 0, 0, 0, 1003, 968, 1, 0, 0, 0, 1003, 969, 1, 0, 0, 0, 1003, 970, 1, 0, 0, 0, 1003, 981, 1, 0, 0, 0, 1003, 992, 1, 0, 0, 0, 1004, 187, 1, 0, 0, 0, 1005, 1006, 7, 7, 0, 0, 1006, 189, 1, 0, 0, 0, 1007, 1010, 3, 192, 96, 0, 1008, 1010, 3, 194, 97, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1008, 1, 0, 0, 0, 1010, 191, 1, 0, 0, 0, 1011, 1013, 7, 5, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 5, 61, 0, 0, 1015, 193, 1, 0, 0, 0, 1016, 1018, 7, 5, 0, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 5, 60, 0, 0, 1020, 195, 1, 0, 0, 0, 1021, 1022, 5, 59, 0, 0, 1022, 197, 1, 0, 0, 0, 1023, 1024, 7, 8, 0, 0, 1024, 199, 1, 0, 0, 0, 1025, 1026, 7, 9, 0, 0, 1026, 1027, 5, 131, 0, 0, 1027, 1028, 3, 202, 101, 0, 1028, 1029, 3, 204, 102, 0, 1029, 201, 1, 0, 0, 0, 1030, 1031, 4, 101, 14, 0, 1031, 1033, 3, 32, 16, 0, 1032, 1034, 5, 159, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 5, 114, 0, 0, 1036, 1039, 1, 0, 0, 0, 1037, 1039, 3, 32, 16, 0, 1038, 1030, 1, 0, 0, 0, 1038, 1037, 1, 0, 0, 0, 1039, 203, 1, 0, 0, 0, 1040, 1041, 5, 81, 0, 0, 1041, 1046, 3, 164, 82, 0, 1042, 1043, 5, 69, 0, 0, 1043, 1045, 3, 164, 82, 0, 1044, 1042, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 205, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1049, 1053, 5, 40, 0, 0, 1050, 1052, 3, 210, 105, 0, 1051, 1050, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1059, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1057, 3, 208, 104, 0, 1057, 1058, 5, 64, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1056, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 5, 106, 0, 0, 1062, 1063, 5, 102, 0, 0, 1063, 1110, 5, 107, 0, 0, 1064, 1068, 5, 40, 0, 0, 1065, 1067, 3, 210, 105, 0, 1066, 1065, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1074, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1071, 1072, 3, 208, 104, 0, 1072, 1073, 5, 64, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1071, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1110, 5, 102, 0, 0, 1077, 1081, 5, 40, 0, 0, 1078, 1080, 3, 210, 105, 0, 1079, 1078, 1, 0, 0, 0, 1080, 1083, 1, 0, 0, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1087, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1084, 1085, 3, 208, 104, 0, 1085, 1086, 5, 64, 0, 0, 1086, 1088, 1, 0, 0, 0, 1087, 1084, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1091, 5, 106, 0, 0, 1090, 1092, 3, 218, 109, 0, 1091, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1091, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 5, 107, 0, 0, 1096, 1110, 1, 0, 0, 0, 1097, 1101, 5, 40, 0, 0, 1098, 1100, 3, 210, 105, 0, 1099, 1098, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1105, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1104, 1106, 3, 218, 109, 0, 1105, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1049, 1, 0, 0, 0, 1109, 1064, 1, 0, 0, 0, 1109, 1077, 1, 0, 0, 0, 1109, 1097, 1, 0, 0, 0, 1110, 207, 1, 0, 0, 0, 1111, 1112, 7, 1, 0, 0, 1112, 209, 1, 0, 0, 0, 1113, 1114, 3, 212, 106, 0, 1114, 1115, 5, 64, 0, 0, 1115, 1116, 3, 214, 107, 0, 1116, 211, 1, 0, 0, 0, 1117, 1118, 7, 10, 0, 0, 1118, 213, 1, 0, 0, 0, 1119, 1124, 3, 220, 110, 0, 1120, 1121, 5, 69, 0, 0, 1121, 1123, 3, 220, 110, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1126, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1130, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1127, 1130, 5, 109, 0, 0, 1128, 1130, 5, 102, 0, 0, 1129, 1119, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 215, 1, 0, 0, 0, 1131, 1132, 7, 11, 0, 0, 1132, 217, 1, 0, 0, 0, 1133, 1135, 3, 216, 108, 0, 1134, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1147, 1, 0, 0, 0, 1138, 1142, 5, 106, 0, 0, 1139, 1141, 3, 218, 109, 0, 1140, 1139, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1145, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1145, 1147, 5, 107, 0, 0, 1146, 1134, 1, 0, 0, 0, 1146, 1138, 1, 0, 0, 0, 1147, 219, 1, 0, 0, 0, 1148, 1149, 3, 222, 111, 0, 1149, 1150, 5, 67, 0, 0, 1150, 1151, 3, 226, 113, 0, 1151, 1158, 1, 0, 0, 0, 1152, 1153, 3, 226, 113, 0, 1153, 1154, 5, 66, 0, 0, 1154, 1155, 3, 224, 112, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1158, 3, 228, 114, 0, 1157, 1148, 1, 0, 0, 0, 1157, 1152, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 221, 1, 0, 0, 0, 1159, 1160, 7, 12, 0, 0, 1160, 223, 1, 0, 0, 0, 1161, 1162, 7, 12, 0, 0, 1162, 225, 1, 0, 0, 0, 1163, 1164, 7, 12, 0, 0, 1164, 227, 1, 0, 0, 0, 1165, 1166, 7, 13, 0, 0, 1166, 229, 1, 0, 0, 0, 114, 233, 250, 262, 294, 309, 315, 334, 338, 342, 350, 358, 363, 366, 382, 390, 394, 401, 407, 412, 421, 428, 434, 443, 450, 458, 466, 470, 474, 479, 483, 488, 497, 506, 511, 515, 529, 540, 546, 553, 562, 571, 591, 599, 602, 609, 621, 631, 639, 653, 662, 673, 683, 689, 691, 695, 700, 714, 721, 760, 764, 774, 783, 792, 800, 805, 813, 815, 820, 827, 834, 843, 850, 859, 864, 869, 879, 885, 893, 895, 906, 913, 924, 929, 931, 938, 946, 949, 959, 976, 987, 998, 1003, 1009, 1012, 1017, 1033, 1038, 1046, 1053, 1059, 1068, 1074, 1081, 1087, 1093, 1101, 1107, 1109, 1124, 1129, 1136, 1142, 1146, 1157] \ No newline at end of file +[4, 1, 169, 1167, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 1, 0, 5, 0, 232, 8, 0, 10, 0, 12, 0, 235, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 249, 8, 2, 10, 2, 12, 2, 252, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 263, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 295, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 308, 8, 8, 10, 8, 12, 8, 311, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 316, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 333, 8, 13, 10, 13, 12, 13, 336, 9, 13, 1, 13, 3, 13, 339, 8, 13, 1, 14, 1, 14, 3, 14, 343, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 349, 8, 15, 10, 15, 12, 15, 352, 9, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 364, 8, 16, 1, 16, 3, 16, 367, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 381, 8, 21, 10, 21, 12, 21, 384, 9, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 391, 8, 23, 1, 23, 1, 23, 3, 23, 395, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 400, 8, 24, 10, 24, 12, 24, 403, 9, 24, 1, 25, 1, 25, 1, 25, 3, 25, 408, 8, 25, 1, 26, 1, 26, 1, 26, 3, 26, 413, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 422, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 427, 8, 27, 10, 27, 12, 27, 430, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 435, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 444, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 449, 8, 29, 10, 29, 12, 29, 452, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 457, 8, 30, 10, 30, 12, 30, 460, 9, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 33, 1, 33, 3, 33, 471, 8, 33, 1, 34, 1, 34, 3, 34, 475, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 480, 8, 35, 1, 36, 1, 36, 3, 36, 484, 8, 36, 1, 37, 1, 37, 1, 37, 3, 37, 489, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 495, 8, 38, 10, 38, 12, 38, 498, 9, 38, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 504, 8, 39, 10, 39, 12, 39, 507, 9, 39, 1, 40, 1, 40, 3, 40, 511, 8, 40, 1, 40, 1, 40, 3, 40, 515, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 527, 8, 43, 10, 43, 12, 43, 530, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 540, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 546, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 551, 8, 46, 10, 46, 12, 46, 554, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 562, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 569, 8, 49, 10, 49, 12, 49, 572, 9, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 591, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 597, 8, 54, 10, 54, 12, 54, 600, 9, 54, 3, 54, 602, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 609, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 619, 8, 58, 10, 58, 12, 58, 622, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 631, 8, 59, 1, 60, 1, 60, 1, 60, 1, 61, 4, 61, 637, 8, 61, 11, 61, 12, 61, 638, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 651, 8, 63, 10, 63, 12, 63, 654, 9, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 662, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 673, 8, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 683, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 689, 8, 67, 3, 67, 691, 8, 67, 1, 68, 1, 68, 3, 68, 695, 8, 68, 1, 68, 5, 68, 698, 8, 68, 10, 68, 12, 68, 701, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 714, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 719, 8, 70, 10, 70, 12, 70, 722, 9, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 760, 8, 79, 1, 80, 1, 80, 3, 80, 764, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 774, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 783, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 790, 8, 82, 10, 82, 12, 82, 793, 9, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 800, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 805, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 813, 8, 82, 10, 82, 12, 82, 816, 9, 82, 1, 83, 1, 83, 3, 83, 820, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 827, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 834, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 841, 8, 83, 10, 83, 12, 83, 844, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 850, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 857, 8, 83, 10, 83, 12, 83, 860, 9, 83, 1, 83, 1, 83, 3, 83, 864, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 869, 8, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 879, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 885, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 893, 8, 86, 10, 86, 12, 86, 896, 9, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 906, 8, 87, 1, 87, 1, 87, 1, 87, 5, 87, 911, 8, 87, 10, 87, 12, 87, 914, 9, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 922, 8, 88, 10, 88, 12, 88, 925, 9, 88, 1, 88, 1, 88, 3, 88, 929, 8, 88, 3, 88, 931, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 938, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 944, 8, 90, 10, 90, 12, 90, 947, 9, 90, 3, 90, 949, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 959, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 974, 8, 93, 10, 93, 12, 93, 977, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 985, 8, 93, 10, 93, 12, 93, 988, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 996, 8, 93, 10, 93, 12, 93, 999, 9, 93, 1, 93, 1, 93, 3, 93, 1003, 8, 93, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 1009, 8, 95, 1, 96, 3, 96, 1012, 8, 96, 1, 96, 1, 96, 1, 97, 3, 97, 1017, 8, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 3, 101, 1033, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1038, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1044, 8, 102, 10, 102, 12, 102, 1047, 9, 102, 1, 103, 1, 103, 5, 103, 1051, 8, 103, 10, 103, 12, 103, 1054, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1059, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1066, 8, 103, 10, 103, 12, 103, 1069, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1074, 8, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1079, 8, 103, 10, 103, 12, 103, 1082, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1087, 8, 103, 1, 103, 1, 103, 4, 103, 1091, 8, 103, 11, 103, 12, 103, 1092, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1099, 8, 103, 10, 103, 12, 103, 1102, 9, 103, 1, 103, 4, 103, 1105, 8, 103, 11, 103, 12, 103, 1106, 3, 103, 1109, 8, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 1122, 8, 107, 10, 107, 12, 107, 1125, 9, 107, 1, 107, 1, 107, 3, 107, 1129, 8, 107, 1, 108, 1, 108, 1, 109, 4, 109, 1134, 8, 109, 11, 109, 12, 109, 1135, 1, 109, 1, 109, 5, 109, 1140, 8, 109, 10, 109, 12, 109, 1143, 9, 109, 1, 109, 3, 109, 1146, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1157, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 0, 5, 4, 126, 164, 172, 174, 115, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 0, 14, 2, 0, 59, 59, 114, 114, 1, 0, 108, 109, 2, 0, 63, 63, 70, 70, 2, 0, 73, 73, 76, 76, 2, 0, 48, 48, 59, 59, 1, 0, 94, 95, 1, 0, 96, 98, 2, 0, 72, 72, 85, 85, 2, 0, 87, 87, 89, 93, 2, 0, 30, 30, 32, 33, 3, 0, 59, 59, 102, 102, 108, 109, 8, 0, 59, 59, 64, 64, 66, 67, 69, 69, 102, 102, 108, 109, 114, 114, 156, 158, 2, 0, 108, 108, 114, 114, 3, 0, 59, 59, 108, 108, 114, 114, 1222, 0, 233, 1, 0, 0, 0, 2, 239, 1, 0, 0, 0, 4, 242, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 8, 294, 1, 0, 0, 0, 10, 296, 1, 0, 0, 0, 12, 299, 1, 0, 0, 0, 14, 301, 1, 0, 0, 0, 16, 304, 1, 0, 0, 0, 18, 315, 1, 0, 0, 0, 20, 319, 1, 0, 0, 0, 22, 322, 1, 0, 0, 0, 24, 325, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 342, 1, 0, 0, 0, 30, 344, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 368, 1, 0, 0, 0, 36, 370, 1, 0, 0, 0, 38, 372, 1, 0, 0, 0, 40, 374, 1, 0, 0, 0, 42, 376, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 388, 1, 0, 0, 0, 48, 396, 1, 0, 0, 0, 50, 404, 1, 0, 0, 0, 52, 421, 1, 0, 0, 0, 54, 423, 1, 0, 0, 0, 56, 443, 1, 0, 0, 0, 58, 445, 1, 0, 0, 0, 60, 453, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 466, 1, 0, 0, 0, 66, 470, 1, 0, 0, 0, 68, 474, 1, 0, 0, 0, 70, 479, 1, 0, 0, 0, 72, 483, 1, 0, 0, 0, 74, 485, 1, 0, 0, 0, 76, 490, 1, 0, 0, 0, 78, 499, 1, 0, 0, 0, 80, 508, 1, 0, 0, 0, 82, 516, 1, 0, 0, 0, 84, 519, 1, 0, 0, 0, 86, 522, 1, 0, 0, 0, 88, 539, 1, 0, 0, 0, 90, 541, 1, 0, 0, 0, 92, 547, 1, 0, 0, 0, 94, 555, 1, 0, 0, 0, 96, 561, 1, 0, 0, 0, 98, 563, 1, 0, 0, 0, 100, 573, 1, 0, 0, 0, 102, 576, 1, 0, 0, 0, 104, 579, 1, 0, 0, 0, 106, 583, 1, 0, 0, 0, 108, 586, 1, 0, 0, 0, 110, 603, 1, 0, 0, 0, 112, 608, 1, 0, 0, 0, 114, 612, 1, 0, 0, 0, 116, 615, 1, 0, 0, 0, 118, 630, 1, 0, 0, 0, 120, 632, 1, 0, 0, 0, 122, 636, 1, 0, 0, 0, 124, 640, 1, 0, 0, 0, 126, 644, 1, 0, 0, 0, 128, 655, 1, 0, 0, 0, 130, 657, 1, 0, 0, 0, 132, 668, 1, 0, 0, 0, 134, 690, 1, 0, 0, 0, 136, 692, 1, 0, 0, 0, 138, 713, 1, 0, 0, 0, 140, 715, 1, 0, 0, 0, 142, 723, 1, 0, 0, 0, 144, 725, 1, 0, 0, 0, 146, 727, 1, 0, 0, 0, 148, 732, 1, 0, 0, 0, 150, 735, 1, 0, 0, 0, 152, 740, 1, 0, 0, 0, 154, 745, 1, 0, 0, 0, 156, 751, 1, 0, 0, 0, 158, 755, 1, 0, 0, 0, 160, 761, 1, 0, 0, 0, 162, 773, 1, 0, 0, 0, 164, 804, 1, 0, 0, 0, 166, 863, 1, 0, 0, 0, 168, 865, 1, 0, 0, 0, 170, 878, 1, 0, 0, 0, 172, 884, 1, 0, 0, 0, 174, 905, 1, 0, 0, 0, 176, 915, 1, 0, 0, 0, 178, 937, 1, 0, 0, 0, 180, 939, 1, 0, 0, 0, 182, 952, 1, 0, 0, 0, 184, 958, 1, 0, 0, 0, 186, 1002, 1, 0, 0, 0, 188, 1004, 1, 0, 0, 0, 190, 1008, 1, 0, 0, 0, 192, 1011, 1, 0, 0, 0, 194, 1016, 1, 0, 0, 0, 196, 1020, 1, 0, 0, 0, 198, 1022, 1, 0, 0, 0, 200, 1024, 1, 0, 0, 0, 202, 1037, 1, 0, 0, 0, 204, 1039, 1, 0, 0, 0, 206, 1108, 1, 0, 0, 0, 208, 1110, 1, 0, 0, 0, 210, 1112, 1, 0, 0, 0, 212, 1116, 1, 0, 0, 0, 214, 1128, 1, 0, 0, 0, 216, 1130, 1, 0, 0, 0, 218, 1145, 1, 0, 0, 0, 220, 1156, 1, 0, 0, 0, 222, 1158, 1, 0, 0, 0, 224, 1160, 1, 0, 0, 0, 226, 1162, 1, 0, 0, 0, 228, 1164, 1, 0, 0, 0, 230, 232, 3, 156, 78, 0, 231, 230, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 236, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 3, 2, 1, 0, 237, 238, 5, 0, 0, 1, 238, 1, 1, 0, 0, 0, 239, 240, 3, 4, 2, 0, 240, 241, 5, 0, 0, 1, 241, 3, 1, 0, 0, 0, 242, 243, 6, 2, -1, 0, 243, 244, 3, 6, 3, 0, 244, 250, 1, 0, 0, 0, 245, 246, 10, 1, 0, 0, 246, 247, 5, 58, 0, 0, 247, 249, 3, 8, 4, 0, 248, 245, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 5, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 263, 3, 20, 10, 0, 254, 263, 3, 14, 7, 0, 255, 263, 3, 106, 53, 0, 256, 263, 3, 22, 11, 0, 257, 263, 3, 206, 103, 0, 258, 259, 4, 3, 1, 0, 259, 263, 3, 102, 51, 0, 260, 261, 4, 3, 2, 0, 261, 263, 3, 24, 12, 0, 262, 253, 1, 0, 0, 0, 262, 254, 1, 0, 0, 0, 262, 255, 1, 0, 0, 0, 262, 256, 1, 0, 0, 0, 262, 257, 1, 0, 0, 0, 262, 258, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, 263, 7, 1, 0, 0, 0, 264, 295, 3, 44, 22, 0, 265, 295, 3, 10, 5, 0, 266, 295, 3, 82, 41, 0, 267, 295, 3, 74, 37, 0, 268, 295, 3, 46, 23, 0, 269, 295, 3, 78, 39, 0, 270, 295, 3, 84, 42, 0, 271, 295, 3, 86, 43, 0, 272, 295, 3, 90, 45, 0, 273, 295, 3, 98, 49, 0, 274, 295, 3, 108, 54, 0, 275, 295, 3, 100, 50, 0, 276, 295, 3, 200, 100, 0, 277, 295, 3, 116, 58, 0, 278, 295, 3, 132, 66, 0, 279, 295, 3, 114, 57, 0, 280, 295, 3, 120, 60, 0, 281, 295, 3, 130, 65, 0, 282, 295, 3, 134, 67, 0, 283, 295, 3, 136, 68, 0, 284, 295, 3, 150, 75, 0, 285, 295, 3, 142, 71, 0, 286, 295, 3, 152, 76, 0, 287, 295, 3, 144, 72, 0, 288, 295, 3, 154, 77, 0, 289, 295, 3, 160, 80, 0, 290, 291, 4, 4, 3, 0, 291, 295, 3, 146, 73, 0, 292, 293, 4, 4, 4, 0, 293, 295, 3, 148, 74, 0, 294, 264, 1, 0, 0, 0, 294, 265, 1, 0, 0, 0, 294, 266, 1, 0, 0, 0, 294, 267, 1, 0, 0, 0, 294, 268, 1, 0, 0, 0, 294, 269, 1, 0, 0, 0, 294, 270, 1, 0, 0, 0, 294, 271, 1, 0, 0, 0, 294, 272, 1, 0, 0, 0, 294, 273, 1, 0, 0, 0, 294, 274, 1, 0, 0, 0, 294, 275, 1, 0, 0, 0, 294, 276, 1, 0, 0, 0, 294, 277, 1, 0, 0, 0, 294, 278, 1, 0, 0, 0, 294, 279, 1, 0, 0, 0, 294, 280, 1, 0, 0, 0, 294, 281, 1, 0, 0, 0, 294, 282, 1, 0, 0, 0, 294, 283, 1, 0, 0, 0, 294, 284, 1, 0, 0, 0, 294, 285, 1, 0, 0, 0, 294, 286, 1, 0, 0, 0, 294, 287, 1, 0, 0, 0, 294, 288, 1, 0, 0, 0, 294, 289, 1, 0, 0, 0, 294, 290, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 9, 1, 0, 0, 0, 296, 297, 5, 17, 0, 0, 297, 298, 3, 164, 82, 0, 298, 11, 1, 0, 0, 0, 299, 300, 3, 62, 31, 0, 300, 13, 1, 0, 0, 0, 301, 302, 5, 13, 0, 0, 302, 303, 3, 16, 8, 0, 303, 15, 1, 0, 0, 0, 304, 309, 3, 18, 9, 0, 305, 306, 5, 69, 0, 0, 306, 308, 3, 18, 9, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 17, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 3, 52, 26, 0, 313, 314, 5, 64, 0, 0, 314, 316, 1, 0, 0, 0, 315, 312, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 3, 164, 82, 0, 318, 19, 1, 0, 0, 0, 319, 320, 5, 23, 0, 0, 320, 321, 3, 26, 13, 0, 321, 21, 1, 0, 0, 0, 322, 323, 5, 24, 0, 0, 323, 324, 3, 26, 13, 0, 324, 23, 1, 0, 0, 0, 325, 326, 5, 25, 0, 0, 326, 327, 3, 72, 36, 0, 327, 328, 3, 96, 48, 0, 328, 25, 1, 0, 0, 0, 329, 334, 3, 28, 14, 0, 330, 331, 5, 69, 0, 0, 331, 333, 3, 28, 14, 0, 332, 330, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 337, 339, 3, 42, 21, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 27, 1, 0, 0, 0, 340, 343, 3, 32, 16, 0, 341, 343, 3, 30, 15, 0, 342, 340, 1, 0, 0, 0, 342, 341, 1, 0, 0, 0, 343, 29, 1, 0, 0, 0, 344, 345, 5, 106, 0, 0, 345, 350, 3, 20, 10, 0, 346, 347, 5, 58, 0, 0, 347, 349, 3, 8, 4, 0, 348, 346, 1, 0, 0, 0, 349, 352, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 353, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 353, 354, 5, 107, 0, 0, 354, 31, 1, 0, 0, 0, 355, 356, 3, 34, 17, 0, 356, 357, 5, 67, 0, 0, 357, 359, 1, 0, 0, 0, 358, 355, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 363, 3, 38, 19, 0, 361, 362, 5, 66, 0, 0, 362, 364, 3, 36, 18, 0, 363, 361, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 367, 1, 0, 0, 0, 365, 367, 3, 40, 20, 0, 366, 358, 1, 0, 0, 0, 366, 365, 1, 0, 0, 0, 367, 33, 1, 0, 0, 0, 368, 369, 5, 114, 0, 0, 369, 35, 1, 0, 0, 0, 370, 371, 5, 114, 0, 0, 371, 37, 1, 0, 0, 0, 372, 373, 5, 114, 0, 0, 373, 39, 1, 0, 0, 0, 374, 375, 7, 0, 0, 0, 375, 41, 1, 0, 0, 0, 376, 377, 5, 113, 0, 0, 377, 382, 5, 114, 0, 0, 378, 379, 5, 69, 0, 0, 379, 381, 5, 114, 0, 0, 380, 378, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 43, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 16, 8, 0, 387, 45, 1, 0, 0, 0, 388, 390, 5, 16, 0, 0, 389, 391, 3, 48, 24, 0, 390, 389, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 394, 1, 0, 0, 0, 392, 393, 5, 65, 0, 0, 393, 395, 3, 16, 8, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 47, 1, 0, 0, 0, 396, 401, 3, 50, 25, 0, 397, 398, 5, 69, 0, 0, 398, 400, 3, 50, 25, 0, 399, 397, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 49, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 407, 3, 18, 9, 0, 405, 406, 5, 17, 0, 0, 406, 408, 3, 164, 82, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 51, 1, 0, 0, 0, 409, 410, 4, 26, 5, 0, 410, 412, 5, 104, 0, 0, 411, 413, 5, 108, 0, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 5, 105, 0, 0, 415, 416, 5, 71, 0, 0, 416, 417, 5, 104, 0, 0, 417, 418, 3, 54, 27, 0, 418, 419, 5, 105, 0, 0, 419, 422, 1, 0, 0, 0, 420, 422, 3, 54, 27, 0, 421, 409, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 428, 3, 70, 35, 0, 424, 425, 5, 71, 0, 0, 425, 427, 3, 70, 35, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 55, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 432, 4, 28, 6, 0, 432, 434, 5, 104, 0, 0, 433, 435, 5, 149, 0, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 5, 105, 0, 0, 437, 438, 5, 71, 0, 0, 438, 439, 5, 104, 0, 0, 439, 440, 3, 58, 29, 0, 440, 441, 5, 105, 0, 0, 441, 444, 1, 0, 0, 0, 442, 444, 3, 58, 29, 0, 443, 431, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 57, 1, 0, 0, 0, 445, 450, 3, 64, 32, 0, 446, 447, 5, 71, 0, 0, 447, 449, 3, 64, 32, 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, 59, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 453, 458, 3, 56, 28, 0, 454, 455, 5, 69, 0, 0, 455, 457, 3, 56, 28, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 61, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 7, 1, 0, 0, 462, 63, 1, 0, 0, 0, 463, 467, 5, 149, 0, 0, 464, 467, 3, 66, 33, 0, 465, 467, 3, 68, 34, 0, 466, 463, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 465, 1, 0, 0, 0, 467, 65, 1, 0, 0, 0, 468, 471, 5, 83, 0, 0, 469, 471, 5, 102, 0, 0, 470, 468, 1, 0, 0, 0, 470, 469, 1, 0, 0, 0, 471, 67, 1, 0, 0, 0, 472, 475, 5, 101, 0, 0, 473, 475, 5, 103, 0, 0, 474, 472, 1, 0, 0, 0, 474, 473, 1, 0, 0, 0, 475, 69, 1, 0, 0, 0, 476, 480, 3, 62, 31, 0, 477, 480, 3, 66, 33, 0, 478, 480, 3, 68, 34, 0, 479, 476, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 71, 1, 0, 0, 0, 481, 484, 3, 196, 98, 0, 482, 484, 3, 66, 33, 0, 483, 481, 1, 0, 0, 0, 483, 482, 1, 0, 0, 0, 484, 73, 1, 0, 0, 0, 485, 486, 5, 11, 0, 0, 486, 488, 3, 186, 93, 0, 487, 489, 3, 76, 38, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 75, 1, 0, 0, 0, 490, 491, 5, 65, 0, 0, 491, 496, 3, 164, 82, 0, 492, 493, 5, 69, 0, 0, 493, 495, 3, 164, 82, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 77, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 15, 0, 0, 500, 505, 3, 80, 40, 0, 501, 502, 5, 69, 0, 0, 502, 504, 3, 80, 40, 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, 79, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 510, 3, 164, 82, 0, 509, 511, 7, 2, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 513, 5, 80, 0, 0, 513, 515, 7, 3, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 81, 1, 0, 0, 0, 516, 517, 5, 38, 0, 0, 517, 518, 3, 60, 30, 0, 518, 83, 1, 0, 0, 0, 519, 520, 5, 37, 0, 0, 520, 521, 3, 60, 30, 0, 521, 85, 1, 0, 0, 0, 522, 523, 5, 41, 0, 0, 523, 528, 3, 88, 44, 0, 524, 525, 5, 69, 0, 0, 525, 527, 3, 88, 44, 0, 526, 524, 1, 0, 0, 0, 527, 530, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 87, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 531, 532, 3, 56, 28, 0, 532, 533, 5, 159, 0, 0, 533, 534, 3, 56, 28, 0, 534, 540, 1, 0, 0, 0, 535, 536, 3, 56, 28, 0, 536, 537, 5, 64, 0, 0, 537, 538, 3, 56, 28, 0, 538, 540, 1, 0, 0, 0, 539, 531, 1, 0, 0, 0, 539, 535, 1, 0, 0, 0, 540, 89, 1, 0, 0, 0, 541, 542, 5, 8, 0, 0, 542, 543, 3, 174, 87, 0, 543, 545, 3, 196, 98, 0, 544, 546, 3, 92, 46, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 91, 1, 0, 0, 0, 547, 552, 3, 94, 47, 0, 548, 549, 5, 69, 0, 0, 549, 551, 3, 94, 47, 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, 93, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 555, 556, 3, 62, 31, 0, 556, 557, 5, 64, 0, 0, 557, 558, 3, 186, 93, 0, 558, 95, 1, 0, 0, 0, 559, 560, 5, 86, 0, 0, 560, 562, 3, 180, 90, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 97, 1, 0, 0, 0, 563, 564, 5, 10, 0, 0, 564, 565, 3, 174, 87, 0, 565, 570, 3, 196, 98, 0, 566, 567, 5, 69, 0, 0, 567, 569, 3, 196, 98, 0, 568, 566, 1, 0, 0, 0, 569, 572, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 99, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 574, 5, 36, 0, 0, 574, 575, 3, 52, 26, 0, 575, 101, 1, 0, 0, 0, 576, 577, 5, 6, 0, 0, 577, 578, 3, 104, 52, 0, 578, 103, 1, 0, 0, 0, 579, 580, 5, 106, 0, 0, 580, 581, 3, 4, 2, 0, 581, 582, 5, 107, 0, 0, 582, 105, 1, 0, 0, 0, 583, 584, 5, 43, 0, 0, 584, 585, 5, 166, 0, 0, 585, 107, 1, 0, 0, 0, 586, 587, 5, 5, 0, 0, 587, 590, 3, 110, 55, 0, 588, 589, 5, 81, 0, 0, 589, 591, 3, 56, 28, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 601, 1, 0, 0, 0, 592, 593, 5, 86, 0, 0, 593, 598, 3, 112, 56, 0, 594, 595, 5, 69, 0, 0, 595, 597, 3, 112, 56, 0, 596, 594, 1, 0, 0, 0, 597, 600, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 602, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 601, 592, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 109, 1, 0, 0, 0, 603, 604, 7, 4, 0, 0, 604, 111, 1, 0, 0, 0, 605, 606, 3, 56, 28, 0, 606, 607, 5, 64, 0, 0, 607, 609, 1, 0, 0, 0, 608, 605, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 3, 56, 28, 0, 611, 113, 1, 0, 0, 0, 612, 613, 5, 14, 0, 0, 613, 614, 3, 186, 93, 0, 614, 115, 1, 0, 0, 0, 615, 616, 5, 4, 0, 0, 616, 620, 3, 52, 26, 0, 617, 619, 3, 118, 59, 0, 618, 617, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 117, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 624, 5, 81, 0, 0, 624, 631, 3, 52, 26, 0, 625, 626, 5, 159, 0, 0, 626, 627, 3, 52, 26, 0, 627, 628, 5, 69, 0, 0, 628, 629, 3, 52, 26, 0, 629, 631, 1, 0, 0, 0, 630, 623, 1, 0, 0, 0, 630, 625, 1, 0, 0, 0, 631, 119, 1, 0, 0, 0, 632, 633, 5, 26, 0, 0, 633, 634, 3, 122, 61, 0, 634, 121, 1, 0, 0, 0, 635, 637, 3, 124, 62, 0, 636, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 123, 1, 0, 0, 0, 640, 641, 5, 106, 0, 0, 641, 642, 3, 126, 63, 0, 642, 643, 5, 107, 0, 0, 643, 125, 1, 0, 0, 0, 644, 645, 6, 63, -1, 0, 645, 646, 3, 128, 64, 0, 646, 652, 1, 0, 0, 0, 647, 648, 10, 1, 0, 0, 648, 649, 5, 58, 0, 0, 649, 651, 3, 128, 64, 0, 650, 647, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 127, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 656, 3, 8, 4, 0, 656, 129, 1, 0, 0, 0, 657, 661, 5, 12, 0, 0, 658, 659, 3, 52, 26, 0, 659, 660, 5, 64, 0, 0, 660, 662, 1, 0, 0, 0, 661, 658, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 3, 186, 93, 0, 664, 665, 5, 81, 0, 0, 665, 666, 3, 16, 8, 0, 666, 667, 3, 96, 48, 0, 667, 131, 1, 0, 0, 0, 668, 672, 5, 7, 0, 0, 669, 670, 3, 52, 26, 0, 670, 671, 5, 64, 0, 0, 671, 673, 1, 0, 0, 0, 672, 669, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 3, 174, 87, 0, 675, 676, 3, 96, 48, 0, 676, 133, 1, 0, 0, 0, 677, 678, 5, 28, 0, 0, 678, 679, 5, 127, 0, 0, 679, 682, 3, 48, 24, 0, 680, 681, 5, 65, 0, 0, 681, 683, 3, 16, 8, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 691, 1, 0, 0, 0, 684, 685, 5, 29, 0, 0, 685, 688, 3, 48, 24, 0, 686, 687, 5, 65, 0, 0, 687, 689, 3, 16, 8, 0, 688, 686, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 691, 1, 0, 0, 0, 690, 677, 1, 0, 0, 0, 690, 684, 1, 0, 0, 0, 691, 135, 1, 0, 0, 0, 692, 694, 5, 27, 0, 0, 693, 695, 3, 62, 31, 0, 694, 693, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 699, 1, 0, 0, 0, 696, 698, 3, 138, 69, 0, 697, 696, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 137, 1, 0, 0, 0, 701, 699, 1, 0, 0, 0, 702, 703, 5, 122, 0, 0, 703, 704, 5, 65, 0, 0, 704, 714, 3, 52, 26, 0, 705, 706, 5, 123, 0, 0, 706, 707, 5, 65, 0, 0, 707, 714, 3, 140, 70, 0, 708, 709, 5, 121, 0, 0, 709, 710, 5, 65, 0, 0, 710, 714, 3, 52, 26, 0, 711, 712, 5, 86, 0, 0, 712, 714, 3, 180, 90, 0, 713, 702, 1, 0, 0, 0, 713, 705, 1, 0, 0, 0, 713, 708, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 714, 139, 1, 0, 0, 0, 715, 720, 3, 52, 26, 0, 716, 717, 5, 69, 0, 0, 717, 719, 3, 52, 26, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 141, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 5, 19, 0, 0, 724, 143, 1, 0, 0, 0, 725, 726, 5, 21, 0, 0, 726, 145, 1, 0, 0, 0, 727, 728, 5, 34, 0, 0, 728, 729, 3, 32, 16, 0, 729, 730, 5, 81, 0, 0, 730, 731, 3, 60, 30, 0, 731, 147, 1, 0, 0, 0, 732, 733, 5, 39, 0, 0, 733, 734, 3, 60, 30, 0, 734, 149, 1, 0, 0, 0, 735, 736, 5, 18, 0, 0, 736, 737, 3, 52, 26, 0, 737, 738, 5, 64, 0, 0, 738, 739, 3, 174, 87, 0, 739, 151, 1, 0, 0, 0, 740, 741, 5, 20, 0, 0, 741, 742, 3, 52, 26, 0, 742, 743, 5, 64, 0, 0, 743, 744, 3, 174, 87, 0, 744, 153, 1, 0, 0, 0, 745, 746, 5, 22, 0, 0, 746, 747, 3, 52, 26, 0, 747, 748, 5, 64, 0, 0, 748, 749, 3, 174, 87, 0, 749, 750, 3, 96, 48, 0, 750, 155, 1, 0, 0, 0, 751, 752, 5, 42, 0, 0, 752, 753, 3, 158, 79, 0, 753, 754, 5, 68, 0, 0, 754, 157, 1, 0, 0, 0, 755, 756, 3, 62, 31, 0, 756, 759, 5, 64, 0, 0, 757, 760, 3, 186, 93, 0, 758, 760, 3, 180, 90, 0, 759, 757, 1, 0, 0, 0, 759, 758, 1, 0, 0, 0, 760, 159, 1, 0, 0, 0, 761, 763, 5, 35, 0, 0, 762, 764, 3, 162, 81, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 81, 0, 0, 766, 767, 3, 52, 26, 0, 767, 768, 5, 142, 0, 0, 768, 769, 3, 194, 97, 0, 769, 770, 3, 96, 48, 0, 770, 161, 1, 0, 0, 0, 771, 774, 3, 66, 33, 0, 772, 774, 3, 174, 87, 0, 773, 771, 1, 0, 0, 0, 773, 772, 1, 0, 0, 0, 774, 163, 1, 0, 0, 0, 775, 776, 6, 82, -1, 0, 776, 777, 5, 78, 0, 0, 777, 805, 3, 164, 82, 8, 778, 805, 3, 170, 85, 0, 779, 805, 3, 166, 83, 0, 780, 782, 3, 170, 85, 0, 781, 783, 5, 78, 0, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 74, 0, 0, 785, 786, 5, 106, 0, 0, 786, 791, 3, 170, 85, 0, 787, 788, 5, 69, 0, 0, 788, 790, 3, 170, 85, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 5, 107, 0, 0, 795, 805, 1, 0, 0, 0, 796, 797, 3, 170, 85, 0, 797, 799, 5, 75, 0, 0, 798, 800, 5, 78, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 5, 79, 0, 0, 802, 805, 1, 0, 0, 0, 803, 805, 3, 168, 84, 0, 804, 775, 1, 0, 0, 0, 804, 778, 1, 0, 0, 0, 804, 779, 1, 0, 0, 0, 804, 780, 1, 0, 0, 0, 804, 796, 1, 0, 0, 0, 804, 803, 1, 0, 0, 0, 805, 814, 1, 0, 0, 0, 806, 807, 10, 5, 0, 0, 807, 808, 5, 62, 0, 0, 808, 813, 3, 164, 82, 6, 809, 810, 10, 4, 0, 0, 810, 811, 5, 82, 0, 0, 811, 813, 3, 164, 82, 5, 812, 806, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 813, 816, 1, 0, 0, 0, 814, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 165, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 817, 819, 3, 170, 85, 0, 818, 820, 5, 78, 0, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 77, 0, 0, 822, 823, 3, 72, 36, 0, 823, 864, 1, 0, 0, 0, 824, 826, 3, 170, 85, 0, 825, 827, 5, 78, 0, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 5, 84, 0, 0, 829, 830, 3, 72, 36, 0, 830, 864, 1, 0, 0, 0, 831, 833, 3, 170, 85, 0, 832, 834, 5, 78, 0, 0, 833, 832, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 5, 77, 0, 0, 836, 837, 5, 106, 0, 0, 837, 842, 3, 72, 36, 0, 838, 839, 5, 69, 0, 0, 839, 841, 3, 72, 36, 0, 840, 838, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 107, 0, 0, 846, 864, 1, 0, 0, 0, 847, 849, 3, 170, 85, 0, 848, 850, 5, 78, 0, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 84, 0, 0, 852, 853, 5, 106, 0, 0, 853, 858, 3, 72, 36, 0, 854, 855, 5, 69, 0, 0, 855, 857, 3, 72, 36, 0, 856, 854, 1, 0, 0, 0, 857, 860, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 861, 862, 5, 107, 0, 0, 862, 864, 1, 0, 0, 0, 863, 817, 1, 0, 0, 0, 863, 824, 1, 0, 0, 0, 863, 831, 1, 0, 0, 0, 863, 847, 1, 0, 0, 0, 864, 167, 1, 0, 0, 0, 865, 868, 3, 52, 26, 0, 866, 867, 5, 66, 0, 0, 867, 869, 3, 12, 6, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 871, 5, 67, 0, 0, 871, 872, 3, 186, 93, 0, 872, 169, 1, 0, 0, 0, 873, 879, 3, 172, 86, 0, 874, 875, 3, 172, 86, 0, 875, 876, 3, 198, 99, 0, 876, 877, 3, 172, 86, 0, 877, 879, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 878, 874, 1, 0, 0, 0, 879, 171, 1, 0, 0, 0, 880, 881, 6, 86, -1, 0, 881, 885, 3, 174, 87, 0, 882, 883, 7, 5, 0, 0, 883, 885, 3, 172, 86, 3, 884, 880, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 885, 894, 1, 0, 0, 0, 886, 887, 10, 2, 0, 0, 887, 888, 7, 6, 0, 0, 888, 893, 3, 172, 86, 3, 889, 890, 10, 1, 0, 0, 890, 891, 7, 5, 0, 0, 891, 893, 3, 172, 86, 2, 892, 886, 1, 0, 0, 0, 892, 889, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 173, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 897, 898, 6, 87, -1, 0, 898, 906, 3, 186, 93, 0, 899, 906, 3, 52, 26, 0, 900, 906, 3, 176, 88, 0, 901, 902, 5, 106, 0, 0, 902, 903, 3, 164, 82, 0, 903, 904, 5, 107, 0, 0, 904, 906, 1, 0, 0, 0, 905, 897, 1, 0, 0, 0, 905, 899, 1, 0, 0, 0, 905, 900, 1, 0, 0, 0, 905, 901, 1, 0, 0, 0, 906, 912, 1, 0, 0, 0, 907, 908, 10, 1, 0, 0, 908, 909, 5, 66, 0, 0, 909, 911, 3, 12, 6, 0, 910, 907, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 175, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 3, 178, 89, 0, 916, 930, 5, 106, 0, 0, 917, 931, 5, 96, 0, 0, 918, 923, 3, 164, 82, 0, 919, 920, 5, 69, 0, 0, 920, 922, 3, 164, 82, 0, 921, 919, 1, 0, 0, 0, 922, 925, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 928, 1, 0, 0, 0, 925, 923, 1, 0, 0, 0, 926, 927, 5, 69, 0, 0, 927, 929, 3, 180, 90, 0, 928, 926, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 1, 0, 0, 0, 930, 917, 1, 0, 0, 0, 930, 918, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 5, 107, 0, 0, 933, 177, 1, 0, 0, 0, 934, 938, 3, 70, 35, 0, 935, 938, 5, 73, 0, 0, 936, 938, 5, 76, 0, 0, 937, 934, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 937, 936, 1, 0, 0, 0, 938, 179, 1, 0, 0, 0, 939, 948, 5, 99, 0, 0, 940, 945, 3, 182, 91, 0, 941, 942, 5, 69, 0, 0, 942, 944, 3, 182, 91, 0, 943, 941, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 949, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 940, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 5, 100, 0, 0, 951, 181, 1, 0, 0, 0, 952, 953, 3, 196, 98, 0, 953, 954, 5, 67, 0, 0, 954, 955, 3, 184, 92, 0, 955, 183, 1, 0, 0, 0, 956, 959, 3, 186, 93, 0, 957, 959, 3, 180, 90, 0, 958, 956, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 185, 1, 0, 0, 0, 960, 1003, 5, 79, 0, 0, 961, 962, 3, 194, 97, 0, 962, 963, 5, 108, 0, 0, 963, 1003, 1, 0, 0, 0, 964, 1003, 3, 192, 96, 0, 965, 1003, 3, 194, 97, 0, 966, 1003, 3, 188, 94, 0, 967, 1003, 3, 66, 33, 0, 968, 1003, 3, 196, 98, 0, 969, 970, 5, 104, 0, 0, 970, 975, 3, 190, 95, 0, 971, 972, 5, 69, 0, 0, 972, 974, 3, 190, 95, 0, 973, 971, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 979, 5, 105, 0, 0, 979, 1003, 1, 0, 0, 0, 980, 981, 5, 104, 0, 0, 981, 986, 3, 188, 94, 0, 982, 983, 5, 69, 0, 0, 983, 985, 3, 188, 94, 0, 984, 982, 1, 0, 0, 0, 985, 988, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 989, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 989, 990, 5, 105, 0, 0, 990, 1003, 1, 0, 0, 0, 991, 992, 5, 104, 0, 0, 992, 997, 3, 196, 98, 0, 993, 994, 5, 69, 0, 0, 994, 996, 3, 196, 98, 0, 995, 993, 1, 0, 0, 0, 996, 999, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1000, 1, 0, 0, 0, 999, 997, 1, 0, 0, 0, 1000, 1001, 5, 105, 0, 0, 1001, 1003, 1, 0, 0, 0, 1002, 960, 1, 0, 0, 0, 1002, 961, 1, 0, 0, 0, 1002, 964, 1, 0, 0, 0, 1002, 965, 1, 0, 0, 0, 1002, 966, 1, 0, 0, 0, 1002, 967, 1, 0, 0, 0, 1002, 968, 1, 0, 0, 0, 1002, 969, 1, 0, 0, 0, 1002, 980, 1, 0, 0, 0, 1002, 991, 1, 0, 0, 0, 1003, 187, 1, 0, 0, 0, 1004, 1005, 7, 7, 0, 0, 1005, 189, 1, 0, 0, 0, 1006, 1009, 3, 192, 96, 0, 1007, 1009, 3, 194, 97, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1007, 1, 0, 0, 0, 1009, 191, 1, 0, 0, 0, 1010, 1012, 7, 5, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 193, 1, 0, 0, 0, 1015, 1017, 7, 5, 0, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 5, 60, 0, 0, 1019, 195, 1, 0, 0, 0, 1020, 1021, 5, 59, 0, 0, 1021, 197, 1, 0, 0, 0, 1022, 1023, 7, 8, 0, 0, 1023, 199, 1, 0, 0, 0, 1024, 1025, 7, 9, 0, 0, 1025, 1026, 5, 131, 0, 0, 1026, 1027, 3, 202, 101, 0, 1027, 1028, 3, 204, 102, 0, 1028, 201, 1, 0, 0, 0, 1029, 1030, 4, 101, 13, 0, 1030, 1032, 3, 32, 16, 0, 1031, 1033, 5, 159, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 5, 114, 0, 0, 1035, 1038, 1, 0, 0, 0, 1036, 1038, 3, 32, 16, 0, 1037, 1029, 1, 0, 0, 0, 1037, 1036, 1, 0, 0, 0, 1038, 203, 1, 0, 0, 0, 1039, 1040, 5, 81, 0, 0, 1040, 1045, 3, 164, 82, 0, 1041, 1042, 5, 69, 0, 0, 1042, 1044, 3, 164, 82, 0, 1043, 1041, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 205, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1052, 5, 40, 0, 0, 1049, 1051, 3, 210, 105, 0, 1050, 1049, 1, 0, 0, 0, 1051, 1054, 1, 0, 0, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1058, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1056, 3, 208, 104, 0, 1056, 1057, 5, 64, 0, 0, 1057, 1059, 1, 0, 0, 0, 1058, 1055, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 106, 0, 0, 1061, 1062, 5, 102, 0, 0, 1062, 1109, 5, 107, 0, 0, 1063, 1067, 5, 40, 0, 0, 1064, 1066, 3, 210, 105, 0, 1065, 1064, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1073, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1071, 3, 208, 104, 0, 1071, 1072, 5, 64, 0, 0, 1072, 1074, 1, 0, 0, 0, 1073, 1070, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1109, 5, 102, 0, 0, 1076, 1080, 5, 40, 0, 0, 1077, 1079, 3, 210, 105, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1086, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1084, 3, 208, 104, 0, 1084, 1085, 5, 64, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 5, 106, 0, 0, 1089, 1091, 3, 218, 109, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 5, 107, 0, 0, 1095, 1109, 1, 0, 0, 0, 1096, 1100, 5, 40, 0, 0, 1097, 1099, 3, 210, 105, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1105, 3, 218, 109, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1109, 1, 0, 0, 0, 1108, 1048, 1, 0, 0, 0, 1108, 1063, 1, 0, 0, 0, 1108, 1076, 1, 0, 0, 0, 1108, 1096, 1, 0, 0, 0, 1109, 207, 1, 0, 0, 0, 1110, 1111, 7, 1, 0, 0, 1111, 209, 1, 0, 0, 0, 1112, 1113, 3, 212, 106, 0, 1113, 1114, 5, 64, 0, 0, 1114, 1115, 3, 214, 107, 0, 1115, 211, 1, 0, 0, 0, 1116, 1117, 7, 10, 0, 0, 1117, 213, 1, 0, 0, 0, 1118, 1123, 3, 220, 110, 0, 1119, 1120, 5, 69, 0, 0, 1120, 1122, 3, 220, 110, 0, 1121, 1119, 1, 0, 0, 0, 1122, 1125, 1, 0, 0, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1129, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1126, 1129, 5, 109, 0, 0, 1127, 1129, 5, 102, 0, 0, 1128, 1118, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1128, 1127, 1, 0, 0, 0, 1129, 215, 1, 0, 0, 0, 1130, 1131, 7, 11, 0, 0, 1131, 217, 1, 0, 0, 0, 1132, 1134, 3, 216, 108, 0, 1133, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1146, 1, 0, 0, 0, 1137, 1141, 5, 106, 0, 0, 1138, 1140, 3, 218, 109, 0, 1139, 1138, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1146, 5, 107, 0, 0, 1145, 1133, 1, 0, 0, 0, 1145, 1137, 1, 0, 0, 0, 1146, 219, 1, 0, 0, 0, 1147, 1148, 3, 222, 111, 0, 1148, 1149, 5, 67, 0, 0, 1149, 1150, 3, 226, 113, 0, 1150, 1157, 1, 0, 0, 0, 1151, 1152, 3, 226, 113, 0, 1152, 1153, 5, 66, 0, 0, 1153, 1154, 3, 224, 112, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1157, 3, 228, 114, 0, 1156, 1147, 1, 0, 0, 0, 1156, 1151, 1, 0, 0, 0, 1156, 1155, 1, 0, 0, 0, 1157, 221, 1, 0, 0, 0, 1158, 1159, 7, 12, 0, 0, 1159, 223, 1, 0, 0, 0, 1160, 1161, 7, 12, 0, 0, 1161, 225, 1, 0, 0, 0, 1162, 1163, 7, 12, 0, 0, 1163, 227, 1, 0, 0, 0, 1164, 1165, 7, 13, 0, 0, 1165, 229, 1, 0, 0, 0, 114, 233, 250, 262, 294, 309, 315, 334, 338, 342, 350, 358, 363, 366, 382, 390, 394, 401, 407, 412, 421, 428, 434, 443, 450, 458, 466, 470, 474, 479, 483, 488, 496, 505, 510, 514, 528, 539, 545, 552, 561, 570, 590, 598, 601, 608, 620, 630, 638, 652, 661, 672, 682, 688, 690, 694, 699, 713, 720, 759, 763, 773, 782, 791, 799, 804, 812, 814, 819, 826, 833, 842, 849, 858, 863, 868, 878, 884, 892, 894, 905, 912, 923, 928, 930, 937, 945, 948, 958, 975, 986, 997, 1002, 1008, 1011, 1016, 1032, 1037, 1045, 1052, 1058, 1067, 1073, 1080, 1086, 1092, 1100, 1106, 1108, 1123, 1128, 1135, 1141, 1145, 1156] \ 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 00cd303f285bf..cdbcc7b3d3cd6 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 @@ -3172,26 +3172,24 @@ public final LimitByGroupKeyContext limitByGroupKey() throws RecognitionExceptio enterOuterAlt(_localctx, 1); { setState(490); - if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(491); match(BY); - setState(492); + setState(491); booleanExpression(0); - setState(497); + setState(496); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,31,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(493); + setState(492); match(COMMA); - setState(494); + setState(493); booleanExpression(0); } } } - setState(499); + setState(498); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,31,_ctx); } @@ -3248,25 +3246,25 @@ public final SortCommandContext sortCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(500); + setState(499); match(SORT); - setState(501); + setState(500); orderExpression(); - setState(506); + setState(505); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,32,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(502); + setState(501); match(COMMA); - setState(503); + setState(502); orderExpression(); } } } - setState(508); + setState(507); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,32,_ctx); } @@ -3322,14 +3320,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(509); + setState(508); booleanExpression(0); - setState(511); + setState(510); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(510); + setState(509); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -3343,14 +3341,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(515); + setState(514); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: { - setState(513); + setState(512); match(NULLS); - setState(514); + setState(513); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -3409,9 +3407,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(517); + setState(516); match(KEEP); - setState(518); + setState(517); qualifiedNamePatterns(); } } @@ -3458,9 +3456,9 @@ public final DropCommandContext dropCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(520); + setState(519); match(DROP); - setState(521); + setState(520); qualifiedNamePatterns(); } } @@ -3515,25 +3513,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(523); + setState(522); match(RENAME); - setState(524); + setState(523); renameClause(); - setState(529); + setState(528); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,35,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(525); + setState(524); match(COMMA); - setState(526); + setState(525); renameClause(); } } } - setState(531); + setState(530); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,35,_ctx); } @@ -3586,28 +3584,28 @@ public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); enterRule(_localctx, 88, RULE_renameClause); try { - setState(540); + setState(539); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(532); + setState(531); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(533); + setState(532); match(AS); - setState(534); + setState(533); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(536); + setState(535); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(537); + setState(536); match(ASSIGN); - setState(538); + setState(537); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); } break; @@ -3662,18 +3660,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(542); + setState(541); match(DISSECT); - setState(543); + setState(542); primaryExpression(0); - setState(544); + setState(543); string(); - setState(546); + setState(545); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(545); + setState(544); dissectCommandOptions(); } break; @@ -3730,23 +3728,23 @@ public final DissectCommandOptionsContext dissectCommandOptions() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(548); + setState(547); dissectCommandOption(); - setState(553); + setState(552); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,38,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(549); + setState(548); match(COMMA); - setState(550); + setState(549); dissectCommandOption(); } } } - setState(555); + setState(554); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,38,_ctx); } @@ -3798,11 +3796,11 @@ public final DissectCommandOptionContext dissectCommandOption() throws Recogniti try { enterOuterAlt(_localctx, 1); { - setState(556); + setState(555); identifier(); - setState(557); + setState(556); match(ASSIGN); - setState(558); + setState(557); constant(); } } @@ -3849,14 +3847,14 @@ public final CommandNamedParametersContext commandNamedParameters() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(562); + setState(561); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(560); + setState(559); match(WITH); - setState(561); + setState(560); mapExpression(); } break; @@ -3917,27 +3915,27 @@ public final GrokCommandContext grokCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(564); + setState(563); match(GROK); - setState(565); + setState(564); primaryExpression(0); - setState(566); + setState(565); string(); - setState(571); + setState(570); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(567); + setState(566); match(COMMA); - setState(568); + setState(567); string(); } } } - setState(573); + setState(572); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); } @@ -3986,9 +3984,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(574); + setState(573); match(MV_EXPAND); - setState(575); + setState(574); qualifiedName(); } } @@ -4035,9 +4033,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(577); + setState(576); match(DEV_EXPLAIN); - setState(578); + setState(577); subqueryExpression(); } } @@ -4085,11 +4083,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(580); + setState(579); match(LP); - setState(581); + setState(580); query(0); - setState(582); + setState(581); match(RP); } } @@ -4146,9 +4144,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(584); + setState(583); match(SHOW); - setState(585); + setState(584); match(INFO); } } @@ -4213,46 +4211,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(587); + setState(586); match(ENRICH); - setState(588); + setState(587); ((EnrichCommandContext)_localctx).policyName = enrichPolicyName(); - setState(591); + setState(590); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { - setState(589); + setState(588); match(ON); - setState(590); + setState(589); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(602); + setState(601); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: { - setState(593); + setState(592); match(WITH); - setState(594); + setState(593); enrichWithClause(); - setState(599); + setState(598); _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(595); + setState(594); match(COMMA); - setState(596); + setState(595); enrichWithClause(); } } } - setState(601); + setState(600); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,42,_ctx); } @@ -4303,7 +4301,7 @@ public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(604); + setState(603); _la = _input.LA(1); if ( !(_la==ENRICH_POLICY_NAME || _la==QUOTED_STRING) ) { _errHandler.recoverInline(this); @@ -4363,19 +4361,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(609); + setState(608); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { case 1: { - setState(606); + setState(605); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(607); + setState(606); match(ASSIGN); } break; } - setState(611); + setState(610); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -4423,9 +4421,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(613); + setState(612); match(SAMPLE); - setState(614); + setState(613); ((SampleCommandContext)_localctx).probability = constant(); } } @@ -4480,23 +4478,23 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(616); + setState(615); match(CHANGE_POINT); - setState(617); + setState(616); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(621); + setState(620); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,45,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(618); + setState(617); changePointConfiguration(); } } } - setState(623); + setState(622); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,45,_ctx); } @@ -4551,28 +4549,28 @@ public final ChangePointConfigurationContext changePointConfiguration() throws R ChangePointConfigurationContext _localctx = new ChangePointConfigurationContext(_ctx, getState()); enterRule(_localctx, 118, RULE_changePointConfiguration); try { - setState(631); + setState(630); _errHandler.sync(this); switch (_input.LA(1)) { case ON: enterOuterAlt(_localctx, 1); { - setState(624); + setState(623); match(ON); - setState(625); + setState(624); ((ChangePointConfigurationContext)_localctx).key = qualifiedName(); } break; case AS: enterOuterAlt(_localctx, 2); { - setState(626); + setState(625); match(AS); - setState(627); + setState(626); ((ChangePointConfigurationContext)_localctx).targetType = qualifiedName(); - setState(628); + setState(627); match(COMMA); - setState(629); + setState(628); ((ChangePointConfigurationContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -4623,9 +4621,9 @@ public final ForkCommandContext forkCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(633); + setState(632); match(FORK); - setState(634); + setState(633); forkSubQueries(); } } @@ -4675,7 +4673,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(637); + setState(636); _errHandler.sync(this); _alt = 1; do { @@ -4683,7 +4681,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(636); + setState(635); forkSubQuery(); } } @@ -4691,7 +4689,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(639); + setState(638); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,47,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -4741,11 +4739,11 @@ public final ForkSubQueryContext forkSubQuery() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(641); + setState(640); match(LP); - setState(642); + setState(641); forkSubQueryCommand(0); - setState(643); + setState(642); match(RP); } } @@ -4841,11 +4839,11 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(646); + setState(645); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(653); + setState(652); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,48,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4856,16 +4854,16 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(648); + setState(647); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(649); + setState(648); match(PIPE); - setState(650); + setState(649); forkSubQueryProcessingCommand(); } } } - setState(655); + setState(654); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,48,_ctx); } @@ -4913,7 +4911,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( try { enterOuterAlt(_localctx, 1); { - setState(656); + setState(655); processingCommand(); } } @@ -4974,27 +4972,27 @@ public final RerankCommandContext rerankCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(658); + setState(657); match(RERANK); - setState(662); + setState(661); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { - setState(659); + setState(658); ((RerankCommandContext)_localctx).targetField = qualifiedName(); - setState(660); + setState(659); match(ASSIGN); } break; } - setState(664); + setState(663); ((RerankCommandContext)_localctx).queryText = constant(); - setState(665); + setState(664); match(ON); - setState(666); + setState(665); ((RerankCommandContext)_localctx).rerankFields = fields(); - setState(667); + setState(666); commandNamedParameters(); } } @@ -5050,23 +5048,23 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(669); + setState(668); match(COMPLETION); - setState(673); + setState(672); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { - setState(670); + setState(669); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(671); + setState(670); match(ASSIGN); } break; } - setState(675); + setState(674); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(676); + setState(675); commandNamedParameters(); } } @@ -5119,26 +5117,26 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx InlineStatsCommandContext _localctx = new InlineStatsCommandContext(_ctx, getState()); enterRule(_localctx, 134, RULE_inlineStatsCommand); try { - setState(691); + setState(690); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: enterOuterAlt(_localctx, 1); { - setState(678); + setState(677); match(INLINE); - setState(679); + setState(678); match(INLINE_STATS); - setState(680); + setState(679); ((InlineStatsCommandContext)_localctx).stats = aggFields(); - setState(683); + setState(682); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: { - setState(681); + setState(680); match(BY); - setState(682); + setState(681); ((InlineStatsCommandContext)_localctx).grouping = fields(); } break; @@ -5148,18 +5146,18 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx case INLINESTATS: enterOuterAlt(_localctx, 2); { - setState(685); + setState(684); match(INLINESTATS); - setState(686); + setState(685); ((InlineStatsCommandContext)_localctx).stats = aggFields(); - setState(689); + setState(688); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: { - setState(687); + setState(686); match(BY); - setState(688); + setState(687); ((InlineStatsCommandContext)_localctx).grouping = fields(); } break; @@ -5221,31 +5219,31 @@ public final FuseCommandContext fuseCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(693); + setState(692); match(FUSE); - setState(695); + setState(694); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { - setState(694); + setState(693); ((FuseCommandContext)_localctx).fuseType = identifier(); } break; } - setState(700); + setState(699); _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(697); + setState(696); fuseConfiguration(); } } } - setState(702); + setState(701); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } @@ -5306,48 +5304,48 @@ public final FuseConfigurationContext fuseConfiguration() throws RecognitionExce FuseConfigurationContext _localctx = new FuseConfigurationContext(_ctx, getState()); enterRule(_localctx, 138, RULE_fuseConfiguration); try { - setState(714); + setState(713); _errHandler.sync(this); switch (_input.LA(1)) { case SCORE: enterOuterAlt(_localctx, 1); { - setState(703); + setState(702); match(SCORE); - setState(704); + setState(703); match(BY); - setState(705); + setState(704); ((FuseConfigurationContext)_localctx).score = qualifiedName(); } break; case KEY: enterOuterAlt(_localctx, 2); { - setState(706); + setState(705); match(KEY); - setState(707); + setState(706); match(BY); - setState(708); + setState(707); ((FuseConfigurationContext)_localctx).key = fuseKeyByFields(); } break; case GROUP: enterOuterAlt(_localctx, 3); { - setState(709); + setState(708); match(GROUP); - setState(710); + setState(709); match(BY); - setState(711); + setState(710); ((FuseConfigurationContext)_localctx).group = qualifiedName(); } break; case WITH: enterOuterAlt(_localctx, 4); { - setState(712); + setState(711); match(WITH); - setState(713); + setState(712); ((FuseConfigurationContext)_localctx).options = mapExpression(); } break; @@ -5405,23 +5403,23 @@ public final FuseKeyByFieldsContext fuseKeyByFields() throws RecognitionExceptio int _alt; enterOuterAlt(_localctx, 1); { - setState(716); + setState(715); qualifiedName(); - setState(721); + setState(720); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,57,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(717); + setState(716); match(COMMA); - setState(718); + setState(717); qualifiedName(); } } } - setState(723); + setState(722); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,57,_ctx); } @@ -5467,7 +5465,7 @@ public final MetricsInfoCommandContext metricsInfoCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(724); + setState(723); match(METRICS_INFO); } } @@ -5511,7 +5509,7 @@ public final TsInfoCommandContext tsInfoCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(726); + setState(725); match(TS_INFO); } } @@ -5564,13 +5562,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(728); + setState(727); match(DEV_LOOKUP); - setState(729); + setState(728); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(730); + setState(729); match(ON); - setState(731); + setState(730); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -5617,9 +5615,9 @@ public final InsistCommandContext insistCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(733); + setState(732); match(DEV_INSIST); - setState(734); + setState(733); qualifiedNamePatterns(); } } @@ -5670,13 +5668,13 @@ public final UriPartsCommandContext uriPartsCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(736); + setState(735); match(URI_PARTS); - setState(737); + setState(736); qualifiedName(); - setState(738); + setState(737); match(ASSIGN); - setState(739); + setState(738); primaryExpression(0); } } @@ -5727,13 +5725,13 @@ public final RegisteredDomainCommandContext registeredDomainCommand() throws Rec try { enterOuterAlt(_localctx, 1); { - setState(741); + setState(740); match(REGISTERED_DOMAIN); - setState(742); + setState(741); qualifiedName(); - setState(743); + setState(742); match(ASSIGN); - setState(744); + setState(743); primaryExpression(0); } } @@ -5787,15 +5785,15 @@ public final UserAgentCommandContext userAgentCommand() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(746); + setState(745); match(USER_AGENT); - setState(747); + setState(746); qualifiedName(); - setState(748); + setState(747); match(ASSIGN); - setState(749); + setState(748); primaryExpression(0); - setState(750); + setState(749); commandNamedParameters(); } } @@ -5843,11 +5841,11 @@ public final SetCommandContext setCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(752); + setState(751); match(SET); - setState(753); + setState(752); setField(); - setState(754); + setState(753); match(SEMICOLON); } } @@ -5900,11 +5898,11 @@ public final SetFieldContext setField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(756); + setState(755); identifier(); - setState(757); + setState(756); match(ASSIGN); - setState(760); + setState(759); _errHandler.sync(this); switch (_input.LA(1)) { case QUOTED_STRING: @@ -5919,13 +5917,13 @@ public final SetFieldContext setField() throws RecognitionException { case NAMED_OR_POSITIONAL_PARAM: case OPENING_BRACKET: { - setState(758); + setState(757); constant(); } break; case LEFT_BRACES: { - setState(759); + setState(758); mapExpression(); } break; @@ -5991,27 +5989,27 @@ public final MmrCommandContext mmrCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(762); + setState(761); match(MMR); - setState(764); + setState(763); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: { - setState(763); + setState(762); ((MmrCommandContext)_localctx).queryVector = mmrQueryVectorParams(); } break; } - setState(766); + setState(765); match(ON); - setState(767); + setState(766); ((MmrCommandContext)_localctx).diversifyField = qualifiedName(); - setState(768); + setState(767); match(MMR_LIMIT); - setState(769); + setState(768); ((MmrCommandContext)_localctx).limitValue = integerValue(); - setState(770); + setState(769); commandNamedParameters(); } } @@ -6087,14 +6085,14 @@ public final MmrQueryVectorParamsContext mmrQueryVectorParams() throws Recogniti MmrQueryVectorParamsContext _localctx = new MmrQueryVectorParamsContext(_ctx, getState()); enterRule(_localctx, 162, RULE_mmrQueryVectorParams); try { - setState(774); + setState(773); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: _localctx = new MmrQueryVectorParameterContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(772); + setState(771); parameter(); } break; @@ -6102,7 +6100,7 @@ public final MmrQueryVectorParamsContext mmrQueryVectorParams() throws Recogniti _localctx = new MmrQueryVectorExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(773); + setState(772); primaryExpression(0); } break; @@ -6320,7 +6318,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(805); + setState(804); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: @@ -6329,9 +6327,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(777); + setState(776); match(NOT); - setState(778); + setState(777); booleanExpression(8); } break; @@ -6340,7 +6338,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(779); + setState(778); valueExpression(); } break; @@ -6349,7 +6347,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(780); + setState(779); regexBooleanExpression(); } break; @@ -6358,41 +6356,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(781); + setState(780); valueExpression(); - setState(783); + setState(782); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(782); + setState(781); match(NOT); } } - setState(785); + setState(784); match(IN); - setState(786); + setState(785); match(LP); - setState(787); + setState(786); valueExpression(); - setState(792); + setState(791); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(788); + setState(787); match(COMMA); - setState(789); + setState(788); valueExpression(); } } - setState(794); + setState(793); _errHandler.sync(this); _la = _input.LA(1); } - setState(795); + setState(794); match(RP); } break; @@ -6401,21 +6399,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(797); + setState(796); valueExpression(); - setState(798); + setState(797); match(IS); - setState(800); + setState(799); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(799); + setState(798); match(NOT); } } - setState(802); + setState(801); match(NULL); } break; @@ -6424,13 +6422,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(804); + setState(803); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(815); + setState(814); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,66,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -6438,7 +6436,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(813); + setState(812); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: @@ -6446,11 +6444,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(807); + setState(806); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(808); + setState(807); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(809); + setState(808); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -6459,18 +6457,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(810); + setState(809); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(811); + setState(810); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(812); + setState(811); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(817); + setState(816); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,66,_ctx); } @@ -6629,28 +6627,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 166, RULE_regexBooleanExpression); int _la; try { - setState(864); + setState(863); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(818); + setState(817); valueExpression(); - setState(820); + setState(819); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(819); + setState(818); match(NOT); } } - setState(822); + setState(821); match(LIKE); - setState(823); + setState(822); stringOrParameter(); } break; @@ -6658,21 +6656,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(825); + setState(824); valueExpression(); - setState(827); + setState(826); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(826); + setState(825); match(NOT); } } - setState(829); + setState(828); match(RLIKE); - setState(830); + setState(829); stringOrParameter(); } break; @@ -6680,41 +6678,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(832); + setState(831); valueExpression(); - setState(834); + setState(833); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(833); + setState(832); match(NOT); } } - setState(836); + setState(835); match(LIKE); - setState(837); + setState(836); match(LP); - setState(838); + setState(837); stringOrParameter(); - setState(843); + setState(842); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(839); + setState(838); match(COMMA); - setState(840); + setState(839); stringOrParameter(); } } - setState(845); + setState(844); _errHandler.sync(this); _la = _input.LA(1); } - setState(846); + setState(845); match(RP); } break; @@ -6722,41 +6720,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(848); + setState(847); valueExpression(); - setState(850); + setState(849); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(849); + setState(848); match(NOT); } } - setState(852); + setState(851); match(RLIKE); - setState(853); + setState(852); match(LP); - setState(854); + setState(853); stringOrParameter(); - setState(859); + setState(858); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(855); + setState(854); match(COMMA); - setState(856); + setState(855); stringOrParameter(); } } - setState(861); + setState(860); _errHandler.sync(this); _la = _input.LA(1); } - setState(862); + setState(861); match(RP); } break; @@ -6816,23 +6814,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(866); + setState(865); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(869); + setState(868); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(867); + setState(866); match(CAST_OP); - setState(868); + setState(867); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(871); + setState(870); match(COLON); - setState(872); + setState(871); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -6916,14 +6914,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 170, RULE_valueExpression); try { - setState(879); + setState(878); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(874); + setState(873); operatorExpression(0); } break; @@ -6931,11 +6929,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(875); + setState(874); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(876); + setState(875); comparisonOperator(); - setState(877); + setState(876); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -7060,7 +7058,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(885); + setState(884); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,76,_ctx) ) { case 1: @@ -7069,7 +7067,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(882); + setState(881); primaryExpression(0); } break; @@ -7078,7 +7076,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(883); + setState(882); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -7089,13 +7087,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(884); + setState(883); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(895); + setState(894); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,78,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -7103,7 +7101,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(893); + setState(892); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,77,_ctx) ) { case 1: @@ -7111,9 +7109,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(887); + setState(886); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(888); + setState(887); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 96)) & ~0x3f) == 0 && ((1L << (_la - 96)) & 7L) != 0)) ) { @@ -7124,7 +7122,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(889); + setState(888); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -7133,9 +7131,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(890); + setState(889); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(891); + setState(890); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -7146,14 +7144,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(892); + setState(891); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(897); + setState(896); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,78,_ctx); } @@ -7311,7 +7309,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(906); + setState(905); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,79,_ctx) ) { case 1: @@ -7320,7 +7318,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(899); + setState(898); constant(); } break; @@ -7329,7 +7327,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(900); + setState(899); qualifiedName(); } break; @@ -7338,7 +7336,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(901); + setState(900); functionExpression(); } break; @@ -7347,17 +7345,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(902); + setState(901); match(LP); - setState(903); + setState(902); booleanExpression(0); - setState(904); + setState(903); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(913); + setState(912); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,80,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -7368,16 +7366,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(908); + setState(907); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(909); + setState(908); match(CAST_OP); - setState(910); + setState(909); dataType(); } } } - setState(915); + setState(914); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,80,_ctx); } @@ -7443,50 +7441,50 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(916); + setState(915); functionName(); - setState(917); + setState(916); match(LP); - setState(931); + setState(930); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { case 1: { - setState(918); + setState(917); match(ASTERISK); } break; case 2: { { - setState(919); + setState(918); booleanExpression(0); - setState(924); + setState(923); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,81,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(920); + setState(919); match(COMMA); - setState(921); + setState(920); booleanExpression(0); } } } - setState(926); + setState(925); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,81,_ctx); } - setState(929); + setState(928); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(927); + setState(926); match(COMMA); - setState(928); + setState(927); mapExpression(); } } @@ -7495,7 +7493,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } break; } - setState(933); + setState(932); match(RP); } } @@ -7541,7 +7539,7 @@ public final FunctionNameContext functionName() throws RecognitionException { FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); enterRule(_localctx, 178, RULE_functionName); try { - setState(938); + setState(937); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: @@ -7552,21 +7550,21 @@ public final FunctionNameContext functionName() throws RecognitionException { case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(935); + setState(934); identifierOrParameter(); } break; case FIRST: enterOuterAlt(_localctx, 2); { - setState(936); + setState(935); match(FIRST); } break; case LAST: enterOuterAlt(_localctx, 3); { - setState(937); + setState(936); match(LAST); } break; @@ -7626,35 +7624,35 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(940); + setState(939); match(LEFT_BRACES); - setState(949); + setState(948); _errHandler.sync(this); _la = _input.LA(1); if (_la==QUOTED_STRING) { { - setState(941); + setState(940); entryExpression(); - setState(946); + setState(945); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(942); + setState(941); match(COMMA); - setState(943); + setState(942); entryExpression(); } } - setState(948); + setState(947); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(951); + setState(950); match(RIGHT_BRACES); } } @@ -7706,11 +7704,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(953); + setState(952); ((EntryExpressionContext)_localctx).key = string(); - setState(954); + setState(953); match(COLON); - setState(955); + setState(954); ((EntryExpressionContext)_localctx).value = mapValue(); } } @@ -7757,7 +7755,7 @@ public final MapValueContext mapValue() throws RecognitionException { MapValueContext _localctx = new MapValueContext(_ctx, getState()); enterRule(_localctx, 184, RULE_mapValue); try { - setState(959); + setState(958); _errHandler.sync(this); switch (_input.LA(1)) { case QUOTED_STRING: @@ -7773,14 +7771,14 @@ public final MapValueContext mapValue() throws RecognitionException { case OPENING_BRACKET: enterOuterAlt(_localctx, 1); { - setState(957); + setState(956); constant(); } break; case LEFT_BRACES: enterOuterAlt(_localctx, 2); { - setState(958); + setState(957); mapExpression(); } break; @@ -8055,14 +8053,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 186, RULE_constant); int _la; try { - setState(1003); + setState(1002); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,91,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(961); + setState(960); match(NULL); } break; @@ -8070,9 +8068,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(962); + setState(961); integerValue(); - setState(963); + setState(962); match(UNQUOTED_IDENTIFIER); } break; @@ -8080,7 +8078,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(965); + setState(964); decimalValue(); } break; @@ -8088,7 +8086,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(966); + setState(965); integerValue(); } break; @@ -8096,7 +8094,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(967); + setState(966); booleanValue(); } break; @@ -8104,7 +8102,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(968); + setState(967); parameter(); } break; @@ -8112,7 +8110,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(969); + setState(968); string(); } break; @@ -8120,27 +8118,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(970); + setState(969); match(OPENING_BRACKET); - setState(971); + setState(970); numericValue(); - setState(976); + setState(975); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(972); + setState(971); match(COMMA); - setState(973); + setState(972); numericValue(); } } - setState(978); + setState(977); _errHandler.sync(this); _la = _input.LA(1); } - setState(979); + setState(978); match(CLOSING_BRACKET); } break; @@ -8148,27 +8146,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(981); + setState(980); match(OPENING_BRACKET); - setState(982); + setState(981); booleanValue(); - setState(987); + setState(986); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(983); + setState(982); match(COMMA); - setState(984); + setState(983); booleanValue(); } } - setState(989); + setState(988); _errHandler.sync(this); _la = _input.LA(1); } - setState(990); + setState(989); match(CLOSING_BRACKET); } break; @@ -8176,27 +8174,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(992); + setState(991); match(OPENING_BRACKET); - setState(993); + setState(992); string(); - setState(998); + setState(997); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(994); + setState(993); match(COMMA); - setState(995); + setState(994); string(); } } - setState(1000); + setState(999); _errHandler.sync(this); _la = _input.LA(1); } - setState(1001); + setState(1000); match(CLOSING_BRACKET); } break; @@ -8244,7 +8242,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1005); + setState(1004); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -8299,20 +8297,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 190, RULE_numericValue); try { - setState(1009); + setState(1008); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,92,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1007); + setState(1006); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1008); + setState(1007); integerValue(); } break; @@ -8361,12 +8359,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1012); + setState(1011); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(1011); + setState(1010); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -8379,7 +8377,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(1014); + setState(1013); match(DECIMAL_LITERAL); } } @@ -8426,12 +8424,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1017); + setState(1016); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(1016); + setState(1015); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -8444,7 +8442,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(1019); + setState(1018); match(INTEGER_LITERAL); } } @@ -8488,7 +8486,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1021); + setState(1020); match(QUOTED_STRING); } } @@ -8538,7 +8536,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(1023); + setState(1022); _la = _input.LA(1); if ( !(((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -8601,7 +8599,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1025); + setState(1024); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 13958643712L) != 0)) ) { @@ -8612,11 +8610,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1026); + setState(1025); match(JOIN); - setState(1027); + setState(1026); joinTarget(); - setState(1028); + setState(1027); joinCondition(); } } @@ -8665,34 +8663,34 @@ public final JoinTargetContext joinTarget() throws RecognitionException { enterRule(_localctx, 202, RULE_joinTarget); int _la; try { - setState(1038); + setState(1037); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,96,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1030); + setState(1029); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(1031); + setState(1030); ((JoinTargetContext)_localctx).index = indexPattern(); - setState(1033); + setState(1032); _errHandler.sync(this); _la = _input.LA(1); if (_la==AS) { { - setState(1032); + setState(1031); match(AS); } } - setState(1035); + setState(1034); ((JoinTargetContext)_localctx).qualifier = match(UNQUOTED_SOURCE); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1037); + setState(1036); ((JoinTargetContext)_localctx).index = indexPattern(); } break; @@ -8749,25 +8747,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(1040); + setState(1039); match(ON); - setState(1041); + setState(1040); booleanExpression(0); - setState(1046); + setState(1045); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,97,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1042); + setState(1041); match(COMMA); - setState(1043); + setState(1042); booleanExpression(0); } } } - setState(1048); + setState(1047); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,97,_ctx); } @@ -8832,162 +8830,162 @@ public final PromqlCommandContext promqlCommand() throws RecognitionException { int _la; try { int _alt; - setState(1109); + setState(1108); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,107,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1049); + setState(1048); match(PROMQL); - setState(1053); + setState(1052); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,98,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1050); + setState(1049); promqlParam(); } } } - setState(1055); + setState(1054); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,98,_ctx); } - setState(1059); + setState(1058); _errHandler.sync(this); _la = _input.LA(1); if (_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) { { - setState(1056); + setState(1055); valueName(); - setState(1057); + setState(1056); match(ASSIGN); } } - setState(1061); + setState(1060); match(LP); - setState(1062); + setState(1061); match(NAMED_OR_POSITIONAL_PARAM); - setState(1063); + setState(1062); match(RP); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1064); + setState(1063); match(PROMQL); - setState(1068); + setState(1067); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,100,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1065); + setState(1064); promqlParam(); } } } - setState(1070); + setState(1069); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,100,_ctx); } - setState(1074); + setState(1073); _errHandler.sync(this); _la = _input.LA(1); if (_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) { { - setState(1071); + setState(1070); valueName(); - setState(1072); + setState(1071); match(ASSIGN); } } - setState(1076); + setState(1075); match(NAMED_OR_POSITIONAL_PARAM); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1077); + setState(1076); match(PROMQL); - setState(1081); + setState(1080); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,102,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1078); + setState(1077); promqlParam(); } } } - setState(1083); + setState(1082); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,102,_ctx); } - setState(1087); + setState(1086); _errHandler.sync(this); _la = _input.LA(1); if (_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) { { - setState(1084); + setState(1083); valueName(); - setState(1085); + setState(1084); match(ASSIGN); } } - setState(1089); + setState(1088); match(LP); - setState(1091); + setState(1090); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(1090); + setState(1089); promqlQueryPart(); } } - setState(1093); + setState(1092); _errHandler.sync(this); _la = _input.LA(1); } while ( ((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 37867180460606881L) != 0) || ((((_la - 156)) & ~0x3f) == 0 && ((1L << (_la - 156)) & 7L) != 0) ); - setState(1095); + setState(1094); match(RP); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1097); + setState(1096); match(PROMQL); - setState(1101); + setState(1100); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,105,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1098); + setState(1097); promqlParam(); } } } - setState(1103); + setState(1102); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,105,_ctx); } - setState(1105); + setState(1104); _errHandler.sync(this); _alt = 1; do { @@ -8995,7 +8993,7 @@ public final PromqlCommandContext promqlCommand() throws RecognitionException { case 1: { { - setState(1104); + setState(1103); promqlQueryPart(); } } @@ -9003,7 +9001,7 @@ public final PromqlCommandContext promqlCommand() throws RecognitionException { default: throw new NoViableAltException(this); } - setState(1107); + setState(1106); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,106,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -9053,7 +9051,7 @@ public final ValueNameContext valueName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1111); + setState(1110); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -9113,11 +9111,11 @@ public final PromqlParamContext promqlParam() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(1113); + setState(1112); ((PromqlParamContext)_localctx).name = promqlParamName(); - setState(1114); + setState(1113); match(ASSIGN); - setState(1115); + setState(1114); ((PromqlParamContext)_localctx).value = promqlParamValue(); } } @@ -9165,7 +9163,7 @@ public final PromqlParamNameContext promqlParamName() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(1117); + setState(1116); _la = _input.LA(1); if ( !(((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 1697645953286145L) != 0)) ) { _errHandler.recoverInline(this); @@ -9227,7 +9225,7 @@ public final PromqlParamValueContext promqlParamValue() throws RecognitionExcept enterRule(_localctx, 214, RULE_promqlParamValue); try { int _alt; - setState(1129); + setState(1128); _errHandler.sync(this); switch (_input.LA(1)) { case QUOTED_STRING: @@ -9235,23 +9233,23 @@ public final PromqlParamValueContext promqlParamValue() throws RecognitionExcept case UNQUOTED_SOURCE: enterOuterAlt(_localctx, 1); { - setState(1119); + setState(1118); promqlIndexPattern(); - setState(1124); + setState(1123); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,108,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1120); + setState(1119); match(COMMA); - setState(1121); + setState(1120); promqlIndexPattern(); } } } - setState(1126); + setState(1125); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,108,_ctx); } @@ -9260,14 +9258,14 @@ public final PromqlParamValueContext promqlParamValue() throws RecognitionExcept case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 2); { - setState(1127); + setState(1126); match(QUOTED_IDENTIFIER); } break; case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 3); { - setState(1128); + setState(1127); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -9327,7 +9325,7 @@ public final PromqlQueryContentContext promqlQueryContent() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(1131); + setState(1130); _la = _input.LA(1); if ( !(((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 37726442972251553L) != 0) || ((((_la - 156)) & ~0x3f) == 0 && ((1L << (_la - 156)) & 7L) != 0)) ) { _errHandler.recoverInline(this); @@ -9392,7 +9390,7 @@ public final PromqlQueryPartContext promqlQueryPart() throws RecognitionExceptio int _la; try { int _alt; - setState(1146); + setState(1145); _errHandler.sync(this); switch (_input.LA(1)) { case QUOTED_STRING: @@ -9409,7 +9407,7 @@ public final PromqlQueryPartContext promqlQueryPart() throws RecognitionExceptio case PROMQL_OTHER_QUERY_CONTENT: enterOuterAlt(_localctx, 1); { - setState(1134); + setState(1133); _errHandler.sync(this); _alt = 1; do { @@ -9417,7 +9415,7 @@ public final PromqlQueryPartContext promqlQueryPart() throws RecognitionExceptio case 1: { { - setState(1133); + setState(1132); promqlQueryContent(); } } @@ -9425,7 +9423,7 @@ public final PromqlQueryPartContext promqlQueryPart() throws RecognitionExceptio default: throw new NoViableAltException(this); } - setState(1136); + setState(1135); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,110,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -9434,23 +9432,23 @@ public final PromqlQueryPartContext promqlQueryPart() throws RecognitionExceptio case LP: enterOuterAlt(_localctx, 2); { - setState(1138); + setState(1137); match(LP); - setState(1142); + setState(1141); _errHandler.sync(this); _la = _input.LA(1); while (((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 37867180460606881L) != 0) || ((((_la - 156)) & ~0x3f) == 0 && ((1L << (_la - 156)) & 7L) != 0)) { { { - setState(1139); + setState(1138); promqlQueryPart(); } } - setState(1144); + setState(1143); _errHandler.sync(this); _la = _input.LA(1); } - setState(1145); + setState(1144); match(RP); } break; @@ -9509,35 +9507,35 @@ public final PromqlIndexPatternContext promqlIndexPattern() throws RecognitionEx PromqlIndexPatternContext _localctx = new PromqlIndexPatternContext(_ctx, getState()); enterRule(_localctx, 220, RULE_promqlIndexPattern); try { - setState(1157); + setState(1156); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,113,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1148); + setState(1147); promqlClusterString(); - setState(1149); + setState(1148); match(COLON); - setState(1150); + setState(1149); promqlUnquotedIndexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1152); + setState(1151); promqlUnquotedIndexString(); - setState(1153); + setState(1152); match(CAST_OP); - setState(1154); + setState(1153); promqlSelectorString(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1156); + setState(1155); promqlIndexString(); } break; @@ -9585,7 +9583,7 @@ public final PromqlClusterStringContext promqlClusterString() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(1159); + setState(1158); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -9639,7 +9637,7 @@ public final PromqlSelectorStringContext promqlSelectorString() throws Recogniti try { enterOuterAlt(_localctx, 1); { - setState(1161); + setState(1160); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -9693,7 +9691,7 @@ public final PromqlUnquotedIndexStringContext promqlUnquotedIndexString() throws try { enterOuterAlt(_localctx, 1); { - setState(1163); + setState(1162); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -9748,7 +9746,7 @@ public final PromqlIndexStringContext promqlIndexString() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(1165); + setState(1164); _la = _input.LA(1); if ( !(((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 36591746972385281L) != 0)) ) { _errHandler.recoverInline(this); @@ -9783,8 +9781,6 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return qualifiedName_sempred((QualifiedNameContext)_localctx, predIndex); case 28: return qualifiedNamePattern_sempred((QualifiedNamePatternContext)_localctx, predIndex); - case 38: - return limitByGroupKey_sempred((LimitByGroupKeyContext)_localctx, predIndex); case 63: return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex); case 82: @@ -9837,55 +9833,48 @@ private boolean qualifiedNamePattern_sempred(QualifiedNamePatternContext _localc } return true; } - private boolean limitByGroupKey_sempred(LimitByGroupKeyContext _localctx, int predIndex) { - switch (predIndex) { - case 7: - return this.isDevVersion(); - } - return true; - } private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx, int predIndex) { switch (predIndex) { - case 8: + case 7: return precpred(_ctx, 1); } return true; } private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 9: + case 8: return precpred(_ctx, 5); - case 10: + case 9: return precpred(_ctx, 4); } return true; } private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 11: + case 10: return precpred(_ctx, 2); - case 12: + case 11: return precpred(_ctx, 1); } return true; } private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 13: + case 12: return precpred(_ctx, 1); } return true; } private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { switch (predIndex) { - case 14: + case 13: return this.isDevVersion(); } return true; } public static final String _serializedATN = - "\u0004\u0001\u00a9\u0490\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u00a9\u048f\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"+ @@ -9951,73 +9940,73 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { "\f\u001e\u01cc\t\u001e\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0003"+ " \u01d3\b \u0001!\u0001!\u0003!\u01d7\b!\u0001\"\u0001\"\u0003\"\u01db"+ "\b\"\u0001#\u0001#\u0001#\u0003#\u01e0\b#\u0001$\u0001$\u0003$\u01e4\b"+ - "$\u0001%\u0001%\u0001%\u0003%\u01e9\b%\u0001&\u0001&\u0001&\u0001&\u0001"+ - "&\u0005&\u01f0\b&\n&\f&\u01f3\t&\u0001\'\u0001\'\u0001\'\u0001\'\u0005"+ - "\'\u01f9\b\'\n\'\f\'\u01fc\t\'\u0001(\u0001(\u0003(\u0200\b(\u0001(\u0001"+ - "(\u0003(\u0204\b(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001+\u0001"+ - "+\u0001+\u0001+\u0005+\u0210\b+\n+\f+\u0213\t+\u0001,\u0001,\u0001,\u0001"+ - ",\u0001,\u0001,\u0001,\u0001,\u0003,\u021d\b,\u0001-\u0001-\u0001-\u0001"+ - "-\u0003-\u0223\b-\u0001.\u0001.\u0001.\u0005.\u0228\b.\n.\f.\u022b\t."+ - "\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00030\u0233\b0\u00011\u0001"+ - "1\u00011\u00011\u00011\u00051\u023a\b1\n1\f1\u023d\t1\u00012\u00012\u0001"+ - "2\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00015\u00015\u0001"+ - "5\u00016\u00016\u00016\u00016\u00036\u0250\b6\u00016\u00016\u00016\u0001"+ - "6\u00056\u0256\b6\n6\f6\u0259\t6\u00036\u025b\b6\u00017\u00017\u00018"+ - "\u00018\u00018\u00038\u0262\b8\u00018\u00018\u00019\u00019\u00019\u0001"+ - ":\u0001:\u0001:\u0005:\u026c\b:\n:\f:\u026f\t:\u0001;\u0001;\u0001;\u0001"+ - ";\u0001;\u0001;\u0001;\u0003;\u0278\b;\u0001<\u0001<\u0001<\u0001=\u0004"+ - "=\u027e\b=\u000b=\f=\u027f\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001"+ - "?\u0001?\u0001?\u0001?\u0005?\u028c\b?\n?\f?\u028f\t?\u0001@\u0001@\u0001"+ - "A\u0001A\u0001A\u0001A\u0003A\u0297\bA\u0001A\u0001A\u0001A\u0001A\u0001"+ - "A\u0001B\u0001B\u0001B\u0001B\u0003B\u02a2\bB\u0001B\u0001B\u0001B\u0001"+ - "C\u0001C\u0001C\u0001C\u0001C\u0003C\u02ac\bC\u0001C\u0001C\u0001C\u0001"+ - "C\u0003C\u02b2\bC\u0003C\u02b4\bC\u0001D\u0001D\u0003D\u02b8\bD\u0001"+ - "D\u0005D\u02bb\bD\nD\fD\u02be\tD\u0001E\u0001E\u0001E\u0001E\u0001E\u0001"+ - "E\u0001E\u0001E\u0001E\u0001E\u0001E\u0003E\u02cb\bE\u0001F\u0001F\u0001"+ - "F\u0005F\u02d0\bF\nF\fF\u02d3\tF\u0001G\u0001G\u0001H\u0001H\u0001I\u0001"+ - "I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+ - "K\u0001K\u0001L\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001"+ - "M\u0001M\u0001M\u0001N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001"+ - "O\u0003O\u02f9\bO\u0001P\u0001P\u0003P\u02fd\bP\u0001P\u0001P\u0001P\u0001"+ - "P\u0001P\u0001P\u0001Q\u0001Q\u0003Q\u0307\bQ\u0001R\u0001R\u0001R\u0001"+ - "R\u0001R\u0001R\u0001R\u0003R\u0310\bR\u0001R\u0001R\u0001R\u0001R\u0001"+ - "R\u0005R\u0317\bR\nR\fR\u031a\tR\u0001R\u0001R\u0001R\u0001R\u0001R\u0003"+ - "R\u0321\bR\u0001R\u0001R\u0001R\u0003R\u0326\bR\u0001R\u0001R\u0001R\u0001"+ - "R\u0001R\u0001R\u0005R\u032e\bR\nR\fR\u0331\tR\u0001S\u0001S\u0003S\u0335"+ - "\bS\u0001S\u0001S\u0001S\u0001S\u0001S\u0003S\u033c\bS\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0003S\u0343\bS\u0001S\u0001S\u0001S\u0001S\u0001S\u0005"+ - "S\u034a\bS\nS\fS\u034d\tS\u0001S\u0001S\u0001S\u0001S\u0003S\u0353\bS"+ - "\u0001S\u0001S\u0001S\u0001S\u0001S\u0005S\u035a\bS\nS\fS\u035d\tS\u0001"+ - "S\u0001S\u0003S\u0361\bS\u0001T\u0001T\u0001T\u0003T\u0366\bT\u0001T\u0001"+ - "T\u0001T\u0001U\u0001U\u0001U\u0001U\u0001U\u0003U\u0370\bU\u0001V\u0001"+ - "V\u0001V\u0001V\u0003V\u0376\bV\u0001V\u0001V\u0001V\u0001V\u0001V\u0001"+ - "V\u0005V\u037e\bV\nV\fV\u0381\tV\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+ - "W\u0001W\u0001W\u0003W\u038b\bW\u0001W\u0001W\u0001W\u0005W\u0390\bW\n"+ - "W\fW\u0393\tW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0005X\u039b\b"+ - "X\nX\fX\u039e\tX\u0001X\u0001X\u0003X\u03a2\bX\u0003X\u03a4\bX\u0001X"+ - "\u0001X\u0001Y\u0001Y\u0001Y\u0003Y\u03ab\bY\u0001Z\u0001Z\u0001Z\u0001"+ - "Z\u0005Z\u03b1\bZ\nZ\fZ\u03b4\tZ\u0003Z\u03b6\bZ\u0001Z\u0001Z\u0001["+ - "\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0003\\\u03c0\b\\\u0001]\u0001]"+ + "$\u0001%\u0001%\u0001%\u0003%\u01e9\b%\u0001&\u0001&\u0001&\u0001&\u0005"+ + "&\u01ef\b&\n&\f&\u01f2\t&\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u01f8"+ + "\b\'\n\'\f\'\u01fb\t\'\u0001(\u0001(\u0003(\u01ff\b(\u0001(\u0001(\u0003"+ + "(\u0203\b(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ + "+\u0001+\u0005+\u020f\b+\n+\f+\u0212\t+\u0001,\u0001,\u0001,\u0001,\u0001"+ + ",\u0001,\u0001,\u0001,\u0003,\u021c\b,\u0001-\u0001-\u0001-\u0001-\u0003"+ + "-\u0222\b-\u0001.\u0001.\u0001.\u0005.\u0227\b.\n.\f.\u022a\t.\u0001/"+ + "\u0001/\u0001/\u0001/\u00010\u00010\u00030\u0232\b0\u00011\u00011\u0001"+ + "1\u00011\u00011\u00051\u0239\b1\n1\f1\u023c\t1\u00012\u00012\u00012\u0001"+ + "3\u00013\u00013\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u0001"+ + "6\u00016\u00016\u00016\u00036\u024f\b6\u00016\u00016\u00016\u00016\u0005"+ + "6\u0255\b6\n6\f6\u0258\t6\u00036\u025a\b6\u00017\u00017\u00018\u00018"+ + "\u00018\u00038\u0261\b8\u00018\u00018\u00019\u00019\u00019\u0001:\u0001"+ + ":\u0001:\u0005:\u026b\b:\n:\f:\u026e\t:\u0001;\u0001;\u0001;\u0001;\u0001"+ + ";\u0001;\u0001;\u0003;\u0277\b;\u0001<\u0001<\u0001<\u0001=\u0004=\u027d"+ + "\b=\u000b=\f=\u027e\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001"+ + "?\u0001?\u0001?\u0005?\u028b\b?\n?\f?\u028e\t?\u0001@\u0001@\u0001A\u0001"+ + "A\u0001A\u0001A\u0003A\u0296\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0001"+ + "B\u0001B\u0001B\u0001B\u0003B\u02a1\bB\u0001B\u0001B\u0001B\u0001C\u0001"+ + "C\u0001C\u0001C\u0001C\u0003C\u02ab\bC\u0001C\u0001C\u0001C\u0001C\u0003"+ + "C\u02b1\bC\u0003C\u02b3\bC\u0001D\u0001D\u0003D\u02b7\bD\u0001D\u0005"+ + "D\u02ba\bD\nD\fD\u02bd\tD\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001"+ + "E\u0001E\u0001E\u0001E\u0001E\u0003E\u02ca\bE\u0001F\u0001F\u0001F\u0005"+ + "F\u02cf\bF\nF\fF\u02d2\tF\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001"+ + "I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0001"+ + "K\u0001L\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0001"+ + "M\u0001M\u0001N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0003"+ + "O\u02f8\bO\u0001P\u0001P\u0003P\u02fc\bP\u0001P\u0001P\u0001P\u0001P\u0001"+ + "P\u0001P\u0001Q\u0001Q\u0003Q\u0306\bQ\u0001R\u0001R\u0001R\u0001R\u0001"+ + "R\u0001R\u0001R\u0003R\u030f\bR\u0001R\u0001R\u0001R\u0001R\u0001R\u0005"+ + "R\u0316\bR\nR\fR\u0319\tR\u0001R\u0001R\u0001R\u0001R\u0001R\u0003R\u0320"+ + "\bR\u0001R\u0001R\u0001R\u0003R\u0325\bR\u0001R\u0001R\u0001R\u0001R\u0001"+ + "R\u0001R\u0005R\u032d\bR\nR\fR\u0330\tR\u0001S\u0001S\u0003S\u0334\bS"+ + "\u0001S\u0001S\u0001S\u0001S\u0001S\u0003S\u033b\bS\u0001S\u0001S\u0001"+ + "S\u0001S\u0001S\u0003S\u0342\bS\u0001S\u0001S\u0001S\u0001S\u0001S\u0005"+ + "S\u0349\bS\nS\fS\u034c\tS\u0001S\u0001S\u0001S\u0001S\u0003S\u0352\bS"+ + "\u0001S\u0001S\u0001S\u0001S\u0001S\u0005S\u0359\bS\nS\fS\u035c\tS\u0001"+ + "S\u0001S\u0003S\u0360\bS\u0001T\u0001T\u0001T\u0003T\u0365\bT\u0001T\u0001"+ + "T\u0001T\u0001U\u0001U\u0001U\u0001U\u0001U\u0003U\u036f\bU\u0001V\u0001"+ + "V\u0001V\u0001V\u0003V\u0375\bV\u0001V\u0001V\u0001V\u0001V\u0001V\u0001"+ + "V\u0005V\u037d\bV\nV\fV\u0380\tV\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+ + "W\u0001W\u0001W\u0003W\u038a\bW\u0001W\u0001W\u0001W\u0005W\u038f\bW\n"+ + "W\fW\u0392\tW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0005X\u039a\b"+ + "X\nX\fX\u039d\tX\u0001X\u0001X\u0003X\u03a1\bX\u0003X\u03a3\bX\u0001X"+ + "\u0001X\u0001Y\u0001Y\u0001Y\u0003Y\u03aa\bY\u0001Z\u0001Z\u0001Z\u0001"+ + "Z\u0005Z\u03b0\bZ\nZ\fZ\u03b3\tZ\u0003Z\u03b5\bZ\u0001Z\u0001Z\u0001["+ + "\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0003\\\u03bf\b\\\u0001]\u0001]"+ "\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001"+ - "]\u0001]\u0005]\u03cf\b]\n]\f]\u03d2\t]\u0001]\u0001]\u0001]\u0001]\u0001"+ - "]\u0001]\u0005]\u03da\b]\n]\f]\u03dd\t]\u0001]\u0001]\u0001]\u0001]\u0001"+ - "]\u0001]\u0005]\u03e5\b]\n]\f]\u03e8\t]\u0001]\u0001]\u0003]\u03ec\b]"+ - "\u0001^\u0001^\u0001_\u0001_\u0003_\u03f2\b_\u0001`\u0003`\u03f5\b`\u0001"+ - "`\u0001`\u0001a\u0003a\u03fa\ba\u0001a\u0001a\u0001b\u0001b\u0001c\u0001"+ - "c\u0001d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0003e\u040a"+ - "\be\u0001e\u0001e\u0001e\u0003e\u040f\be\u0001f\u0001f\u0001f\u0001f\u0005"+ - "f\u0415\bf\nf\ff\u0418\tf\u0001g\u0001g\u0005g\u041c\bg\ng\fg\u041f\t"+ - "g\u0001g\u0001g\u0001g\u0003g\u0424\bg\u0001g\u0001g\u0001g\u0001g\u0001"+ - "g\u0005g\u042b\bg\ng\fg\u042e\tg\u0001g\u0001g\u0001g\u0003g\u0433\bg"+ - "\u0001g\u0001g\u0001g\u0005g\u0438\bg\ng\fg\u043b\tg\u0001g\u0001g\u0001"+ - "g\u0003g\u0440\bg\u0001g\u0001g\u0004g\u0444\bg\u000bg\fg\u0445\u0001"+ - "g\u0001g\u0001g\u0001g\u0005g\u044c\bg\ng\fg\u044f\tg\u0001g\u0004g\u0452"+ - "\bg\u000bg\fg\u0453\u0003g\u0456\bg\u0001h\u0001h\u0001i\u0001i\u0001"+ - "i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001k\u0005k\u0463\bk\nk\fk\u0466"+ - "\tk\u0001k\u0001k\u0003k\u046a\bk\u0001l\u0001l\u0001m\u0004m\u046f\b"+ - "m\u000bm\fm\u0470\u0001m\u0001m\u0005m\u0475\bm\nm\fm\u0478\tm\u0001m"+ - "\u0003m\u047b\bm\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001"+ - "n\u0001n\u0003n\u0486\bn\u0001o\u0001o\u0001p\u0001p\u0001q\u0001q\u0001"+ + "]\u0001]\u0005]\u03ce\b]\n]\f]\u03d1\t]\u0001]\u0001]\u0001]\u0001]\u0001"+ + "]\u0001]\u0005]\u03d9\b]\n]\f]\u03dc\t]\u0001]\u0001]\u0001]\u0001]\u0001"+ + "]\u0001]\u0005]\u03e4\b]\n]\f]\u03e7\t]\u0001]\u0001]\u0003]\u03eb\b]"+ + "\u0001^\u0001^\u0001_\u0001_\u0003_\u03f1\b_\u0001`\u0003`\u03f4\b`\u0001"+ + "`\u0001`\u0001a\u0003a\u03f9\ba\u0001a\u0001a\u0001b\u0001b\u0001c\u0001"+ + "c\u0001d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0003e\u0409"+ + "\be\u0001e\u0001e\u0001e\u0003e\u040e\be\u0001f\u0001f\u0001f\u0001f\u0005"+ + "f\u0414\bf\nf\ff\u0417\tf\u0001g\u0001g\u0005g\u041b\bg\ng\fg\u041e\t"+ + "g\u0001g\u0001g\u0001g\u0003g\u0423\bg\u0001g\u0001g\u0001g\u0001g\u0001"+ + "g\u0005g\u042a\bg\ng\fg\u042d\tg\u0001g\u0001g\u0001g\u0003g\u0432\bg"+ + "\u0001g\u0001g\u0001g\u0005g\u0437\bg\ng\fg\u043a\tg\u0001g\u0001g\u0001"+ + "g\u0003g\u043f\bg\u0001g\u0001g\u0004g\u0443\bg\u000bg\fg\u0444\u0001"+ + "g\u0001g\u0001g\u0001g\u0005g\u044b\bg\ng\fg\u044e\tg\u0001g\u0004g\u0451"+ + "\bg\u000bg\fg\u0452\u0003g\u0455\bg\u0001h\u0001h\u0001i\u0001i\u0001"+ + "i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001k\u0005k\u0462\bk\nk\fk\u0465"+ + "\tk\u0001k\u0001k\u0003k\u0469\bk\u0001l\u0001l\u0001m\u0004m\u046e\b"+ + "m\u000bm\fm\u046f\u0001m\u0001m\u0005m\u0474\bm\nm\fm\u0477\tm\u0001m"+ + "\u0003m\u047a\bm\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001"+ + "n\u0001n\u0003n\u0485\bn\u0001o\u0001o\u0001p\u0001p\u0001q\u0001q\u0001"+ "r\u0001r\u0001r\u0000\u0005\u0004~\u00a4\u00ac\u00aes\u0000\u0002\u0004"+ "\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \""+ "$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ @@ -10028,7 +10017,7 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { "\u000e\u0002\u0000;;rr\u0001\u0000lm\u0002\u0000??FF\u0002\u0000IILL\u0002"+ "\u000000;;\u0001\u0000^_\u0001\u0000`b\u0002\u0000HHUU\u0002\u0000WWY"+ "]\u0002\u0000\u001e\u001e !\u0003\u0000;;fflm\b\u0000;;@@BCEEfflmrr\u009c"+ - "\u009e\u0002\u0000llrr\u0003\u0000;;llrr\u04c7\u0000\u00e9\u0001\u0000"+ + "\u009e\u0002\u0000llrr\u0003\u0000;;llrr\u04c6\u0000\u00e9\u0001\u0000"+ "\u0000\u0000\u0002\u00ef\u0001\u0000\u0000\u0000\u0004\u00f2\u0001\u0000"+ "\u0000\u0000\u0006\u0106\u0001\u0000\u0000\u0000\b\u0126\u0001\u0000\u0000"+ "\u0000\n\u0128\u0001\u0000\u0000\u0000\f\u012b\u0001\u0000\u0000\u0000"+ @@ -10046,43 +10035,43 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { "\u01cd\u0001\u0000\u0000\u0000@\u01d2\u0001\u0000\u0000\u0000B\u01d6\u0001"+ "\u0000\u0000\u0000D\u01da\u0001\u0000\u0000\u0000F\u01df\u0001\u0000\u0000"+ "\u0000H\u01e3\u0001\u0000\u0000\u0000J\u01e5\u0001\u0000\u0000\u0000L"+ - "\u01ea\u0001\u0000\u0000\u0000N\u01f4\u0001\u0000\u0000\u0000P\u01fd\u0001"+ - "\u0000\u0000\u0000R\u0205\u0001\u0000\u0000\u0000T\u0208\u0001\u0000\u0000"+ - "\u0000V\u020b\u0001\u0000\u0000\u0000X\u021c\u0001\u0000\u0000\u0000Z"+ - "\u021e\u0001\u0000\u0000\u0000\\\u0224\u0001\u0000\u0000\u0000^\u022c"+ - "\u0001\u0000\u0000\u0000`\u0232\u0001\u0000\u0000\u0000b\u0234\u0001\u0000"+ - "\u0000\u0000d\u023e\u0001\u0000\u0000\u0000f\u0241\u0001\u0000\u0000\u0000"+ - "h\u0244\u0001\u0000\u0000\u0000j\u0248\u0001\u0000\u0000\u0000l\u024b"+ - "\u0001\u0000\u0000\u0000n\u025c\u0001\u0000\u0000\u0000p\u0261\u0001\u0000"+ - "\u0000\u0000r\u0265\u0001\u0000\u0000\u0000t\u0268\u0001\u0000\u0000\u0000"+ - "v\u0277\u0001\u0000\u0000\u0000x\u0279\u0001\u0000\u0000\u0000z\u027d"+ - "\u0001\u0000\u0000\u0000|\u0281\u0001\u0000\u0000\u0000~\u0285\u0001\u0000"+ - "\u0000\u0000\u0080\u0290\u0001\u0000\u0000\u0000\u0082\u0292\u0001\u0000"+ - "\u0000\u0000\u0084\u029d\u0001\u0000\u0000\u0000\u0086\u02b3\u0001\u0000"+ - "\u0000\u0000\u0088\u02b5\u0001\u0000\u0000\u0000\u008a\u02ca\u0001\u0000"+ - "\u0000\u0000\u008c\u02cc\u0001\u0000\u0000\u0000\u008e\u02d4\u0001\u0000"+ - "\u0000\u0000\u0090\u02d6\u0001\u0000\u0000\u0000\u0092\u02d8\u0001\u0000"+ - "\u0000\u0000\u0094\u02dd\u0001\u0000\u0000\u0000\u0096\u02e0\u0001\u0000"+ - "\u0000\u0000\u0098\u02e5\u0001\u0000\u0000\u0000\u009a\u02ea\u0001\u0000"+ - "\u0000\u0000\u009c\u02f0\u0001\u0000\u0000\u0000\u009e\u02f4\u0001\u0000"+ - "\u0000\u0000\u00a0\u02fa\u0001\u0000\u0000\u0000\u00a2\u0306\u0001\u0000"+ - "\u0000\u0000\u00a4\u0325\u0001\u0000\u0000\u0000\u00a6\u0360\u0001\u0000"+ - "\u0000\u0000\u00a8\u0362\u0001\u0000\u0000\u0000\u00aa\u036f\u0001\u0000"+ - "\u0000\u0000\u00ac\u0375\u0001\u0000\u0000\u0000\u00ae\u038a\u0001\u0000"+ - "\u0000\u0000\u00b0\u0394\u0001\u0000\u0000\u0000\u00b2\u03aa\u0001\u0000"+ - "\u0000\u0000\u00b4\u03ac\u0001\u0000\u0000\u0000\u00b6\u03b9\u0001\u0000"+ - "\u0000\u0000\u00b8\u03bf\u0001\u0000\u0000\u0000\u00ba\u03eb\u0001\u0000"+ - "\u0000\u0000\u00bc\u03ed\u0001\u0000\u0000\u0000\u00be\u03f1\u0001\u0000"+ - "\u0000\u0000\u00c0\u03f4\u0001\u0000\u0000\u0000\u00c2\u03f9\u0001\u0000"+ - "\u0000\u0000\u00c4\u03fd\u0001\u0000\u0000\u0000\u00c6\u03ff\u0001\u0000"+ - "\u0000\u0000\u00c8\u0401\u0001\u0000\u0000\u0000\u00ca\u040e\u0001\u0000"+ - "\u0000\u0000\u00cc\u0410\u0001\u0000\u0000\u0000\u00ce\u0455\u0001\u0000"+ - "\u0000\u0000\u00d0\u0457\u0001\u0000\u0000\u0000\u00d2\u0459\u0001\u0000"+ - "\u0000\u0000\u00d4\u045d\u0001\u0000\u0000\u0000\u00d6\u0469\u0001\u0000"+ - "\u0000\u0000\u00d8\u046b\u0001\u0000\u0000\u0000\u00da\u047a\u0001\u0000"+ - "\u0000\u0000\u00dc\u0485\u0001\u0000\u0000\u0000\u00de\u0487\u0001\u0000"+ - "\u0000\u0000\u00e0\u0489\u0001\u0000\u0000\u0000\u00e2\u048b\u0001\u0000"+ - "\u0000\u0000\u00e4\u048d\u0001\u0000\u0000\u0000\u00e6\u00e8\u0003\u009c"+ + "\u01ea\u0001\u0000\u0000\u0000N\u01f3\u0001\u0000\u0000\u0000P\u01fc\u0001"+ + "\u0000\u0000\u0000R\u0204\u0001\u0000\u0000\u0000T\u0207\u0001\u0000\u0000"+ + "\u0000V\u020a\u0001\u0000\u0000\u0000X\u021b\u0001\u0000\u0000\u0000Z"+ + "\u021d\u0001\u0000\u0000\u0000\\\u0223\u0001\u0000\u0000\u0000^\u022b"+ + "\u0001\u0000\u0000\u0000`\u0231\u0001\u0000\u0000\u0000b\u0233\u0001\u0000"+ + "\u0000\u0000d\u023d\u0001\u0000\u0000\u0000f\u0240\u0001\u0000\u0000\u0000"+ + "h\u0243\u0001\u0000\u0000\u0000j\u0247\u0001\u0000\u0000\u0000l\u024a"+ + "\u0001\u0000\u0000\u0000n\u025b\u0001\u0000\u0000\u0000p\u0260\u0001\u0000"+ + "\u0000\u0000r\u0264\u0001\u0000\u0000\u0000t\u0267\u0001\u0000\u0000\u0000"+ + "v\u0276\u0001\u0000\u0000\u0000x\u0278\u0001\u0000\u0000\u0000z\u027c"+ + "\u0001\u0000\u0000\u0000|\u0280\u0001\u0000\u0000\u0000~\u0284\u0001\u0000"+ + "\u0000\u0000\u0080\u028f\u0001\u0000\u0000\u0000\u0082\u0291\u0001\u0000"+ + "\u0000\u0000\u0084\u029c\u0001\u0000\u0000\u0000\u0086\u02b2\u0001\u0000"+ + "\u0000\u0000\u0088\u02b4\u0001\u0000\u0000\u0000\u008a\u02c9\u0001\u0000"+ + "\u0000\u0000\u008c\u02cb\u0001\u0000\u0000\u0000\u008e\u02d3\u0001\u0000"+ + "\u0000\u0000\u0090\u02d5\u0001\u0000\u0000\u0000\u0092\u02d7\u0001\u0000"+ + "\u0000\u0000\u0094\u02dc\u0001\u0000\u0000\u0000\u0096\u02df\u0001\u0000"+ + "\u0000\u0000\u0098\u02e4\u0001\u0000\u0000\u0000\u009a\u02e9\u0001\u0000"+ + "\u0000\u0000\u009c\u02ef\u0001\u0000\u0000\u0000\u009e\u02f3\u0001\u0000"+ + "\u0000\u0000\u00a0\u02f9\u0001\u0000\u0000\u0000\u00a2\u0305\u0001\u0000"+ + "\u0000\u0000\u00a4\u0324\u0001\u0000\u0000\u0000\u00a6\u035f\u0001\u0000"+ + "\u0000\u0000\u00a8\u0361\u0001\u0000\u0000\u0000\u00aa\u036e\u0001\u0000"+ + "\u0000\u0000\u00ac\u0374\u0001\u0000\u0000\u0000\u00ae\u0389\u0001\u0000"+ + "\u0000\u0000\u00b0\u0393\u0001\u0000\u0000\u0000\u00b2\u03a9\u0001\u0000"+ + "\u0000\u0000\u00b4\u03ab\u0001\u0000\u0000\u0000\u00b6\u03b8\u0001\u0000"+ + "\u0000\u0000\u00b8\u03be\u0001\u0000\u0000\u0000\u00ba\u03ea\u0001\u0000"+ + "\u0000\u0000\u00bc\u03ec\u0001\u0000\u0000\u0000\u00be\u03f0\u0001\u0000"+ + "\u0000\u0000\u00c0\u03f3\u0001\u0000\u0000\u0000\u00c2\u03f8\u0001\u0000"+ + "\u0000\u0000\u00c4\u03fc\u0001\u0000\u0000\u0000\u00c6\u03fe\u0001\u0000"+ + "\u0000\u0000\u00c8\u0400\u0001\u0000\u0000\u0000\u00ca\u040d\u0001\u0000"+ + "\u0000\u0000\u00cc\u040f\u0001\u0000\u0000\u0000\u00ce\u0454\u0001\u0000"+ + "\u0000\u0000\u00d0\u0456\u0001\u0000\u0000\u0000\u00d2\u0458\u0001\u0000"+ + "\u0000\u0000\u00d4\u045c\u0001\u0000\u0000\u0000\u00d6\u0468\u0001\u0000"+ + "\u0000\u0000\u00d8\u046a\u0001\u0000\u0000\u0000\u00da\u0479\u0001\u0000"+ + "\u0000\u0000\u00dc\u0484\u0001\u0000\u0000\u0000\u00de\u0486\u0001\u0000"+ + "\u0000\u0000\u00e0\u0488\u0001\u0000\u0000\u0000\u00e2\u048a\u0001\u0000"+ + "\u0000\u0000\u00e4\u048c\u0001\u0000\u0000\u0000\u00e6\u00e8\u0003\u009c"+ "N\u0000\u00e7\u00e6\u0001\u0000\u0000\u0000\u00e8\u00eb\u0001\u0000\u0000"+ "\u0000\u00e9\u00e7\u0001\u0000\u0000\u0000\u00e9\u00ea\u0001\u0000\u0000"+ "\u0000\u00ea\u00ec\u0001\u0000\u0000\u0000\u00eb\u00e9\u0001\u0000\u0000"+ @@ -10233,381 +10222,380 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { "\u0000\u0000\u01e5\u01e6\u0005\u000b\u0000\u0000\u01e6\u01e8\u0003\u00ba"+ "]\u0000\u01e7\u01e9\u0003L&\u0000\u01e8\u01e7\u0001\u0000\u0000\u0000"+ "\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9K\u0001\u0000\u0000\u0000\u01ea"+ - "\u01eb\u0004&\u0007\u0000\u01eb\u01ec\u0005A\u0000\u0000\u01ec\u01f1\u0003"+ - "\u00a4R\u0000\u01ed\u01ee\u0005E\u0000\u0000\u01ee\u01f0\u0003\u00a4R"+ - "\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\u01f2M\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000"+ - "\u01f4\u01f5\u0005\u000f\u0000\u0000\u01f5\u01fa\u0003P(\u0000\u01f6\u01f7"+ - "\u0005E\u0000\u0000\u01f7\u01f9\u0003P(\u0000\u01f8\u01f6\u0001\u0000"+ - "\u0000\u0000\u01f9\u01fc\u0001\u0000\u0000\u0000\u01fa\u01f8\u0001\u0000"+ - "\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fbO\u0001\u0000\u0000"+ - "\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd\u01ff\u0003\u00a4R\u0000"+ - "\u01fe\u0200\u0007\u0002\u0000\u0000\u01ff\u01fe\u0001\u0000\u0000\u0000"+ - "\u01ff\u0200\u0001\u0000\u0000\u0000\u0200\u0203\u0001\u0000\u0000\u0000"+ - "\u0201\u0202\u0005P\u0000\u0000\u0202\u0204\u0007\u0003\u0000\u0000\u0203"+ - "\u0201\u0001\u0000\u0000\u0000\u0203\u0204\u0001\u0000\u0000\u0000\u0204"+ - "Q\u0001\u0000\u0000\u0000\u0205\u0206\u0005&\u0000\u0000\u0206\u0207\u0003"+ - "<\u001e\u0000\u0207S\u0001\u0000\u0000\u0000\u0208\u0209\u0005%\u0000"+ - "\u0000\u0209\u020a\u0003<\u001e\u0000\u020aU\u0001\u0000\u0000\u0000\u020b"+ - "\u020c\u0005)\u0000\u0000\u020c\u0211\u0003X,\u0000\u020d\u020e\u0005"+ - "E\u0000\u0000\u020e\u0210\u0003X,\u0000\u020f\u020d\u0001\u0000\u0000"+ - "\u0000\u0210\u0213\u0001\u0000\u0000\u0000\u0211\u020f\u0001\u0000\u0000"+ - "\u0000\u0211\u0212\u0001\u0000\u0000\u0000\u0212W\u0001\u0000\u0000\u0000"+ - "\u0213\u0211\u0001\u0000\u0000\u0000\u0214\u0215\u00038\u001c\u0000\u0215"+ - "\u0216\u0005\u009f\u0000\u0000\u0216\u0217\u00038\u001c\u0000\u0217\u021d"+ - "\u0001\u0000\u0000\u0000\u0218\u0219\u00038\u001c\u0000\u0219\u021a\u0005"+ - "@\u0000\u0000\u021a\u021b\u00038\u001c\u0000\u021b\u021d\u0001\u0000\u0000"+ - "\u0000\u021c\u0214\u0001\u0000\u0000\u0000\u021c\u0218\u0001\u0000\u0000"+ - "\u0000\u021dY\u0001\u0000\u0000\u0000\u021e\u021f\u0005\b\u0000\u0000"+ - "\u021f\u0220\u0003\u00aeW\u0000\u0220\u0222\u0003\u00c4b\u0000\u0221\u0223"+ - "\u0003\\.\u0000\u0222\u0221\u0001\u0000\u0000\u0000\u0222\u0223\u0001"+ - "\u0000\u0000\u0000\u0223[\u0001\u0000\u0000\u0000\u0224\u0229\u0003^/"+ - "\u0000\u0225\u0226\u0005E\u0000\u0000\u0226\u0228\u0003^/\u0000\u0227"+ - "\u0225\u0001\u0000\u0000\u0000\u0228\u022b\u0001\u0000\u0000\u0000\u0229"+ - "\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001\u0000\u0000\u0000\u022a"+ - "]\u0001\u0000\u0000\u0000\u022b\u0229\u0001\u0000\u0000\u0000\u022c\u022d"+ - "\u0003>\u001f\u0000\u022d\u022e\u0005@\u0000\u0000\u022e\u022f\u0003\u00ba"+ - "]\u0000\u022f_\u0001\u0000\u0000\u0000\u0230\u0231\u0005V\u0000\u0000"+ - "\u0231\u0233\u0003\u00b4Z\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232"+ - "\u0233\u0001\u0000\u0000\u0000\u0233a\u0001\u0000\u0000\u0000\u0234\u0235"+ - "\u0005\n\u0000\u0000\u0235\u0236\u0003\u00aeW\u0000\u0236\u023b\u0003"+ - "\u00c4b\u0000\u0237\u0238\u0005E\u0000\u0000\u0238\u023a\u0003\u00c4b"+ - "\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a\u023d\u0001\u0000\u0000"+ - "\u0000\u023b\u0239\u0001\u0000\u0000\u0000\u023b\u023c\u0001\u0000\u0000"+ - "\u0000\u023cc\u0001\u0000\u0000\u0000\u023d\u023b\u0001\u0000\u0000\u0000"+ - "\u023e\u023f\u0005$\u0000\u0000\u023f\u0240\u00034\u001a\u0000\u0240e"+ - "\u0001\u0000\u0000\u0000\u0241\u0242\u0005\u0006\u0000\u0000\u0242\u0243"+ - "\u0003h4\u0000\u0243g\u0001\u0000\u0000\u0000\u0244\u0245\u0005j\u0000"+ - "\u0000\u0245\u0246\u0003\u0004\u0002\u0000\u0246\u0247\u0005k\u0000\u0000"+ - "\u0247i\u0001\u0000\u0000\u0000\u0248\u0249\u0005+\u0000\u0000\u0249\u024a"+ - "\u0005\u00a6\u0000\u0000\u024ak\u0001\u0000\u0000\u0000\u024b\u024c\u0005"+ - "\u0005\u0000\u0000\u024c\u024f\u0003n7\u0000\u024d\u024e\u0005Q\u0000"+ - "\u0000\u024e\u0250\u00038\u001c\u0000\u024f\u024d\u0001\u0000\u0000\u0000"+ - "\u024f\u0250\u0001\u0000\u0000\u0000\u0250\u025a\u0001\u0000\u0000\u0000"+ - "\u0251\u0252\u0005V\u0000\u0000\u0252\u0257\u0003p8\u0000\u0253\u0254"+ - "\u0005E\u0000\u0000\u0254\u0256\u0003p8\u0000\u0255\u0253\u0001\u0000"+ - "\u0000\u0000\u0256\u0259\u0001\u0000\u0000\u0000\u0257\u0255\u0001\u0000"+ - "\u0000\u0000\u0257\u0258\u0001\u0000\u0000\u0000\u0258\u025b\u0001\u0000"+ - "\u0000\u0000\u0259\u0257\u0001\u0000\u0000\u0000\u025a\u0251\u0001\u0000"+ - "\u0000\u0000\u025a\u025b\u0001\u0000\u0000\u0000\u025bm\u0001\u0000\u0000"+ - "\u0000\u025c\u025d\u0007\u0004\u0000\u0000\u025do\u0001\u0000\u0000\u0000"+ - "\u025e\u025f\u00038\u001c\u0000\u025f\u0260\u0005@\u0000\u0000\u0260\u0262"+ - "\u0001\u0000\u0000\u0000\u0261\u025e\u0001\u0000\u0000\u0000\u0261\u0262"+ - "\u0001\u0000\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0264"+ - "\u00038\u001c\u0000\u0264q\u0001\u0000\u0000\u0000\u0265\u0266\u0005\u000e"+ - "\u0000\u0000\u0266\u0267\u0003\u00ba]\u0000\u0267s\u0001\u0000\u0000\u0000"+ - "\u0268\u0269\u0005\u0004\u0000\u0000\u0269\u026d\u00034\u001a\u0000\u026a"+ - "\u026c\u0003v;\u0000\u026b\u026a\u0001\u0000\u0000\u0000\u026c\u026f\u0001"+ - "\u0000\u0000\u0000\u026d\u026b\u0001\u0000\u0000\u0000\u026d\u026e\u0001"+ - "\u0000\u0000\u0000\u026eu\u0001\u0000\u0000\u0000\u026f\u026d\u0001\u0000"+ - "\u0000\u0000\u0270\u0271\u0005Q\u0000\u0000\u0271\u0278\u00034\u001a\u0000"+ - "\u0272\u0273\u0005\u009f\u0000\u0000\u0273\u0274\u00034\u001a\u0000\u0274"+ - "\u0275\u0005E\u0000\u0000\u0275\u0276\u00034\u001a\u0000\u0276\u0278\u0001"+ - "\u0000\u0000\u0000\u0277\u0270\u0001\u0000\u0000\u0000\u0277\u0272\u0001"+ - "\u0000\u0000\u0000\u0278w\u0001\u0000\u0000\u0000\u0279\u027a\u0005\u001a"+ - "\u0000\u0000\u027a\u027b\u0003z=\u0000\u027by\u0001\u0000\u0000\u0000"+ - "\u027c\u027e\u0003|>\u0000\u027d\u027c\u0001\u0000\u0000\u0000\u027e\u027f"+ - "\u0001\u0000\u0000\u0000\u027f\u027d\u0001\u0000\u0000\u0000\u027f\u0280"+ - "\u0001\u0000\u0000\u0000\u0280{\u0001\u0000\u0000\u0000\u0281\u0282\u0005"+ - "j\u0000\u0000\u0282\u0283\u0003~?\u0000\u0283\u0284\u0005k\u0000\u0000"+ - "\u0284}\u0001\u0000\u0000\u0000\u0285\u0286\u0006?\uffff\uffff\u0000\u0286"+ - "\u0287\u0003\u0080@\u0000\u0287\u028d\u0001\u0000\u0000\u0000\u0288\u0289"+ - "\n\u0001\u0000\u0000\u0289\u028a\u0005:\u0000\u0000\u028a\u028c\u0003"+ - "\u0080@\u0000\u028b\u0288\u0001\u0000\u0000\u0000\u028c\u028f\u0001\u0000"+ - "\u0000\u0000\u028d\u028b\u0001\u0000\u0000\u0000\u028d\u028e\u0001\u0000"+ - "\u0000\u0000\u028e\u007f\u0001\u0000\u0000\u0000\u028f\u028d\u0001\u0000"+ - "\u0000\u0000\u0290\u0291\u0003\b\u0004\u0000\u0291\u0081\u0001\u0000\u0000"+ - "\u0000\u0292\u0296\u0005\f\u0000\u0000\u0293\u0294\u00034\u001a\u0000"+ - "\u0294\u0295\u0005@\u0000\u0000\u0295\u0297\u0001\u0000\u0000\u0000\u0296"+ - "\u0293\u0001\u0000\u0000\u0000\u0296\u0297\u0001\u0000\u0000\u0000\u0297"+ - "\u0298\u0001\u0000\u0000\u0000\u0298\u0299\u0003\u00ba]\u0000\u0299\u029a"+ - "\u0005Q\u0000\u0000\u029a\u029b\u0003\u0010\b\u0000\u029b\u029c\u0003"+ - "`0\u0000\u029c\u0083\u0001\u0000\u0000\u0000\u029d\u02a1\u0005\u0007\u0000"+ - "\u0000\u029e\u029f\u00034\u001a\u0000\u029f\u02a0\u0005@\u0000\u0000\u02a0"+ - "\u02a2\u0001\u0000\u0000\u0000\u02a1\u029e\u0001\u0000\u0000\u0000\u02a1"+ - "\u02a2\u0001\u0000\u0000\u0000\u02a2\u02a3\u0001\u0000\u0000\u0000\u02a3"+ - "\u02a4\u0003\u00aeW\u0000\u02a4\u02a5\u0003`0\u0000\u02a5\u0085\u0001"+ - "\u0000\u0000\u0000\u02a6\u02a7\u0005\u001c\u0000\u0000\u02a7\u02a8\u0005"+ - "\u007f\u0000\u0000\u02a8\u02ab\u00030\u0018\u0000\u02a9\u02aa\u0005A\u0000"+ - "\u0000\u02aa\u02ac\u0003\u0010\b\u0000\u02ab\u02a9\u0001\u0000\u0000\u0000"+ - "\u02ab\u02ac\u0001\u0000\u0000\u0000\u02ac\u02b4\u0001\u0000\u0000\u0000"+ - "\u02ad\u02ae\u0005\u001d\u0000\u0000\u02ae\u02b1\u00030\u0018\u0000\u02af"+ - "\u02b0\u0005A\u0000\u0000\u02b0\u02b2\u0003\u0010\b\u0000\u02b1\u02af"+ - "\u0001\u0000\u0000\u0000\u02b1\u02b2\u0001\u0000\u0000\u0000\u02b2\u02b4"+ - "\u0001\u0000\u0000\u0000\u02b3\u02a6\u0001\u0000\u0000\u0000\u02b3\u02ad"+ - "\u0001\u0000\u0000\u0000\u02b4\u0087\u0001\u0000\u0000\u0000\u02b5\u02b7"+ - "\u0005\u001b\u0000\u0000\u02b6\u02b8\u0003>\u001f\u0000\u02b7\u02b6\u0001"+ - "\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02bc\u0001"+ - "\u0000\u0000\u0000\u02b9\u02bb\u0003\u008aE\u0000\u02ba\u02b9\u0001\u0000"+ - "\u0000\u0000\u02bb\u02be\u0001\u0000\u0000\u0000\u02bc\u02ba\u0001\u0000"+ - "\u0000\u0000\u02bc\u02bd\u0001\u0000\u0000\u0000\u02bd\u0089\u0001\u0000"+ - "\u0000\u0000\u02be\u02bc\u0001\u0000\u0000\u0000\u02bf\u02c0\u0005z\u0000"+ - "\u0000\u02c0\u02c1\u0005A\u0000\u0000\u02c1\u02cb\u00034\u001a\u0000\u02c2"+ - "\u02c3\u0005{\u0000\u0000\u02c3\u02c4\u0005A\u0000\u0000\u02c4\u02cb\u0003"+ - "\u008cF\u0000\u02c5\u02c6\u0005y\u0000\u0000\u02c6\u02c7\u0005A\u0000"+ - "\u0000\u02c7\u02cb\u00034\u001a\u0000\u02c8\u02c9\u0005V\u0000\u0000\u02c9"+ - "\u02cb\u0003\u00b4Z\u0000\u02ca\u02bf\u0001\u0000\u0000\u0000\u02ca\u02c2"+ - "\u0001\u0000\u0000\u0000\u02ca\u02c5\u0001\u0000\u0000\u0000\u02ca\u02c8"+ - "\u0001\u0000\u0000\u0000\u02cb\u008b\u0001\u0000\u0000\u0000\u02cc\u02d1"+ - "\u00034\u001a\u0000\u02cd\u02ce\u0005E\u0000\u0000\u02ce\u02d0\u00034"+ - "\u001a\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02d0\u02d3\u0001\u0000"+ - "\u0000\u0000\u02d1\u02cf\u0001\u0000\u0000\u0000\u02d1\u02d2\u0001\u0000"+ - "\u0000\u0000\u02d2\u008d\u0001\u0000\u0000\u0000\u02d3\u02d1\u0001\u0000"+ - "\u0000\u0000\u02d4\u02d5\u0005\u0013\u0000\u0000\u02d5\u008f\u0001\u0000"+ - "\u0000\u0000\u02d6\u02d7\u0005\u0015\u0000\u0000\u02d7\u0091\u0001\u0000"+ - "\u0000\u0000\u02d8\u02d9\u0005\"\u0000\u0000\u02d9\u02da\u0003 \u0010"+ - "\u0000\u02da\u02db\u0005Q\u0000\u0000\u02db\u02dc\u0003<\u001e\u0000\u02dc"+ - "\u0093\u0001\u0000\u0000\u0000\u02dd\u02de\u0005\'\u0000\u0000\u02de\u02df"+ - "\u0003<\u001e\u0000\u02df\u0095\u0001\u0000\u0000\u0000\u02e0\u02e1\u0005"+ - "\u0012\u0000\u0000\u02e1\u02e2\u00034\u001a\u0000\u02e2\u02e3\u0005@\u0000"+ - "\u0000\u02e3\u02e4\u0003\u00aeW\u0000\u02e4\u0097\u0001\u0000\u0000\u0000"+ - "\u02e5\u02e6\u0005\u0014\u0000\u0000\u02e6\u02e7\u00034\u001a\u0000\u02e7"+ - "\u02e8\u0005@\u0000\u0000\u02e8\u02e9\u0003\u00aeW\u0000\u02e9\u0099\u0001"+ - "\u0000\u0000\u0000\u02ea\u02eb\u0005\u0016\u0000\u0000\u02eb\u02ec\u0003"+ - "4\u001a\u0000\u02ec\u02ed\u0005@\u0000\u0000\u02ed\u02ee\u0003\u00aeW"+ - "\u0000\u02ee\u02ef\u0003`0\u0000\u02ef\u009b\u0001\u0000\u0000\u0000\u02f0"+ - "\u02f1\u0005*\u0000\u0000\u02f1\u02f2\u0003\u009eO\u0000\u02f2\u02f3\u0005"+ - "D\u0000\u0000\u02f3\u009d\u0001\u0000\u0000\u0000\u02f4\u02f5\u0003>\u001f"+ - "\u0000\u02f5\u02f8\u0005@\u0000\u0000\u02f6\u02f9\u0003\u00ba]\u0000\u02f7"+ - "\u02f9\u0003\u00b4Z\u0000\u02f8\u02f6\u0001\u0000\u0000\u0000\u02f8\u02f7"+ - "\u0001\u0000\u0000\u0000\u02f9\u009f\u0001\u0000\u0000\u0000\u02fa\u02fc"+ - "\u0005#\u0000\u0000\u02fb\u02fd\u0003\u00a2Q\u0000\u02fc\u02fb\u0001\u0000"+ - "\u0000\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000"+ - "\u0000\u0000\u02fe\u02ff\u0005Q\u0000\u0000\u02ff\u0300\u00034\u001a\u0000"+ - "\u0300\u0301\u0005\u008e\u0000\u0000\u0301\u0302\u0003\u00c2a\u0000\u0302"+ - "\u0303\u0003`0\u0000\u0303\u00a1\u0001\u0000\u0000\u0000\u0304\u0307\u0003"+ - "B!\u0000\u0305\u0307\u0003\u00aeW\u0000\u0306\u0304\u0001\u0000\u0000"+ - "\u0000\u0306\u0305\u0001\u0000\u0000\u0000\u0307\u00a3\u0001\u0000\u0000"+ - "\u0000\u0308\u0309\u0006R\uffff\uffff\u0000\u0309\u030a\u0005N\u0000\u0000"+ - "\u030a\u0326\u0003\u00a4R\b\u030b\u0326\u0003\u00aaU\u0000\u030c\u0326"+ - "\u0003\u00a6S\u0000\u030d\u030f\u0003\u00aaU\u0000\u030e\u0310\u0005N"+ - "\u0000\u0000\u030f\u030e\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000"+ - "\u0000\u0000\u0310\u0311\u0001\u0000\u0000\u0000\u0311\u0312\u0005J\u0000"+ - "\u0000\u0312\u0313\u0005j\u0000\u0000\u0313\u0318\u0003\u00aaU\u0000\u0314"+ - "\u0315\u0005E\u0000\u0000\u0315\u0317\u0003\u00aaU\u0000\u0316\u0314\u0001"+ - "\u0000\u0000\u0000\u0317\u031a\u0001\u0000\u0000\u0000\u0318\u0316\u0001"+ - "\u0000\u0000\u0000\u0318\u0319\u0001\u0000\u0000\u0000\u0319\u031b\u0001"+ - "\u0000\u0000\u0000\u031a\u0318\u0001\u0000\u0000\u0000\u031b\u031c\u0005"+ - "k\u0000\u0000\u031c\u0326\u0001\u0000\u0000\u0000\u031d\u031e\u0003\u00aa"+ - "U\u0000\u031e\u0320\u0005K\u0000\u0000\u031f\u0321\u0005N\u0000\u0000"+ - "\u0320\u031f\u0001\u0000\u0000\u0000\u0320\u0321\u0001\u0000\u0000\u0000"+ - "\u0321\u0322\u0001\u0000\u0000\u0000\u0322\u0323\u0005O\u0000\u0000\u0323"+ - "\u0326\u0001\u0000\u0000\u0000\u0324\u0326\u0003\u00a8T\u0000\u0325\u0308"+ - "\u0001\u0000\u0000\u0000\u0325\u030b\u0001\u0000\u0000\u0000\u0325\u030c"+ - "\u0001\u0000\u0000\u0000\u0325\u030d\u0001\u0000\u0000\u0000\u0325\u031d"+ - "\u0001\u0000\u0000\u0000\u0325\u0324\u0001\u0000\u0000\u0000\u0326\u032f"+ - "\u0001\u0000\u0000\u0000\u0327\u0328\n\u0005\u0000\u0000\u0328\u0329\u0005"+ - ">\u0000\u0000\u0329\u032e\u0003\u00a4R\u0006\u032a\u032b\n\u0004\u0000"+ - "\u0000\u032b\u032c\u0005R\u0000\u0000\u032c\u032e\u0003\u00a4R\u0005\u032d"+ - "\u0327\u0001\u0000\u0000\u0000\u032d\u032a\u0001\u0000\u0000\u0000\u032e"+ - "\u0331\u0001\u0000\u0000\u0000\u032f\u032d\u0001\u0000\u0000\u0000\u032f"+ - "\u0330\u0001\u0000\u0000\u0000\u0330\u00a5\u0001\u0000\u0000\u0000\u0331"+ - "\u032f\u0001\u0000\u0000\u0000\u0332\u0334\u0003\u00aaU\u0000\u0333\u0335"+ - "\u0005N\u0000\u0000\u0334\u0333\u0001\u0000\u0000\u0000\u0334\u0335\u0001"+ - "\u0000\u0000\u0000\u0335\u0336\u0001\u0000\u0000\u0000\u0336\u0337\u0005"+ - "M\u0000\u0000\u0337\u0338\u0003H$\u0000\u0338\u0361\u0001\u0000\u0000"+ - "\u0000\u0339\u033b\u0003\u00aaU\u0000\u033a\u033c\u0005N\u0000\u0000\u033b"+ - "\u033a\u0001\u0000\u0000\u0000\u033b\u033c\u0001\u0000\u0000\u0000\u033c"+ - "\u033d\u0001\u0000\u0000\u0000\u033d\u033e\u0005T\u0000\u0000\u033e\u033f"+ - "\u0003H$\u0000\u033f\u0361\u0001\u0000\u0000\u0000\u0340\u0342\u0003\u00aa"+ - "U\u0000\u0341\u0343\u0005N\u0000\u0000\u0342\u0341\u0001\u0000\u0000\u0000"+ - "\u0342\u0343\u0001\u0000\u0000\u0000\u0343\u0344\u0001\u0000\u0000\u0000"+ - "\u0344\u0345\u0005M\u0000\u0000\u0345\u0346\u0005j\u0000\u0000\u0346\u034b"+ - "\u0003H$\u0000\u0347\u0348\u0005E\u0000\u0000\u0348\u034a\u0003H$\u0000"+ - "\u0349\u0347\u0001\u0000\u0000\u0000\u034a\u034d\u0001\u0000\u0000\u0000"+ - "\u034b\u0349\u0001\u0000\u0000\u0000\u034b\u034c\u0001\u0000\u0000\u0000"+ - "\u034c\u034e\u0001\u0000\u0000\u0000\u034d\u034b\u0001\u0000\u0000\u0000"+ - "\u034e\u034f\u0005k\u0000\u0000\u034f\u0361\u0001\u0000\u0000\u0000\u0350"+ - "\u0352\u0003\u00aaU\u0000\u0351\u0353\u0005N\u0000\u0000\u0352\u0351\u0001"+ - "\u0000\u0000\u0000\u0352\u0353\u0001\u0000\u0000\u0000\u0353\u0354\u0001"+ - "\u0000\u0000\u0000\u0354\u0355\u0005T\u0000\u0000\u0355\u0356\u0005j\u0000"+ - "\u0000\u0356\u035b\u0003H$\u0000\u0357\u0358\u0005E\u0000\u0000\u0358"+ - "\u035a\u0003H$\u0000\u0359\u0357\u0001\u0000\u0000\u0000\u035a\u035d\u0001"+ - "\u0000\u0000\u0000\u035b\u0359\u0001\u0000\u0000\u0000\u035b\u035c\u0001"+ - "\u0000\u0000\u0000\u035c\u035e\u0001\u0000\u0000\u0000\u035d\u035b\u0001"+ - "\u0000\u0000\u0000\u035e\u035f\u0005k\u0000\u0000\u035f\u0361\u0001\u0000"+ - "\u0000\u0000\u0360\u0332\u0001\u0000\u0000\u0000\u0360\u0339\u0001\u0000"+ - "\u0000\u0000\u0360\u0340\u0001\u0000\u0000\u0000\u0360\u0350\u0001\u0000"+ - "\u0000\u0000\u0361\u00a7\u0001\u0000\u0000\u0000\u0362\u0365\u00034\u001a"+ - "\u0000\u0363\u0364\u0005B\u0000\u0000\u0364\u0366\u0003\f\u0006\u0000"+ - "\u0365\u0363\u0001\u0000\u0000\u0000\u0365\u0366\u0001\u0000\u0000\u0000"+ - "\u0366\u0367\u0001\u0000\u0000\u0000\u0367\u0368\u0005C\u0000\u0000\u0368"+ - "\u0369\u0003\u00ba]\u0000\u0369\u00a9\u0001\u0000\u0000\u0000\u036a\u0370"+ - "\u0003\u00acV\u0000\u036b\u036c\u0003\u00acV\u0000\u036c\u036d\u0003\u00c6"+ - "c\u0000\u036d\u036e\u0003\u00acV\u0000\u036e\u0370\u0001\u0000\u0000\u0000"+ - "\u036f\u036a\u0001\u0000\u0000\u0000\u036f\u036b\u0001\u0000\u0000\u0000"+ - "\u0370\u00ab\u0001\u0000\u0000\u0000\u0371\u0372\u0006V\uffff\uffff\u0000"+ - "\u0372\u0376\u0003\u00aeW\u0000\u0373\u0374\u0007\u0005\u0000\u0000\u0374"+ - "\u0376\u0003\u00acV\u0003\u0375\u0371\u0001\u0000\u0000\u0000\u0375\u0373"+ - "\u0001\u0000\u0000\u0000\u0376\u037f\u0001\u0000\u0000\u0000\u0377\u0378"+ - "\n\u0002\u0000\u0000\u0378\u0379\u0007\u0006\u0000\u0000\u0379\u037e\u0003"+ - "\u00acV\u0003\u037a\u037b\n\u0001\u0000\u0000\u037b\u037c\u0007\u0005"+ - "\u0000\u0000\u037c\u037e\u0003\u00acV\u0002\u037d\u0377\u0001\u0000\u0000"+ - "\u0000\u037d\u037a\u0001\u0000\u0000\u0000\u037e\u0381\u0001\u0000\u0000"+ - "\u0000\u037f\u037d\u0001\u0000\u0000\u0000\u037f\u0380\u0001\u0000\u0000"+ - "\u0000\u0380\u00ad\u0001\u0000\u0000\u0000\u0381\u037f\u0001\u0000\u0000"+ - "\u0000\u0382\u0383\u0006W\uffff\uffff\u0000\u0383\u038b\u0003\u00ba]\u0000"+ - "\u0384\u038b\u00034\u001a\u0000\u0385\u038b\u0003\u00b0X\u0000\u0386\u0387"+ - "\u0005j\u0000\u0000\u0387\u0388\u0003\u00a4R\u0000\u0388\u0389\u0005k"+ - "\u0000\u0000\u0389\u038b\u0001\u0000\u0000\u0000\u038a\u0382\u0001\u0000"+ - "\u0000\u0000\u038a\u0384\u0001\u0000\u0000\u0000\u038a\u0385\u0001\u0000"+ - "\u0000\u0000\u038a\u0386\u0001\u0000\u0000\u0000\u038b\u0391\u0001\u0000"+ - "\u0000\u0000\u038c\u038d\n\u0001\u0000\u0000\u038d\u038e\u0005B\u0000"+ - "\u0000\u038e\u0390\u0003\f\u0006\u0000\u038f\u038c\u0001\u0000\u0000\u0000"+ - "\u0390\u0393\u0001\u0000\u0000\u0000\u0391\u038f\u0001\u0000\u0000\u0000"+ - "\u0391\u0392\u0001\u0000\u0000\u0000\u0392\u00af\u0001\u0000\u0000\u0000"+ - "\u0393\u0391\u0001\u0000\u0000\u0000\u0394\u0395\u0003\u00b2Y\u0000\u0395"+ - "\u03a3\u0005j\u0000\u0000\u0396\u03a4\u0005`\u0000\u0000\u0397\u039c\u0003"+ - "\u00a4R\u0000\u0398\u0399\u0005E\u0000\u0000\u0399\u039b\u0003\u00a4R"+ - "\u0000\u039a\u0398\u0001\u0000\u0000\u0000\u039b\u039e\u0001\u0000\u0000"+ - "\u0000\u039c\u039a\u0001\u0000\u0000\u0000\u039c\u039d\u0001\u0000\u0000"+ - "\u0000\u039d\u03a1\u0001\u0000\u0000\u0000\u039e\u039c\u0001\u0000\u0000"+ - "\u0000\u039f\u03a0\u0005E\u0000\u0000\u03a0\u03a2\u0003\u00b4Z\u0000\u03a1"+ - "\u039f\u0001\u0000\u0000\u0000\u03a1\u03a2\u0001\u0000\u0000\u0000\u03a2"+ - "\u03a4\u0001\u0000\u0000\u0000\u03a3\u0396\u0001\u0000\u0000\u0000\u03a3"+ - "\u0397\u0001\u0000\u0000\u0000\u03a3\u03a4\u0001\u0000\u0000\u0000\u03a4"+ - "\u03a5\u0001\u0000\u0000\u0000\u03a5\u03a6\u0005k\u0000\u0000\u03a6\u00b1"+ - "\u0001\u0000\u0000\u0000\u03a7\u03ab\u0003F#\u0000\u03a8\u03ab\u0005I"+ - "\u0000\u0000\u03a9\u03ab\u0005L\u0000\u0000\u03aa\u03a7\u0001\u0000\u0000"+ - "\u0000\u03aa\u03a8\u0001\u0000\u0000\u0000\u03aa\u03a9\u0001\u0000\u0000"+ - "\u0000\u03ab\u00b3\u0001\u0000\u0000\u0000\u03ac\u03b5\u0005c\u0000\u0000"+ - "\u03ad\u03b2\u0003\u00b6[\u0000\u03ae\u03af\u0005E\u0000\u0000\u03af\u03b1"+ - "\u0003\u00b6[\u0000\u03b0\u03ae\u0001\u0000\u0000\u0000\u03b1\u03b4\u0001"+ - "\u0000\u0000\u0000\u03b2\u03b0\u0001\u0000\u0000\u0000\u03b2\u03b3\u0001"+ - "\u0000\u0000\u0000\u03b3\u03b6\u0001\u0000\u0000\u0000\u03b4\u03b2\u0001"+ - "\u0000\u0000\u0000\u03b5\u03ad\u0001\u0000\u0000\u0000\u03b5\u03b6\u0001"+ - "\u0000\u0000\u0000\u03b6\u03b7\u0001\u0000\u0000\u0000\u03b7\u03b8\u0005"+ - "d\u0000\u0000\u03b8\u00b5\u0001\u0000\u0000\u0000\u03b9\u03ba\u0003\u00c4"+ - "b\u0000\u03ba\u03bb\u0005C\u0000\u0000\u03bb\u03bc\u0003\u00b8\\\u0000"+ - "\u03bc\u00b7\u0001\u0000\u0000\u0000\u03bd\u03c0\u0003\u00ba]\u0000\u03be"+ - "\u03c0\u0003\u00b4Z\u0000\u03bf\u03bd\u0001\u0000\u0000\u0000\u03bf\u03be"+ - "\u0001\u0000\u0000\u0000\u03c0\u00b9\u0001\u0000\u0000\u0000\u03c1\u03ec"+ - "\u0005O\u0000\u0000\u03c2\u03c3\u0003\u00c2a\u0000\u03c3\u03c4\u0005l"+ - "\u0000\u0000\u03c4\u03ec\u0001\u0000\u0000\u0000\u03c5\u03ec\u0003\u00c0"+ - "`\u0000\u03c6\u03ec\u0003\u00c2a\u0000\u03c7\u03ec\u0003\u00bc^\u0000"+ - "\u03c8\u03ec\u0003B!\u0000\u03c9\u03ec\u0003\u00c4b\u0000\u03ca\u03cb"+ - "\u0005h\u0000\u0000\u03cb\u03d0\u0003\u00be_\u0000\u03cc\u03cd\u0005E"+ - "\u0000\u0000\u03cd\u03cf\u0003\u00be_\u0000\u03ce\u03cc\u0001\u0000\u0000"+ - "\u0000\u03cf\u03d2\u0001\u0000\u0000\u0000\u03d0\u03ce\u0001\u0000\u0000"+ - "\u0000\u03d0\u03d1\u0001\u0000\u0000\u0000\u03d1\u03d3\u0001\u0000\u0000"+ - "\u0000\u03d2\u03d0\u0001\u0000\u0000\u0000\u03d3\u03d4\u0005i\u0000\u0000"+ - "\u03d4\u03ec\u0001\u0000\u0000\u0000\u03d5\u03d6\u0005h\u0000\u0000\u03d6"+ - "\u03db\u0003\u00bc^\u0000\u03d7\u03d8\u0005E\u0000\u0000\u03d8\u03da\u0003"+ - "\u00bc^\u0000\u03d9\u03d7\u0001\u0000\u0000\u0000\u03da\u03dd\u0001\u0000"+ - "\u0000\u0000\u03db\u03d9\u0001\u0000\u0000\u0000\u03db\u03dc\u0001\u0000"+ - "\u0000\u0000\u03dc\u03de\u0001\u0000\u0000\u0000\u03dd\u03db\u0001\u0000"+ - "\u0000\u0000\u03de\u03df\u0005i\u0000\u0000\u03df\u03ec\u0001\u0000\u0000"+ - "\u0000\u03e0\u03e1\u0005h\u0000\u0000\u03e1\u03e6\u0003\u00c4b\u0000\u03e2"+ - "\u03e3\u0005E\u0000\u0000\u03e3\u03e5\u0003\u00c4b\u0000\u03e4\u03e2\u0001"+ - "\u0000\u0000\u0000\u03e5\u03e8\u0001\u0000\u0000\u0000\u03e6\u03e4\u0001"+ - "\u0000\u0000\u0000\u03e6\u03e7\u0001\u0000\u0000\u0000\u03e7\u03e9\u0001"+ - "\u0000\u0000\u0000\u03e8\u03e6\u0001\u0000\u0000\u0000\u03e9\u03ea\u0005"+ - "i\u0000\u0000\u03ea\u03ec\u0001\u0000\u0000\u0000\u03eb\u03c1\u0001\u0000"+ - "\u0000\u0000\u03eb\u03c2\u0001\u0000\u0000\u0000\u03eb\u03c5\u0001\u0000"+ - "\u0000\u0000\u03eb\u03c6\u0001\u0000\u0000\u0000\u03eb\u03c7\u0001\u0000"+ - "\u0000\u0000\u03eb\u03c8\u0001\u0000\u0000\u0000\u03eb\u03c9\u0001\u0000"+ - "\u0000\u0000\u03eb\u03ca\u0001\u0000\u0000\u0000\u03eb\u03d5\u0001\u0000"+ - "\u0000\u0000\u03eb\u03e0\u0001\u0000\u0000\u0000\u03ec\u00bb\u0001\u0000"+ - "\u0000\u0000\u03ed\u03ee\u0007\u0007\u0000\u0000\u03ee\u00bd\u0001\u0000"+ - "\u0000\u0000\u03ef\u03f2\u0003\u00c0`\u0000\u03f0\u03f2\u0003\u00c2a\u0000"+ - "\u03f1\u03ef\u0001\u0000\u0000\u0000\u03f1\u03f0\u0001\u0000\u0000\u0000"+ - "\u03f2\u00bf\u0001\u0000\u0000\u0000\u03f3\u03f5\u0007\u0005\u0000\u0000"+ - "\u03f4\u03f3\u0001\u0000\u0000\u0000\u03f4\u03f5\u0001\u0000\u0000\u0000"+ - "\u03f5\u03f6\u0001\u0000\u0000\u0000\u03f6\u03f7\u0005=\u0000\u0000\u03f7"+ - "\u00c1\u0001\u0000\u0000\u0000\u03f8\u03fa\u0007\u0005\u0000\u0000\u03f9"+ - "\u03f8\u0001\u0000\u0000\u0000\u03f9\u03fa\u0001\u0000\u0000\u0000\u03fa"+ - "\u03fb\u0001\u0000\u0000\u0000\u03fb\u03fc\u0005<\u0000\u0000\u03fc\u00c3"+ - "\u0001\u0000\u0000\u0000\u03fd\u03fe\u0005;\u0000\u0000\u03fe\u00c5\u0001"+ - "\u0000\u0000\u0000\u03ff\u0400\u0007\b\u0000\u0000\u0400\u00c7\u0001\u0000"+ - "\u0000\u0000\u0401\u0402\u0007\t\u0000\u0000\u0402\u0403\u0005\u0083\u0000"+ - "\u0000\u0403\u0404\u0003\u00cae\u0000\u0404\u0405\u0003\u00ccf\u0000\u0405"+ - "\u00c9\u0001\u0000\u0000\u0000\u0406\u0407\u0004e\u000e\u0000\u0407\u0409"+ - "\u0003 \u0010\u0000\u0408\u040a\u0005\u009f\u0000\u0000\u0409\u0408\u0001"+ - "\u0000\u0000\u0000\u0409\u040a\u0001\u0000\u0000\u0000\u040a\u040b\u0001"+ - "\u0000\u0000\u0000\u040b\u040c\u0005r\u0000\u0000\u040c\u040f\u0001\u0000"+ - "\u0000\u0000\u040d\u040f\u0003 \u0010\u0000\u040e\u0406\u0001\u0000\u0000"+ - "\u0000\u040e\u040d\u0001\u0000\u0000\u0000\u040f\u00cb\u0001\u0000\u0000"+ - "\u0000\u0410\u0411\u0005Q\u0000\u0000\u0411\u0416\u0003\u00a4R\u0000\u0412"+ - "\u0413\u0005E\u0000\u0000\u0413\u0415\u0003\u00a4R\u0000\u0414\u0412\u0001"+ - "\u0000\u0000\u0000\u0415\u0418\u0001\u0000\u0000\u0000\u0416\u0414\u0001"+ - "\u0000\u0000\u0000\u0416\u0417\u0001\u0000\u0000\u0000\u0417\u00cd\u0001"+ - "\u0000\u0000\u0000\u0418\u0416\u0001\u0000\u0000\u0000\u0419\u041d\u0005"+ - "(\u0000\u0000\u041a\u041c\u0003\u00d2i\u0000\u041b\u041a\u0001\u0000\u0000"+ - "\u0000\u041c\u041f\u0001\u0000\u0000\u0000\u041d\u041b\u0001\u0000\u0000"+ - "\u0000\u041d\u041e\u0001\u0000\u0000\u0000\u041e\u0423\u0001\u0000\u0000"+ - "\u0000\u041f\u041d\u0001\u0000\u0000\u0000\u0420\u0421\u0003\u00d0h\u0000"+ - "\u0421\u0422\u0005@\u0000\u0000\u0422\u0424\u0001\u0000\u0000\u0000\u0423"+ - "\u0420\u0001\u0000\u0000\u0000\u0423\u0424\u0001\u0000\u0000\u0000\u0424"+ - "\u0425\u0001\u0000\u0000\u0000\u0425\u0426\u0005j\u0000\u0000\u0426\u0427"+ - "\u0005f\u0000\u0000\u0427\u0456\u0005k\u0000\u0000\u0428\u042c\u0005("+ - "\u0000\u0000\u0429\u042b\u0003\u00d2i\u0000\u042a\u0429\u0001\u0000\u0000"+ - "\u0000\u042b\u042e\u0001\u0000\u0000\u0000\u042c\u042a\u0001\u0000\u0000"+ - "\u0000\u042c\u042d\u0001\u0000\u0000\u0000\u042d\u0432\u0001\u0000\u0000"+ - "\u0000\u042e\u042c\u0001\u0000\u0000\u0000\u042f\u0430\u0003\u00d0h\u0000"+ - "\u0430\u0431\u0005@\u0000\u0000\u0431\u0433\u0001\u0000\u0000\u0000\u0432"+ - "\u042f\u0001\u0000\u0000\u0000\u0432\u0433\u0001\u0000\u0000\u0000\u0433"+ - "\u0434\u0001\u0000\u0000\u0000\u0434\u0456\u0005f\u0000\u0000\u0435\u0439"+ - "\u0005(\u0000\u0000\u0436\u0438\u0003\u00d2i\u0000\u0437\u0436\u0001\u0000"+ - "\u0000\u0000\u0438\u043b\u0001\u0000\u0000\u0000\u0439\u0437\u0001\u0000"+ - "\u0000\u0000\u0439\u043a\u0001\u0000\u0000\u0000\u043a\u043f\u0001\u0000"+ - "\u0000\u0000\u043b\u0439\u0001\u0000\u0000\u0000\u043c\u043d\u0003\u00d0"+ - "h\u0000\u043d\u043e\u0005@\u0000\u0000\u043e\u0440\u0001\u0000\u0000\u0000"+ - "\u043f\u043c\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000\u0000\u0000"+ - "\u0440\u0441\u0001\u0000\u0000\u0000\u0441\u0443\u0005j\u0000\u0000\u0442"+ - "\u0444\u0003\u00dam\u0000\u0443\u0442\u0001\u0000\u0000\u0000\u0444\u0445"+ - "\u0001\u0000\u0000\u0000\u0445\u0443\u0001\u0000\u0000\u0000\u0445\u0446"+ - "\u0001\u0000\u0000\u0000\u0446\u0447\u0001\u0000\u0000\u0000\u0447\u0448"+ - "\u0005k\u0000\u0000\u0448\u0456\u0001\u0000\u0000\u0000\u0449\u044d\u0005"+ - "(\u0000\u0000\u044a\u044c\u0003\u00d2i\u0000\u044b\u044a\u0001\u0000\u0000"+ - "\u0000\u044c\u044f\u0001\u0000\u0000\u0000\u044d\u044b\u0001\u0000\u0000"+ - "\u0000\u044d\u044e\u0001\u0000\u0000\u0000\u044e\u0451\u0001\u0000\u0000"+ - "\u0000\u044f\u044d\u0001\u0000\u0000\u0000\u0450\u0452\u0003\u00dam\u0000"+ - "\u0451\u0450\u0001\u0000\u0000\u0000\u0452\u0453\u0001\u0000\u0000\u0000"+ - "\u0453\u0451\u0001\u0000\u0000\u0000\u0453\u0454\u0001\u0000\u0000\u0000"+ - "\u0454\u0456\u0001\u0000\u0000\u0000\u0455\u0419\u0001\u0000\u0000\u0000"+ - "\u0455\u0428\u0001\u0000\u0000\u0000\u0455\u0435\u0001\u0000\u0000\u0000"+ - "\u0455\u0449\u0001\u0000\u0000\u0000\u0456\u00cf\u0001\u0000\u0000\u0000"+ - "\u0457\u0458\u0007\u0001\u0000\u0000\u0458\u00d1\u0001\u0000\u0000\u0000"+ - "\u0459\u045a\u0003\u00d4j\u0000\u045a\u045b\u0005@\u0000\u0000\u045b\u045c"+ - "\u0003\u00d6k\u0000\u045c\u00d3\u0001\u0000\u0000\u0000\u045d\u045e\u0007"+ - "\n\u0000\u0000\u045e\u00d5\u0001\u0000\u0000\u0000\u045f\u0464\u0003\u00dc"+ - "n\u0000\u0460\u0461\u0005E\u0000\u0000\u0461\u0463\u0003\u00dcn\u0000"+ - "\u0462\u0460\u0001\u0000\u0000\u0000\u0463\u0466\u0001\u0000\u0000\u0000"+ - "\u0464\u0462\u0001\u0000\u0000\u0000\u0464\u0465\u0001\u0000\u0000\u0000"+ - "\u0465\u046a\u0001\u0000\u0000\u0000\u0466\u0464\u0001\u0000\u0000\u0000"+ - "\u0467\u046a\u0005m\u0000\u0000\u0468\u046a\u0005f\u0000\u0000\u0469\u045f"+ - "\u0001\u0000\u0000\u0000\u0469\u0467\u0001\u0000\u0000\u0000\u0469\u0468"+ - "\u0001\u0000\u0000\u0000\u046a\u00d7\u0001\u0000\u0000\u0000\u046b\u046c"+ - "\u0007\u000b\u0000\u0000\u046c\u00d9\u0001\u0000\u0000\u0000\u046d\u046f"+ - "\u0003\u00d8l\u0000\u046e\u046d\u0001\u0000\u0000\u0000\u046f\u0470\u0001"+ - "\u0000\u0000\u0000\u0470\u046e\u0001\u0000\u0000\u0000\u0470\u0471\u0001"+ - "\u0000\u0000\u0000\u0471\u047b\u0001\u0000\u0000\u0000\u0472\u0476\u0005"+ - "j\u0000\u0000\u0473\u0475\u0003\u00dam\u0000\u0474\u0473\u0001\u0000\u0000"+ - "\u0000\u0475\u0478\u0001\u0000\u0000\u0000\u0476\u0474\u0001\u0000\u0000"+ - "\u0000\u0476\u0477\u0001\u0000\u0000\u0000\u0477\u0479\u0001\u0000\u0000"+ - "\u0000\u0478\u0476\u0001\u0000\u0000\u0000\u0479\u047b\u0005k\u0000\u0000"+ - "\u047a\u046e\u0001\u0000\u0000\u0000\u047a\u0472\u0001\u0000\u0000\u0000"+ - "\u047b\u00db\u0001\u0000\u0000\u0000\u047c\u047d\u0003\u00deo\u0000\u047d"+ - "\u047e\u0005C\u0000\u0000\u047e\u047f\u0003\u00e2q\u0000\u047f\u0486\u0001"+ - "\u0000\u0000\u0000\u0480\u0481\u0003\u00e2q\u0000\u0481\u0482\u0005B\u0000"+ - "\u0000\u0482\u0483\u0003\u00e0p\u0000\u0483\u0486\u0001\u0000\u0000\u0000"+ - "\u0484\u0486\u0003\u00e4r\u0000\u0485\u047c\u0001\u0000\u0000\u0000\u0485"+ - "\u0480\u0001\u0000\u0000\u0000\u0485\u0484\u0001\u0000\u0000\u0000\u0486"+ - "\u00dd\u0001\u0000\u0000\u0000\u0487\u0488\u0007\f\u0000\u0000\u0488\u00df"+ - "\u0001\u0000\u0000\u0000\u0489\u048a\u0007\f\u0000\u0000\u048a\u00e1\u0001"+ - "\u0000\u0000\u0000\u048b\u048c\u0007\f\u0000\u0000\u048c\u00e3\u0001\u0000"+ - "\u0000\u0000\u048d\u048e\u0007\r\u0000\u0000\u048e\u00e5\u0001\u0000\u0000"+ + "\u01eb\u0005A\u0000\u0000\u01eb\u01f0\u0003\u00a4R\u0000\u01ec\u01ed\u0005"+ + "E\u0000\u0000\u01ed\u01ef\u0003\u00a4R\u0000\u01ee\u01ec\u0001\u0000\u0000"+ + "\u0000\u01ef\u01f2\u0001\u0000\u0000\u0000\u01f0\u01ee\u0001\u0000\u0000"+ + "\u0000\u01f0\u01f1\u0001\u0000\u0000\u0000\u01f1M\u0001\u0000\u0000\u0000"+ + "\u01f2\u01f0\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005\u000f\u0000\u0000"+ + "\u01f4\u01f9\u0003P(\u0000\u01f5\u01f6\u0005E\u0000\u0000\u01f6\u01f8"+ + "\u0003P(\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\u01faO\u0001\u0000\u0000\u0000\u01fb\u01f9\u0001\u0000\u0000"+ + "\u0000\u01fc\u01fe\u0003\u00a4R\u0000\u01fd\u01ff\u0007\u0002\u0000\u0000"+ + "\u01fe\u01fd\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000\u0000\u0000"+ + "\u01ff\u0202\u0001\u0000\u0000\u0000\u0200\u0201\u0005P\u0000\u0000\u0201"+ + "\u0203\u0007\u0003\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000\u0202"+ + "\u0203\u0001\u0000\u0000\u0000\u0203Q\u0001\u0000\u0000\u0000\u0204\u0205"+ + "\u0005&\u0000\u0000\u0205\u0206\u0003<\u001e\u0000\u0206S\u0001\u0000"+ + "\u0000\u0000\u0207\u0208\u0005%\u0000\u0000\u0208\u0209\u0003<\u001e\u0000"+ + "\u0209U\u0001\u0000\u0000\u0000\u020a\u020b\u0005)\u0000\u0000\u020b\u0210"+ + "\u0003X,\u0000\u020c\u020d\u0005E\u0000\u0000\u020d\u020f\u0003X,\u0000"+ + "\u020e\u020c\u0001\u0000\u0000\u0000\u020f\u0212\u0001\u0000\u0000\u0000"+ + "\u0210\u020e\u0001\u0000\u0000\u0000\u0210\u0211\u0001\u0000\u0000\u0000"+ + "\u0211W\u0001\u0000\u0000\u0000\u0212\u0210\u0001\u0000\u0000\u0000\u0213"+ + "\u0214\u00038\u001c\u0000\u0214\u0215\u0005\u009f\u0000\u0000\u0215\u0216"+ + "\u00038\u001c\u0000\u0216\u021c\u0001\u0000\u0000\u0000\u0217\u0218\u0003"+ + "8\u001c\u0000\u0218\u0219\u0005@\u0000\u0000\u0219\u021a\u00038\u001c"+ + "\u0000\u021a\u021c\u0001\u0000\u0000\u0000\u021b\u0213\u0001\u0000\u0000"+ + "\u0000\u021b\u0217\u0001\u0000\u0000\u0000\u021cY\u0001\u0000\u0000\u0000"+ + "\u021d\u021e\u0005\b\u0000\u0000\u021e\u021f\u0003\u00aeW\u0000\u021f"+ + "\u0221\u0003\u00c4b\u0000\u0220\u0222\u0003\\.\u0000\u0221\u0220\u0001"+ + "\u0000\u0000\u0000\u0221\u0222\u0001\u0000\u0000\u0000\u0222[\u0001\u0000"+ + "\u0000\u0000\u0223\u0228\u0003^/\u0000\u0224\u0225\u0005E\u0000\u0000"+ + "\u0225\u0227\u0003^/\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]\u0001\u0000\u0000\u0000\u022a\u0228\u0001"+ + "\u0000\u0000\u0000\u022b\u022c\u0003>\u001f\u0000\u022c\u022d\u0005@\u0000"+ + "\u0000\u022d\u022e\u0003\u00ba]\u0000\u022e_\u0001\u0000\u0000\u0000\u022f"+ + "\u0230\u0005V\u0000\u0000\u0230\u0232\u0003\u00b4Z\u0000\u0231\u022f\u0001"+ + "\u0000\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232a\u0001\u0000"+ + "\u0000\u0000\u0233\u0234\u0005\n\u0000\u0000\u0234\u0235\u0003\u00aeW"+ + "\u0000\u0235\u023a\u0003\u00c4b\u0000\u0236\u0237\u0005E\u0000\u0000\u0237"+ + "\u0239\u0003\u00c4b\u0000\u0238\u0236\u0001\u0000\u0000\u0000\u0239\u023c"+ + "\u0001\u0000\u0000\u0000\u023a\u0238\u0001\u0000\u0000\u0000\u023a\u023b"+ + "\u0001\u0000\u0000\u0000\u023bc\u0001\u0000\u0000\u0000\u023c\u023a\u0001"+ + "\u0000\u0000\u0000\u023d\u023e\u0005$\u0000\u0000\u023e\u023f\u00034\u001a"+ + "\u0000\u023fe\u0001\u0000\u0000\u0000\u0240\u0241\u0005\u0006\u0000\u0000"+ + "\u0241\u0242\u0003h4\u0000\u0242g\u0001\u0000\u0000\u0000\u0243\u0244"+ + "\u0005j\u0000\u0000\u0244\u0245\u0003\u0004\u0002\u0000\u0245\u0246\u0005"+ + "k\u0000\u0000\u0246i\u0001\u0000\u0000\u0000\u0247\u0248\u0005+\u0000"+ + "\u0000\u0248\u0249\u0005\u00a6\u0000\u0000\u0249k\u0001\u0000\u0000\u0000"+ + "\u024a\u024b\u0005\u0005\u0000\u0000\u024b\u024e\u0003n7\u0000\u024c\u024d"+ + "\u0005Q\u0000\u0000\u024d\u024f\u00038\u001c\u0000\u024e\u024c\u0001\u0000"+ + "\u0000\u0000\u024e\u024f\u0001\u0000\u0000\u0000\u024f\u0259\u0001\u0000"+ + "\u0000\u0000\u0250\u0251\u0005V\u0000\u0000\u0251\u0256\u0003p8\u0000"+ + "\u0252\u0253\u0005E\u0000\u0000\u0253\u0255\u0003p8\u0000\u0254\u0252"+ + "\u0001\u0000\u0000\u0000\u0255\u0258\u0001\u0000\u0000\u0000\u0256\u0254"+ + "\u0001\u0000\u0000\u0000\u0256\u0257\u0001\u0000\u0000\u0000\u0257\u025a"+ + "\u0001\u0000\u0000\u0000\u0258\u0256\u0001\u0000\u0000\u0000\u0259\u0250"+ + "\u0001\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025am\u0001"+ + "\u0000\u0000\u0000\u025b\u025c\u0007\u0004\u0000\u0000\u025co\u0001\u0000"+ + "\u0000\u0000\u025d\u025e\u00038\u001c\u0000\u025e\u025f\u0005@\u0000\u0000"+ + "\u025f\u0261\u0001\u0000\u0000\u0000\u0260\u025d\u0001\u0000\u0000\u0000"+ + "\u0260\u0261\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000"+ + "\u0262\u0263\u00038\u001c\u0000\u0263q\u0001\u0000\u0000\u0000\u0264\u0265"+ + "\u0005\u000e\u0000\u0000\u0265\u0266\u0003\u00ba]\u0000\u0266s\u0001\u0000"+ + "\u0000\u0000\u0267\u0268\u0005\u0004\u0000\u0000\u0268\u026c\u00034\u001a"+ + "\u0000\u0269\u026b\u0003v;\u0000\u026a\u0269\u0001\u0000\u0000\u0000\u026b"+ + "\u026e\u0001\u0000\u0000\u0000\u026c\u026a\u0001\u0000\u0000\u0000\u026c"+ + "\u026d\u0001\u0000\u0000\u0000\u026du\u0001\u0000\u0000\u0000\u026e\u026c"+ + "\u0001\u0000\u0000\u0000\u026f\u0270\u0005Q\u0000\u0000\u0270\u0277\u0003"+ + "4\u001a\u0000\u0271\u0272\u0005\u009f\u0000\u0000\u0272\u0273\u00034\u001a"+ + "\u0000\u0273\u0274\u0005E\u0000\u0000\u0274\u0275\u00034\u001a\u0000\u0275"+ + "\u0277\u0001\u0000\u0000\u0000\u0276\u026f\u0001\u0000\u0000\u0000\u0276"+ + "\u0271\u0001\u0000\u0000\u0000\u0277w\u0001\u0000\u0000\u0000\u0278\u0279"+ + "\u0005\u001a\u0000\u0000\u0279\u027a\u0003z=\u0000\u027ay\u0001\u0000"+ + "\u0000\u0000\u027b\u027d\u0003|>\u0000\u027c\u027b\u0001\u0000\u0000\u0000"+ + "\u027d\u027e\u0001\u0000\u0000\u0000\u027e\u027c\u0001\u0000\u0000\u0000"+ + "\u027e\u027f\u0001\u0000\u0000\u0000\u027f{\u0001\u0000\u0000\u0000\u0280"+ + "\u0281\u0005j\u0000\u0000\u0281\u0282\u0003~?\u0000\u0282\u0283\u0005"+ + "k\u0000\u0000\u0283}\u0001\u0000\u0000\u0000\u0284\u0285\u0006?\uffff"+ + "\uffff\u0000\u0285\u0286\u0003\u0080@\u0000\u0286\u028c\u0001\u0000\u0000"+ + "\u0000\u0287\u0288\n\u0001\u0000\u0000\u0288\u0289\u0005:\u0000\u0000"+ + "\u0289\u028b\u0003\u0080@\u0000\u028a\u0287\u0001\u0000\u0000\u0000\u028b"+ + "\u028e\u0001\u0000\u0000\u0000\u028c\u028a\u0001\u0000\u0000\u0000\u028c"+ + "\u028d\u0001\u0000\u0000\u0000\u028d\u007f\u0001\u0000\u0000\u0000\u028e"+ + "\u028c\u0001\u0000\u0000\u0000\u028f\u0290\u0003\b\u0004\u0000\u0290\u0081"+ + "\u0001\u0000\u0000\u0000\u0291\u0295\u0005\f\u0000\u0000\u0292\u0293\u0003"+ + "4\u001a\u0000\u0293\u0294\u0005@\u0000\u0000\u0294\u0296\u0001\u0000\u0000"+ + "\u0000\u0295\u0292\u0001\u0000\u0000\u0000\u0295\u0296\u0001\u0000\u0000"+ + "\u0000\u0296\u0297\u0001\u0000\u0000\u0000\u0297\u0298\u0003\u00ba]\u0000"+ + "\u0298\u0299\u0005Q\u0000\u0000\u0299\u029a\u0003\u0010\b\u0000\u029a"+ + "\u029b\u0003`0\u0000\u029b\u0083\u0001\u0000\u0000\u0000\u029c\u02a0\u0005"+ + "\u0007\u0000\u0000\u029d\u029e\u00034\u001a\u0000\u029e\u029f\u0005@\u0000"+ + "\u0000\u029f\u02a1\u0001\u0000\u0000\u0000\u02a0\u029d\u0001\u0000\u0000"+ + "\u0000\u02a0\u02a1\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+ + "\u0000\u02a2\u02a3\u0003\u00aeW\u0000\u02a3\u02a4\u0003`0\u0000\u02a4"+ + "\u0085\u0001\u0000\u0000\u0000\u02a5\u02a6\u0005\u001c\u0000\u0000\u02a6"+ + "\u02a7\u0005\u007f\u0000\u0000\u02a7\u02aa\u00030\u0018\u0000\u02a8\u02a9"+ + "\u0005A\u0000\u0000\u02a9\u02ab\u0003\u0010\b\u0000\u02aa\u02a8\u0001"+ + "\u0000\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000\u0000\u02ab\u02b3\u0001"+ + "\u0000\u0000\u0000\u02ac\u02ad\u0005\u001d\u0000\u0000\u02ad\u02b0\u0003"+ + "0\u0018\u0000\u02ae\u02af\u0005A\u0000\u0000\u02af\u02b1\u0003\u0010\b"+ + "\u0000\u02b0\u02ae\u0001\u0000\u0000\u0000\u02b0\u02b1\u0001\u0000\u0000"+ + "\u0000\u02b1\u02b3\u0001\u0000\u0000\u0000\u02b2\u02a5\u0001\u0000\u0000"+ + "\u0000\u02b2\u02ac\u0001\u0000\u0000\u0000\u02b3\u0087\u0001\u0000\u0000"+ + "\u0000\u02b4\u02b6\u0005\u001b\u0000\u0000\u02b5\u02b7\u0003>\u001f\u0000"+ + "\u02b6\u02b5\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000"+ + "\u02b7\u02bb\u0001\u0000\u0000\u0000\u02b8\u02ba\u0003\u008aE\u0000\u02b9"+ + "\u02b8\u0001\u0000\u0000\u0000\u02ba\u02bd\u0001\u0000\u0000\u0000\u02bb"+ + "\u02b9\u0001\u0000\u0000\u0000\u02bb\u02bc\u0001\u0000\u0000\u0000\u02bc"+ + "\u0089\u0001\u0000\u0000\u0000\u02bd\u02bb\u0001\u0000\u0000\u0000\u02be"+ + "\u02bf\u0005z\u0000\u0000\u02bf\u02c0\u0005A\u0000\u0000\u02c0\u02ca\u0003"+ + "4\u001a\u0000\u02c1\u02c2\u0005{\u0000\u0000\u02c2\u02c3\u0005A\u0000"+ + "\u0000\u02c3\u02ca\u0003\u008cF\u0000\u02c4\u02c5\u0005y\u0000\u0000\u02c5"+ + "\u02c6\u0005A\u0000\u0000\u02c6\u02ca\u00034\u001a\u0000\u02c7\u02c8\u0005"+ + "V\u0000\u0000\u02c8\u02ca\u0003\u00b4Z\u0000\u02c9\u02be\u0001\u0000\u0000"+ + "\u0000\u02c9\u02c1\u0001\u0000\u0000\u0000\u02c9\u02c4\u0001\u0000\u0000"+ + "\u0000\u02c9\u02c7\u0001\u0000\u0000\u0000\u02ca\u008b\u0001\u0000\u0000"+ + "\u0000\u02cb\u02d0\u00034\u001a\u0000\u02cc\u02cd\u0005E\u0000\u0000\u02cd"+ + "\u02cf\u00034\u001a\u0000\u02ce\u02cc\u0001\u0000\u0000\u0000\u02cf\u02d2"+ + "\u0001\u0000\u0000\u0000\u02d0\u02ce\u0001\u0000\u0000\u0000\u02d0\u02d1"+ + "\u0001\u0000\u0000\u0000\u02d1\u008d\u0001\u0000\u0000\u0000\u02d2\u02d0"+ + "\u0001\u0000\u0000\u0000\u02d3\u02d4\u0005\u0013\u0000\u0000\u02d4\u008f"+ + "\u0001\u0000\u0000\u0000\u02d5\u02d6\u0005\u0015\u0000\u0000\u02d6\u0091"+ + "\u0001\u0000\u0000\u0000\u02d7\u02d8\u0005\"\u0000\u0000\u02d8\u02d9\u0003"+ + " \u0010\u0000\u02d9\u02da\u0005Q\u0000\u0000\u02da\u02db\u0003<\u001e"+ + "\u0000\u02db\u0093\u0001\u0000\u0000\u0000\u02dc\u02dd\u0005\'\u0000\u0000"+ + "\u02dd\u02de\u0003<\u001e\u0000\u02de\u0095\u0001\u0000\u0000\u0000\u02df"+ + "\u02e0\u0005\u0012\u0000\u0000\u02e0\u02e1\u00034\u001a\u0000\u02e1\u02e2"+ + "\u0005@\u0000\u0000\u02e2\u02e3\u0003\u00aeW\u0000\u02e3\u0097\u0001\u0000"+ + "\u0000\u0000\u02e4\u02e5\u0005\u0014\u0000\u0000\u02e5\u02e6\u00034\u001a"+ + "\u0000\u02e6\u02e7\u0005@\u0000\u0000\u02e7\u02e8\u0003\u00aeW\u0000\u02e8"+ + "\u0099\u0001\u0000\u0000\u0000\u02e9\u02ea\u0005\u0016\u0000\u0000\u02ea"+ + "\u02eb\u00034\u001a\u0000\u02eb\u02ec\u0005@\u0000\u0000\u02ec\u02ed\u0003"+ + "\u00aeW\u0000\u02ed\u02ee\u0003`0\u0000\u02ee\u009b\u0001\u0000\u0000"+ + "\u0000\u02ef\u02f0\u0005*\u0000\u0000\u02f0\u02f1\u0003\u009eO\u0000\u02f1"+ + "\u02f2\u0005D\u0000\u0000\u02f2\u009d\u0001\u0000\u0000\u0000\u02f3\u02f4"+ + "\u0003>\u001f\u0000\u02f4\u02f7\u0005@\u0000\u0000\u02f5\u02f8\u0003\u00ba"+ + "]\u0000\u02f6\u02f8\u0003\u00b4Z\u0000\u02f7\u02f5\u0001\u0000\u0000\u0000"+ + "\u02f7\u02f6\u0001\u0000\u0000\u0000\u02f8\u009f\u0001\u0000\u0000\u0000"+ + "\u02f9\u02fb\u0005#\u0000\u0000\u02fa\u02fc\u0003\u00a2Q\u0000\u02fb\u02fa"+ + "\u0001\u0000\u0000\u0000\u02fb\u02fc\u0001\u0000\u0000\u0000\u02fc\u02fd"+ + "\u0001\u0000\u0000\u0000\u02fd\u02fe\u0005Q\u0000\u0000\u02fe\u02ff\u0003"+ + "4\u001a\u0000\u02ff\u0300\u0005\u008e\u0000\u0000\u0300\u0301\u0003\u00c2"+ + "a\u0000\u0301\u0302\u0003`0\u0000\u0302\u00a1\u0001\u0000\u0000\u0000"+ + "\u0303\u0306\u0003B!\u0000\u0304\u0306\u0003\u00aeW\u0000\u0305\u0303"+ + "\u0001\u0000\u0000\u0000\u0305\u0304\u0001\u0000\u0000\u0000\u0306\u00a3"+ + "\u0001\u0000\u0000\u0000\u0307\u0308\u0006R\uffff\uffff\u0000\u0308\u0309"+ + "\u0005N\u0000\u0000\u0309\u0325\u0003\u00a4R\b\u030a\u0325\u0003\u00aa"+ + "U\u0000\u030b\u0325\u0003\u00a6S\u0000\u030c\u030e\u0003\u00aaU\u0000"+ + "\u030d\u030f\u0005N\u0000\u0000\u030e\u030d\u0001\u0000\u0000\u0000\u030e"+ + "\u030f\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000\u0000\u0000\u0310"+ + "\u0311\u0005J\u0000\u0000\u0311\u0312\u0005j\u0000\u0000\u0312\u0317\u0003"+ + "\u00aaU\u0000\u0313\u0314\u0005E\u0000\u0000\u0314\u0316\u0003\u00aaU"+ + "\u0000\u0315\u0313\u0001\u0000\u0000\u0000\u0316\u0319\u0001\u0000\u0000"+ + "\u0000\u0317\u0315\u0001\u0000\u0000\u0000\u0317\u0318\u0001\u0000\u0000"+ + "\u0000\u0318\u031a\u0001\u0000\u0000\u0000\u0319\u0317\u0001\u0000\u0000"+ + "\u0000\u031a\u031b\u0005k\u0000\u0000\u031b\u0325\u0001\u0000\u0000\u0000"+ + "\u031c\u031d\u0003\u00aaU\u0000\u031d\u031f\u0005K\u0000\u0000\u031e\u0320"+ + "\u0005N\u0000\u0000\u031f\u031e\u0001\u0000\u0000\u0000\u031f\u0320\u0001"+ + "\u0000\u0000\u0000\u0320\u0321\u0001\u0000\u0000\u0000\u0321\u0322\u0005"+ + "O\u0000\u0000\u0322\u0325\u0001\u0000\u0000\u0000\u0323\u0325\u0003\u00a8"+ + "T\u0000\u0324\u0307\u0001\u0000\u0000\u0000\u0324\u030a\u0001\u0000\u0000"+ + "\u0000\u0324\u030b\u0001\u0000\u0000\u0000\u0324\u030c\u0001\u0000\u0000"+ + "\u0000\u0324\u031c\u0001\u0000\u0000\u0000\u0324\u0323\u0001\u0000\u0000"+ + "\u0000\u0325\u032e\u0001\u0000\u0000\u0000\u0326\u0327\n\u0005\u0000\u0000"+ + "\u0327\u0328\u0005>\u0000\u0000\u0328\u032d\u0003\u00a4R\u0006\u0329\u032a"+ + "\n\u0004\u0000\u0000\u032a\u032b\u0005R\u0000\u0000\u032b\u032d\u0003"+ + "\u00a4R\u0005\u032c\u0326\u0001\u0000\u0000\u0000\u032c\u0329\u0001\u0000"+ + "\u0000\u0000\u032d\u0330\u0001\u0000\u0000\u0000\u032e\u032c\u0001\u0000"+ + "\u0000\u0000\u032e\u032f\u0001\u0000\u0000\u0000\u032f\u00a5\u0001\u0000"+ + "\u0000\u0000\u0330\u032e\u0001\u0000\u0000\u0000\u0331\u0333\u0003\u00aa"+ + "U\u0000\u0332\u0334\u0005N\u0000\u0000\u0333\u0332\u0001\u0000\u0000\u0000"+ + "\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335\u0001\u0000\u0000\u0000"+ + "\u0335\u0336\u0005M\u0000\u0000\u0336\u0337\u0003H$\u0000\u0337\u0360"+ + "\u0001\u0000\u0000\u0000\u0338\u033a\u0003\u00aaU\u0000\u0339\u033b\u0005"+ + "N\u0000\u0000\u033a\u0339\u0001\u0000\u0000\u0000\u033a\u033b\u0001\u0000"+ + "\u0000\u0000\u033b\u033c\u0001\u0000\u0000\u0000\u033c\u033d\u0005T\u0000"+ + "\u0000\u033d\u033e\u0003H$\u0000\u033e\u0360\u0001\u0000\u0000\u0000\u033f"+ + "\u0341\u0003\u00aaU\u0000\u0340\u0342\u0005N\u0000\u0000\u0341\u0340\u0001"+ + "\u0000\u0000\u0000\u0341\u0342\u0001\u0000\u0000\u0000\u0342\u0343\u0001"+ + "\u0000\u0000\u0000\u0343\u0344\u0005M\u0000\u0000\u0344\u0345\u0005j\u0000"+ + "\u0000\u0345\u034a\u0003H$\u0000\u0346\u0347\u0005E\u0000\u0000\u0347"+ + "\u0349\u0003H$\u0000\u0348\u0346\u0001\u0000\u0000\u0000\u0349\u034c\u0001"+ + "\u0000\u0000\u0000\u034a\u0348\u0001\u0000\u0000\u0000\u034a\u034b\u0001"+ + "\u0000\u0000\u0000\u034b\u034d\u0001\u0000\u0000\u0000\u034c\u034a\u0001"+ + "\u0000\u0000\u0000\u034d\u034e\u0005k\u0000\u0000\u034e\u0360\u0001\u0000"+ + "\u0000\u0000\u034f\u0351\u0003\u00aaU\u0000\u0350\u0352\u0005N\u0000\u0000"+ + "\u0351\u0350\u0001\u0000\u0000\u0000\u0351\u0352\u0001\u0000\u0000\u0000"+ + "\u0352\u0353\u0001\u0000\u0000\u0000\u0353\u0354\u0005T\u0000\u0000\u0354"+ + "\u0355\u0005j\u0000\u0000\u0355\u035a\u0003H$\u0000\u0356\u0357\u0005"+ + "E\u0000\u0000\u0357\u0359\u0003H$\u0000\u0358\u0356\u0001\u0000\u0000"+ + "\u0000\u0359\u035c\u0001\u0000\u0000\u0000\u035a\u0358\u0001\u0000\u0000"+ + "\u0000\u035a\u035b\u0001\u0000\u0000\u0000\u035b\u035d\u0001\u0000\u0000"+ + "\u0000\u035c\u035a\u0001\u0000\u0000\u0000\u035d\u035e\u0005k\u0000\u0000"+ + "\u035e\u0360\u0001\u0000\u0000\u0000\u035f\u0331\u0001\u0000\u0000\u0000"+ + "\u035f\u0338\u0001\u0000\u0000\u0000\u035f\u033f\u0001\u0000\u0000\u0000"+ + "\u035f\u034f\u0001\u0000\u0000\u0000\u0360\u00a7\u0001\u0000\u0000\u0000"+ + "\u0361\u0364\u00034\u001a\u0000\u0362\u0363\u0005B\u0000\u0000\u0363\u0365"+ + "\u0003\f\u0006\u0000\u0364\u0362\u0001\u0000\u0000\u0000\u0364\u0365\u0001"+ + "\u0000\u0000\u0000\u0365\u0366\u0001\u0000\u0000\u0000\u0366\u0367\u0005"+ + "C\u0000\u0000\u0367\u0368\u0003\u00ba]\u0000\u0368\u00a9\u0001\u0000\u0000"+ + "\u0000\u0369\u036f\u0003\u00acV\u0000\u036a\u036b\u0003\u00acV\u0000\u036b"+ + "\u036c\u0003\u00c6c\u0000\u036c\u036d\u0003\u00acV\u0000\u036d\u036f\u0001"+ + "\u0000\u0000\u0000\u036e\u0369\u0001\u0000\u0000\u0000\u036e\u036a\u0001"+ + "\u0000\u0000\u0000\u036f\u00ab\u0001\u0000\u0000\u0000\u0370\u0371\u0006"+ + "V\uffff\uffff\u0000\u0371\u0375\u0003\u00aeW\u0000\u0372\u0373\u0007\u0005"+ + "\u0000\u0000\u0373\u0375\u0003\u00acV\u0003\u0374\u0370\u0001\u0000\u0000"+ + "\u0000\u0374\u0372\u0001\u0000\u0000\u0000\u0375\u037e\u0001\u0000\u0000"+ + "\u0000\u0376\u0377\n\u0002\u0000\u0000\u0377\u0378\u0007\u0006\u0000\u0000"+ + "\u0378\u037d\u0003\u00acV\u0003\u0379\u037a\n\u0001\u0000\u0000\u037a"+ + "\u037b\u0007\u0005\u0000\u0000\u037b\u037d\u0003\u00acV\u0002\u037c\u0376"+ + "\u0001\u0000\u0000\u0000\u037c\u0379\u0001\u0000\u0000\u0000\u037d\u0380"+ + "\u0001\u0000\u0000\u0000\u037e\u037c\u0001\u0000\u0000\u0000\u037e\u037f"+ + "\u0001\u0000\u0000\u0000\u037f\u00ad\u0001\u0000\u0000\u0000\u0380\u037e"+ + "\u0001\u0000\u0000\u0000\u0381\u0382\u0006W\uffff\uffff\u0000\u0382\u038a"+ + "\u0003\u00ba]\u0000\u0383\u038a\u00034\u001a\u0000\u0384\u038a\u0003\u00b0"+ + "X\u0000\u0385\u0386\u0005j\u0000\u0000\u0386\u0387\u0003\u00a4R\u0000"+ + "\u0387\u0388\u0005k\u0000\u0000\u0388\u038a\u0001\u0000\u0000\u0000\u0389"+ + "\u0381\u0001\u0000\u0000\u0000\u0389\u0383\u0001\u0000\u0000\u0000\u0389"+ + "\u0384\u0001\u0000\u0000\u0000\u0389\u0385\u0001\u0000\u0000\u0000\u038a"+ + "\u0390\u0001\u0000\u0000\u0000\u038b\u038c\n\u0001\u0000\u0000\u038c\u038d"+ + "\u0005B\u0000\u0000\u038d\u038f\u0003\f\u0006\u0000\u038e\u038b\u0001"+ + "\u0000\u0000\u0000\u038f\u0392\u0001\u0000\u0000\u0000\u0390\u038e\u0001"+ + "\u0000\u0000\u0000\u0390\u0391\u0001\u0000\u0000\u0000\u0391\u00af\u0001"+ + "\u0000\u0000\u0000\u0392\u0390\u0001\u0000\u0000\u0000\u0393\u0394\u0003"+ + "\u00b2Y\u0000\u0394\u03a2\u0005j\u0000\u0000\u0395\u03a3\u0005`\u0000"+ + "\u0000\u0396\u039b\u0003\u00a4R\u0000\u0397\u0398\u0005E\u0000\u0000\u0398"+ + "\u039a\u0003\u00a4R\u0000\u0399\u0397\u0001\u0000\u0000\u0000\u039a\u039d"+ + "\u0001\u0000\u0000\u0000\u039b\u0399\u0001\u0000\u0000\u0000\u039b\u039c"+ + "\u0001\u0000\u0000\u0000\u039c\u03a0\u0001\u0000\u0000\u0000\u039d\u039b"+ + "\u0001\u0000\u0000\u0000\u039e\u039f\u0005E\u0000\u0000\u039f\u03a1\u0003"+ + "\u00b4Z\u0000\u03a0\u039e\u0001\u0000\u0000\u0000\u03a0\u03a1\u0001\u0000"+ + "\u0000\u0000\u03a1\u03a3\u0001\u0000\u0000\u0000\u03a2\u0395\u0001\u0000"+ + "\u0000\u0000\u03a2\u0396\u0001\u0000\u0000\u0000\u03a2\u03a3\u0001\u0000"+ + "\u0000\u0000\u03a3\u03a4\u0001\u0000\u0000\u0000\u03a4\u03a5\u0005k\u0000"+ + "\u0000\u03a5\u00b1\u0001\u0000\u0000\u0000\u03a6\u03aa\u0003F#\u0000\u03a7"+ + "\u03aa\u0005I\u0000\u0000\u03a8\u03aa\u0005L\u0000\u0000\u03a9\u03a6\u0001"+ + "\u0000\u0000\u0000\u03a9\u03a7\u0001\u0000\u0000\u0000\u03a9\u03a8\u0001"+ + "\u0000\u0000\u0000\u03aa\u00b3\u0001\u0000\u0000\u0000\u03ab\u03b4\u0005"+ + "c\u0000\u0000\u03ac\u03b1\u0003\u00b6[\u0000\u03ad\u03ae\u0005E\u0000"+ + "\u0000\u03ae\u03b0\u0003\u00b6[\u0000\u03af\u03ad\u0001\u0000\u0000\u0000"+ + "\u03b0\u03b3\u0001\u0000\u0000\u0000\u03b1\u03af\u0001\u0000\u0000\u0000"+ + "\u03b1\u03b2\u0001\u0000\u0000\u0000\u03b2\u03b5\u0001\u0000\u0000\u0000"+ + "\u03b3\u03b1\u0001\u0000\u0000\u0000\u03b4\u03ac\u0001\u0000\u0000\u0000"+ + "\u03b4\u03b5\u0001\u0000\u0000\u0000\u03b5\u03b6\u0001\u0000\u0000\u0000"+ + "\u03b6\u03b7\u0005d\u0000\u0000\u03b7\u00b5\u0001\u0000\u0000\u0000\u03b8"+ + "\u03b9\u0003\u00c4b\u0000\u03b9\u03ba\u0005C\u0000\u0000\u03ba\u03bb\u0003"+ + "\u00b8\\\u0000\u03bb\u00b7\u0001\u0000\u0000\u0000\u03bc\u03bf\u0003\u00ba"+ + "]\u0000\u03bd\u03bf\u0003\u00b4Z\u0000\u03be\u03bc\u0001\u0000\u0000\u0000"+ + "\u03be\u03bd\u0001\u0000\u0000\u0000\u03bf\u00b9\u0001\u0000\u0000\u0000"+ + "\u03c0\u03eb\u0005O\u0000\u0000\u03c1\u03c2\u0003\u00c2a\u0000\u03c2\u03c3"+ + "\u0005l\u0000\u0000\u03c3\u03eb\u0001\u0000\u0000\u0000\u03c4\u03eb\u0003"+ + "\u00c0`\u0000\u03c5\u03eb\u0003\u00c2a\u0000\u03c6\u03eb\u0003\u00bc^"+ + "\u0000\u03c7\u03eb\u0003B!\u0000\u03c8\u03eb\u0003\u00c4b\u0000\u03c9"+ + "\u03ca\u0005h\u0000\u0000\u03ca\u03cf\u0003\u00be_\u0000\u03cb\u03cc\u0005"+ + "E\u0000\u0000\u03cc\u03ce\u0003\u00be_\u0000\u03cd\u03cb\u0001\u0000\u0000"+ + "\u0000\u03ce\u03d1\u0001\u0000\u0000\u0000\u03cf\u03cd\u0001\u0000\u0000"+ + "\u0000\u03cf\u03d0\u0001\u0000\u0000\u0000\u03d0\u03d2\u0001\u0000\u0000"+ + "\u0000\u03d1\u03cf\u0001\u0000\u0000\u0000\u03d2\u03d3\u0005i\u0000\u0000"+ + "\u03d3\u03eb\u0001\u0000\u0000\u0000\u03d4\u03d5\u0005h\u0000\u0000\u03d5"+ + "\u03da\u0003\u00bc^\u0000\u03d6\u03d7\u0005E\u0000\u0000\u03d7\u03d9\u0003"+ + "\u00bc^\u0000\u03d8\u03d6\u0001\u0000\u0000\u0000\u03d9\u03dc\u0001\u0000"+ + "\u0000\u0000\u03da\u03d8\u0001\u0000\u0000\u0000\u03da\u03db\u0001\u0000"+ + "\u0000\u0000\u03db\u03dd\u0001\u0000\u0000\u0000\u03dc\u03da\u0001\u0000"+ + "\u0000\u0000\u03dd\u03de\u0005i\u0000\u0000\u03de\u03eb\u0001\u0000\u0000"+ + "\u0000\u03df\u03e0\u0005h\u0000\u0000\u03e0\u03e5\u0003\u00c4b\u0000\u03e1"+ + "\u03e2\u0005E\u0000\u0000\u03e2\u03e4\u0003\u00c4b\u0000\u03e3\u03e1\u0001"+ + "\u0000\u0000\u0000\u03e4\u03e7\u0001\u0000\u0000\u0000\u03e5\u03e3\u0001"+ + "\u0000\u0000\u0000\u03e5\u03e6\u0001\u0000\u0000\u0000\u03e6\u03e8\u0001"+ + "\u0000\u0000\u0000\u03e7\u03e5\u0001\u0000\u0000\u0000\u03e8\u03e9\u0005"+ + "i\u0000\u0000\u03e9\u03eb\u0001\u0000\u0000\u0000\u03ea\u03c0\u0001\u0000"+ + "\u0000\u0000\u03ea\u03c1\u0001\u0000\u0000\u0000\u03ea\u03c4\u0001\u0000"+ + "\u0000\u0000\u03ea\u03c5\u0001\u0000\u0000\u0000\u03ea\u03c6\u0001\u0000"+ + "\u0000\u0000\u03ea\u03c7\u0001\u0000\u0000\u0000\u03ea\u03c8\u0001\u0000"+ + "\u0000\u0000\u03ea\u03c9\u0001\u0000\u0000\u0000\u03ea\u03d4\u0001\u0000"+ + "\u0000\u0000\u03ea\u03df\u0001\u0000\u0000\u0000\u03eb\u00bb\u0001\u0000"+ + "\u0000\u0000\u03ec\u03ed\u0007\u0007\u0000\u0000\u03ed\u00bd\u0001\u0000"+ + "\u0000\u0000\u03ee\u03f1\u0003\u00c0`\u0000\u03ef\u03f1\u0003\u00c2a\u0000"+ + "\u03f0\u03ee\u0001\u0000\u0000\u0000\u03f0\u03ef\u0001\u0000\u0000\u0000"+ + "\u03f1\u00bf\u0001\u0000\u0000\u0000\u03f2\u03f4\u0007\u0005\u0000\u0000"+ + "\u03f3\u03f2\u0001\u0000\u0000\u0000\u03f3\u03f4\u0001\u0000\u0000\u0000"+ + "\u03f4\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6"+ + "\u00c1\u0001\u0000\u0000\u0000\u03f7\u03f9\u0007\u0005\u0000\u0000\u03f8"+ + "\u03f7\u0001\u0000\u0000\u0000\u03f8\u03f9\u0001\u0000\u0000\u0000\u03f9"+ + "\u03fa\u0001\u0000\u0000\u0000\u03fa\u03fb\u0005<\u0000\u0000\u03fb\u00c3"+ + "\u0001\u0000\u0000\u0000\u03fc\u03fd\u0005;\u0000\u0000\u03fd\u00c5\u0001"+ + "\u0000\u0000\u0000\u03fe\u03ff\u0007\b\u0000\u0000\u03ff\u00c7\u0001\u0000"+ + "\u0000\u0000\u0400\u0401\u0007\t\u0000\u0000\u0401\u0402\u0005\u0083\u0000"+ + "\u0000\u0402\u0403\u0003\u00cae\u0000\u0403\u0404\u0003\u00ccf\u0000\u0404"+ + "\u00c9\u0001\u0000\u0000\u0000\u0405\u0406\u0004e\r\u0000\u0406\u0408"+ + "\u0003 \u0010\u0000\u0407\u0409\u0005\u009f\u0000\u0000\u0408\u0407\u0001"+ + "\u0000\u0000\u0000\u0408\u0409\u0001\u0000\u0000\u0000\u0409\u040a\u0001"+ + "\u0000\u0000\u0000\u040a\u040b\u0005r\u0000\u0000\u040b\u040e\u0001\u0000"+ + "\u0000\u0000\u040c\u040e\u0003 \u0010\u0000\u040d\u0405\u0001\u0000\u0000"+ + "\u0000\u040d\u040c\u0001\u0000\u0000\u0000\u040e\u00cb\u0001\u0000\u0000"+ + "\u0000\u040f\u0410\u0005Q\u0000\u0000\u0410\u0415\u0003\u00a4R\u0000\u0411"+ + "\u0412\u0005E\u0000\u0000\u0412\u0414\u0003\u00a4R\u0000\u0413\u0411\u0001"+ + "\u0000\u0000\u0000\u0414\u0417\u0001\u0000\u0000\u0000\u0415\u0413\u0001"+ + "\u0000\u0000\u0000\u0415\u0416\u0001\u0000\u0000\u0000\u0416\u00cd\u0001"+ + "\u0000\u0000\u0000\u0417\u0415\u0001\u0000\u0000\u0000\u0418\u041c\u0005"+ + "(\u0000\u0000\u0419\u041b\u0003\u00d2i\u0000\u041a\u0419\u0001\u0000\u0000"+ + "\u0000\u041b\u041e\u0001\u0000\u0000\u0000\u041c\u041a\u0001\u0000\u0000"+ + "\u0000\u041c\u041d\u0001\u0000\u0000\u0000\u041d\u0422\u0001\u0000\u0000"+ + "\u0000\u041e\u041c\u0001\u0000\u0000\u0000\u041f\u0420\u0003\u00d0h\u0000"+ + "\u0420\u0421\u0005@\u0000\u0000\u0421\u0423\u0001\u0000\u0000\u0000\u0422"+ + "\u041f\u0001\u0000\u0000\u0000\u0422\u0423\u0001\u0000\u0000\u0000\u0423"+ + "\u0424\u0001\u0000\u0000\u0000\u0424\u0425\u0005j\u0000\u0000\u0425\u0426"+ + "\u0005f\u0000\u0000\u0426\u0455\u0005k\u0000\u0000\u0427\u042b\u0005("+ + "\u0000\u0000\u0428\u042a\u0003\u00d2i\u0000\u0429\u0428\u0001\u0000\u0000"+ + "\u0000\u042a\u042d\u0001\u0000\u0000\u0000\u042b\u0429\u0001\u0000\u0000"+ + "\u0000\u042b\u042c\u0001\u0000\u0000\u0000\u042c\u0431\u0001\u0000\u0000"+ + "\u0000\u042d\u042b\u0001\u0000\u0000\u0000\u042e\u042f\u0003\u00d0h\u0000"+ + "\u042f\u0430\u0005@\u0000\u0000\u0430\u0432\u0001\u0000\u0000\u0000\u0431"+ + "\u042e\u0001\u0000\u0000\u0000\u0431\u0432\u0001\u0000\u0000\u0000\u0432"+ + "\u0433\u0001\u0000\u0000\u0000\u0433\u0455\u0005f\u0000\u0000\u0434\u0438"+ + "\u0005(\u0000\u0000\u0435\u0437\u0003\u00d2i\u0000\u0436\u0435\u0001\u0000"+ + "\u0000\u0000\u0437\u043a\u0001\u0000\u0000\u0000\u0438\u0436\u0001\u0000"+ + "\u0000\u0000\u0438\u0439\u0001\u0000\u0000\u0000\u0439\u043e\u0001\u0000"+ + "\u0000\u0000\u043a\u0438\u0001\u0000\u0000\u0000\u043b\u043c\u0003\u00d0"+ + "h\u0000\u043c\u043d\u0005@\u0000\u0000\u043d\u043f\u0001\u0000\u0000\u0000"+ + "\u043e\u043b\u0001\u0000\u0000\u0000\u043e\u043f\u0001\u0000\u0000\u0000"+ + "\u043f\u0440\u0001\u0000\u0000\u0000\u0440\u0442\u0005j\u0000\u0000\u0441"+ + "\u0443\u0003\u00dam\u0000\u0442\u0441\u0001\u0000\u0000\u0000\u0443\u0444"+ + "\u0001\u0000\u0000\u0000\u0444\u0442\u0001\u0000\u0000\u0000\u0444\u0445"+ + "\u0001\u0000\u0000\u0000\u0445\u0446\u0001\u0000\u0000\u0000\u0446\u0447"+ + "\u0005k\u0000\u0000\u0447\u0455\u0001\u0000\u0000\u0000\u0448\u044c\u0005"+ + "(\u0000\u0000\u0449\u044b\u0003\u00d2i\u0000\u044a\u0449\u0001\u0000\u0000"+ + "\u0000\u044b\u044e\u0001\u0000\u0000\u0000\u044c\u044a\u0001\u0000\u0000"+ + "\u0000\u044c\u044d\u0001\u0000\u0000\u0000\u044d\u0450\u0001\u0000\u0000"+ + "\u0000\u044e\u044c\u0001\u0000\u0000\u0000\u044f\u0451\u0003\u00dam\u0000"+ + "\u0450\u044f\u0001\u0000\u0000\u0000\u0451\u0452\u0001\u0000\u0000\u0000"+ + "\u0452\u0450\u0001\u0000\u0000\u0000\u0452\u0453\u0001\u0000\u0000\u0000"+ + "\u0453\u0455\u0001\u0000\u0000\u0000\u0454\u0418\u0001\u0000\u0000\u0000"+ + "\u0454\u0427\u0001\u0000\u0000\u0000\u0454\u0434\u0001\u0000\u0000\u0000"+ + "\u0454\u0448\u0001\u0000\u0000\u0000\u0455\u00cf\u0001\u0000\u0000\u0000"+ + "\u0456\u0457\u0007\u0001\u0000\u0000\u0457\u00d1\u0001\u0000\u0000\u0000"+ + "\u0458\u0459\u0003\u00d4j\u0000\u0459\u045a\u0005@\u0000\u0000\u045a\u045b"+ + "\u0003\u00d6k\u0000\u045b\u00d3\u0001\u0000\u0000\u0000\u045c\u045d\u0007"+ + "\n\u0000\u0000\u045d\u00d5\u0001\u0000\u0000\u0000\u045e\u0463\u0003\u00dc"+ + "n\u0000\u045f\u0460\u0005E\u0000\u0000\u0460\u0462\u0003\u00dcn\u0000"+ + "\u0461\u045f\u0001\u0000\u0000\u0000\u0462\u0465\u0001\u0000\u0000\u0000"+ + "\u0463\u0461\u0001\u0000\u0000\u0000\u0463\u0464\u0001\u0000\u0000\u0000"+ + "\u0464\u0469\u0001\u0000\u0000\u0000\u0465\u0463\u0001\u0000\u0000\u0000"+ + "\u0466\u0469\u0005m\u0000\u0000\u0467\u0469\u0005f\u0000\u0000\u0468\u045e"+ + "\u0001\u0000\u0000\u0000\u0468\u0466\u0001\u0000\u0000\u0000\u0468\u0467"+ + "\u0001\u0000\u0000\u0000\u0469\u00d7\u0001\u0000\u0000\u0000\u046a\u046b"+ + "\u0007\u000b\u0000\u0000\u046b\u00d9\u0001\u0000\u0000\u0000\u046c\u046e"+ + "\u0003\u00d8l\u0000\u046d\u046c\u0001\u0000\u0000\u0000\u046e\u046f\u0001"+ + "\u0000\u0000\u0000\u046f\u046d\u0001\u0000\u0000\u0000\u046f\u0470\u0001"+ + "\u0000\u0000\u0000\u0470\u047a\u0001\u0000\u0000\u0000\u0471\u0475\u0005"+ + "j\u0000\u0000\u0472\u0474\u0003\u00dam\u0000\u0473\u0472\u0001\u0000\u0000"+ + "\u0000\u0474\u0477\u0001\u0000\u0000\u0000\u0475\u0473\u0001\u0000\u0000"+ + "\u0000\u0475\u0476\u0001\u0000\u0000\u0000\u0476\u0478\u0001\u0000\u0000"+ + "\u0000\u0477\u0475\u0001\u0000\u0000\u0000\u0478\u047a\u0005k\u0000\u0000"+ + "\u0479\u046d\u0001\u0000\u0000\u0000\u0479\u0471\u0001\u0000\u0000\u0000"+ + "\u047a\u00db\u0001\u0000\u0000\u0000\u047b\u047c\u0003\u00deo\u0000\u047c"+ + "\u047d\u0005C\u0000\u0000\u047d\u047e\u0003\u00e2q\u0000\u047e\u0485\u0001"+ + "\u0000\u0000\u0000\u047f\u0480\u0003\u00e2q\u0000\u0480\u0481\u0005B\u0000"+ + "\u0000\u0481\u0482\u0003\u00e0p\u0000\u0482\u0485\u0001\u0000\u0000\u0000"+ + "\u0483\u0485\u0003\u00e4r\u0000\u0484\u047b\u0001\u0000\u0000\u0000\u0484"+ + "\u047f\u0001\u0000\u0000\u0000\u0484\u0483\u0001\u0000\u0000\u0000\u0485"+ + "\u00dd\u0001\u0000\u0000\u0000\u0486\u0487\u0007\f\u0000\u0000\u0487\u00df"+ + "\u0001\u0000\u0000\u0000\u0488\u0489\u0007\f\u0000\u0000\u0489\u00e1\u0001"+ + "\u0000\u0000\u0000\u048a\u048b\u0007\f\u0000\u0000\u048b\u00e3\u0001\u0000"+ + "\u0000\u0000\u048c\u048d\u0007\r\u0000\u0000\u048d\u00e5\u0001\u0000\u0000"+ "\u0000r\u00e9\u00fa\u0106\u0126\u0135\u013b\u014e\u0152\u0156\u015e\u0166"+ "\u016b\u016e\u017e\u0186\u018a\u0191\u0197\u019c\u01a5\u01ac\u01b2\u01bb"+ - "\u01c2\u01ca\u01d2\u01d6\u01da\u01df\u01e3\u01e8\u01f1\u01fa\u01ff\u0203"+ - "\u0211\u021c\u0222\u0229\u0232\u023b\u024f\u0257\u025a\u0261\u026d\u0277"+ - "\u027f\u028d\u0296\u02a1\u02ab\u02b1\u02b3\u02b7\u02bc\u02ca\u02d1\u02f8"+ - "\u02fc\u0306\u030f\u0318\u0320\u0325\u032d\u032f\u0334\u033b\u0342\u034b"+ - "\u0352\u035b\u0360\u0365\u036f\u0375\u037d\u037f\u038a\u0391\u039c\u03a1"+ - "\u03a3\u03aa\u03b2\u03b5\u03bf\u03d0\u03db\u03e6\u03eb\u03f1\u03f4\u03f9"+ - "\u0409\u040e\u0416\u041d\u0423\u042c\u0432\u0439\u043f\u0445\u044d\u0453"+ - "\u0455\u0464\u0469\u0470\u0476\u047a\u0485"; + "\u01c2\u01ca\u01d2\u01d6\u01da\u01df\u01e3\u01e8\u01f0\u01f9\u01fe\u0202"+ + "\u0210\u021b\u0221\u0228\u0231\u023a\u024e\u0256\u0259\u0260\u026c\u0276"+ + "\u027e\u028c\u0295\u02a0\u02aa\u02b0\u02b2\u02b6\u02bb\u02c9\u02d0\u02f7"+ + "\u02fb\u0305\u030e\u0317\u031f\u0324\u032c\u032e\u0333\u033a\u0341\u034a"+ + "\u0351\u035a\u035f\u0364\u036e\u0374\u037c\u037e\u0389\u0390\u039b\u03a0"+ + "\u03a2\u03a9\u03b1\u03b4\u03be\u03cf\u03da\u03e5\u03ea\u03f0\u03f3\u03f8"+ + "\u0408\u040d\u0415\u041c\u0422\u042b\u0431\u0438\u043e\u0444\u044c\u0452"+ + "\u0454\u0463\u0468\u046f\u0475\u0479\u0484"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { 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 4886cd258fbb8..473ed243fec49 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 @@ -1365,7 +1365,6 @@ public void testImplicitDefaultLimitAfterBreakerAndNonBreakers() { } public void testImplicitDefaultLimitAfterLimitBy() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = basic().query("from test | limit 1 by emp_no"); var defaultLimit = as(plan, Limit.class); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java index 0036dded10bbf..22c7ada7c1690 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java @@ -2483,7 +2483,6 @@ public void testTopNUsesSortedInputFromDataNodes() { } public void testLimitByNotPushedToSource() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = plannerOptimizer.plan(""" from test | limit 10 by first_name @@ -2503,7 +2502,6 @@ public void testLimitByNotPushedToSource() { } public void testLimitByMultipleKeys() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = plannerOptimizer.plan(""" from test | limit 5 by first_name, last_name @@ -2522,7 +2520,6 @@ public void testLimitByMultipleKeys() { } public void testLimitByWithFilter() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = plannerOptimizer.plan(""" from test | where salary > 1000 @@ -2558,7 +2555,6 @@ public void testLimitByWithFilter() { * } */ public void testSortWithLimitBy() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); String query = """ FROM test | SORT salary DESC NULLS LAST 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 bd433daabd968..11dc594f16ab6 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 @@ -10923,7 +10923,6 @@ public void testCombineOrderByThroughRegisteredDomain() { * } */ public void testLimitByZero() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = plan(""" FROM test | LIMIT 0 BY emp_no @@ -10956,7 +10955,6 @@ public void testTopSnippetsQueryMustBeFoldable() { * } */ public void testOnlyLastSortPreservedTopNBy() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var query = """ FROM employees | SORT emp_no DESC @@ -10998,7 +10996,6 @@ public void testOnlyLastSortPreservedTopNBy() { * } */ public void testOnlyLastNonContiguousSortPreservedTopNBy() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var query = """ FROM employees | SORT emp_no DESC @@ -11047,7 +11044,6 @@ public void testOnlyLastNonContiguousSortPreservedTopNBy() { * } */ public void testOnlyLastNonContiguousSortPreservedTopNByWithExprs() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var query = """ FROM employees | SORT emp_no DESC @@ -11096,7 +11092,7 @@ public void testOnlyLastNonContiguousSortPreservedTopNByWithExprs() { } public void testTopNByWorksWithQualifiedNames() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); + assumeTrue("Requires qualifier support", EsqlCapabilities.Cap.NAME_QUALIFIERS.isEnabled()); var query = """ FROM employees | SORT salary DESC diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java index 5ad281168ea3c..af24641b73ee2 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java @@ -1553,7 +1553,6 @@ public void testPushLimitToSource() { * } */ public void testLimitByNotPushedToSource() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | limit 10 by emp_no @@ -1578,7 +1577,6 @@ public void testLimitByNotPushedToSource() { * } */ public void testLimitByMultipleKeys() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | limit 5 by first_name, last_name @@ -1613,7 +1611,6 @@ public void testLimitByMultipleKeys() { * } */ public void testLimitByAfterStats() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | stats avg_salary = avg(salary) by first_name @@ -1652,7 +1649,6 @@ public void testLimitByAfterStats() { * } */ public void testLimitByAfterEval() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | eval x = salary + 1 @@ -1689,7 +1685,6 @@ public void testLimitByAfterEval() { * } */ public void testLimitByWithFilter() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | where emp_no > 0 @@ -1722,7 +1717,6 @@ public void testLimitByWithFilter() { * } */ public void testLimitByExpressionWithEval() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var optimized = optimizedPlan(physicalPlan(""" from test | where emp_no > 0 @@ -1759,7 +1753,6 @@ public void testLimitByExpressionWithEval() { * } */ public void testLimitByZero() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = optimizedPlan(physicalPlan(""" FROM test | LIMIT 0 BY emp_no diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/CombineLimitTopNTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/CombineLimitTopNTests.java index 1a313165b4b59..47e8c1d1d2c29 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/CombineLimitTopNTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/CombineLimitTopNTests.java @@ -7,7 +7,6 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.ReferenceAttribute; import org.elasticsearch.xpack.esql.expression.Order; @@ -27,7 +26,6 @@ public class CombineLimitTopNTests extends AbstractLogicalPlanOptimizerTests { public void testCombineLimitByTopNBySameGroupings() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var attr = getFieldAttribute("a"); var groupings = List.of(attr); var order = List.of(new Order(EMPTY, attr, Order.OrderDirection.ASC, null)); @@ -40,7 +38,6 @@ public void testCombineLimitByTopNBySameGroupings() { } public void testCombineLimitByTopNByDifferentGroupings() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var attr = getFieldAttribute("a"); var groupings = List.of(attr); var otherGroupings = List.of(getFieldAttribute("b")); @@ -59,7 +56,6 @@ public void testCombineLimitByTopNByDifferentGroupings() { * the rule should still combine them. Ensures Expressions.semanticEquals(List, List) is used. */ public void testCombineLimitTopNSemanticallyEqualGroupings() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var a = getFieldAttribute("a"); var b = getFieldAttribute("b"); var topNGroupings = List.of(b, a); @@ -78,7 +74,6 @@ public void testCombineLimitTopNSemanticallyEqualGroupings() { } public void testLowerLimitIsChosenForCombiningTopNByAndLimitBy() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var attr = getFieldAttribute("a"); var groupings = List.of(attr); var order = List.of(new Order(EMPTY, attr, Order.OrderDirection.ASC, null)); @@ -91,7 +86,6 @@ public void testLowerLimitIsChosenForCombiningTopNByAndLimitBy() { } public void testLowerLimitIsChosenForCombiningTopNByAndLimitBy2() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); var attr = getFieldAttribute("a"); var groupings = List.of(attr); var order = List.of(new Order(EMPTY, attr, Order.OrderDirection.ASC, null)); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumnsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumnsTests.java index b0551297a5a92..d1c7e888e6abd 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumnsTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumnsTests.java @@ -8,7 +8,6 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; import org.elasticsearch.index.IndexMode; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.elasticsearch.xpack.esql.core.expression.Alias; import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expressions; @@ -2514,7 +2513,6 @@ public void testPruneColumnsInExternalRelationWithFilter() { * } */ public void testPruneColumnsKeepsLimitByGrouping() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); var plan = plan(""" from test | eval x = salary + 4 diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneLiteralsInLimitByTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneLiteralsInLimitByTests.java index 702d39c30621b..42ccf47e6978d 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneLiteralsInLimitByTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneLiteralsInLimitByTests.java @@ -7,7 +7,6 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.elasticsearch.xpack.esql.core.expression.Expressions; import org.elasticsearch.xpack.esql.core.expression.Literal; import org.elasticsearch.xpack.esql.optimizer.AbstractLogicalPlanOptimizerTests; @@ -26,9 +25,7 @@ public class PruneLiteralsInLimitByTests extends AbstractLogicalPlanOptimizerTests { @BeforeClass - public static void checkLimitByCapability() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); - } + public static void checkLimitByCapability() {} /** * A foldable eval alias used in LIMIT BY should be propagated by {@code PropagateEvalFoldables} diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByGoldenTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByGoldenTests.java index d8f9b20712474..ea60b6c7110fa 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByGoldenTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByGoldenTests.java @@ -8,7 +8,6 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; import org.elasticsearch.xpack.esql.EsqlTestUtils; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.elasticsearch.xpack.esql.optimizer.GoldenTestCase; import org.junit.BeforeClass; @@ -20,9 +19,7 @@ public class PushDownAndCombineLimitByGoldenTests extends GoldenTestCase { @BeforeClass - public static void checkLimitByCapability() { - assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled()); - } + public static void checkLimitByCapability() {} private static final EnumSet STAGES = EnumSet.of(Stage.LOGICAL_OPTIMIZATION); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByTests.java index 4ed4529a7ef96..826f3d49aedd7 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitByTests.java @@ -7,7 +7,6 @@ package org.elasticsearch.xpack.esql.optimizer.rules.logical; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.elasticsearch.xpack.esql.core.expression.Expressions; import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.core.expression.Literal; @@ -35,9 +34,7 @@ public class PushDownAndCombineLimitByTests extends AbstractLogicalPlanOptimizerTests { @BeforeClass - public static void checkLimitByCapability() { - assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled()); - } + public static void checkLimitByCapability() {} /** *
{@code
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceLimitByExpressionWithEvalGoldenTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceLimitByExpressionWithEvalGoldenTests.java
index 2249fa3fa4df1..ea1a725cb79d4 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceLimitByExpressionWithEvalGoldenTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceLimitByExpressionWithEvalGoldenTests.java
@@ -7,7 +7,6 @@
 
 package org.elasticsearch.xpack.esql.optimizer.rules.logical;
 
-import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
 import org.elasticsearch.xpack.esql.optimizer.GoldenTestCase;
 import org.junit.BeforeClass;
 
@@ -18,9 +17,7 @@ public class ReplaceLimitByExpressionWithEvalGoldenTests extends GoldenTestCase
     private static final EnumSet STAGES = EnumSet.of(Stage.ANALYSIS, Stage.LOGICAL_OPTIMIZATION);
 
     @BeforeClass
-    public static void checkLimitByCapability() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
-    }
+    public static void checkLimitByCapability() {}
 
     public void testAttributeGroupingUnchanged() {
         runGoldenTest("""
@@ -113,7 +110,6 @@ public void testFoldableAttributeAndExpressionGroupingsMixed() {
     }
 
     public void testTopNByAttributeDoesNotIntroduceEval() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
@@ -122,7 +118,6 @@ public void testTopNByAttributeDoesNotIntroduceEval() {
     }
 
     public void testTopNByExpressionIntroducesEval() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
@@ -131,7 +126,6 @@ public void testTopNByExpressionIntroducesEval() {
     }
 
     public void testTopNByMixedAttrAndExpression() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
@@ -140,7 +134,6 @@ public void testTopNByMixedAttrAndExpression() {
     }
 
     public void testTopNByFoldableExprs() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
@@ -149,7 +142,6 @@ public void testTopNByFoldableExprs() {
     }
 
     public void testTopNByMixedAttrAndFoldable() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
@@ -158,7 +150,6 @@ public void testTopNByMixedAttrAndFoldable() {
     }
 
     public void testTopNByMixedExprsAttr() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | SORT salary DESC
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/LimitByGoldenTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/LimitByGoldenTests.java
index 711b199a123db..e69ee2b44e321 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/LimitByGoldenTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/LimitByGoldenTests.java
@@ -8,7 +8,6 @@
 package org.elasticsearch.xpack.esql.optimizer.rules.physical.local;
 
 import org.elasticsearch.xpack.esql.EsqlTestUtils;
-import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
 import org.elasticsearch.xpack.esql.optimizer.GoldenTestCase;
 
 import java.util.EnumSet;
@@ -19,7 +18,6 @@
 public class LimitByGoldenTests extends GoldenTestCase {
 
     public void testLimitByWithoutSort() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
         runGoldenTest(
             """
                 FROM employees
@@ -38,7 +36,6 @@ public void testLimitByWithoutSort() {
     }
 
     public void testSortLimitBy() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest(
             """
                 FROM employees
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/ReorderLimitProjectAndOrderByGoldenTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/ReorderLimitProjectAndOrderByGoldenTests.java
index 4521ff4856ebc..d6a37d01c223a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/ReorderLimitProjectAndOrderByGoldenTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/ReorderLimitProjectAndOrderByGoldenTests.java
@@ -8,7 +8,6 @@
 package org.elasticsearch.xpack.esql.optimizer.rules.physical.local;
 
 import org.elasticsearch.xpack.esql.EsqlTestUtils;
-import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
 import org.elasticsearch.xpack.esql.optimizer.GoldenTestCase;
 
 import java.util.EnumSet;
@@ -23,7 +22,6 @@ public class ReorderLimitProjectAndOrderByGoldenTests extends GoldenTestCase {
      * In this case the 2*salary AS language_name ends up in a Project and LimitBy references it, so LimitBy -> Project cannot be swapped
      */
     public void testLimitByAndProjectNotSwapped() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | RENAME languages AS language_code
@@ -38,7 +36,6 @@ public void testLimitByAndProjectNotSwapped() {
      * referenced by LimitBy, so the only way to fix the query is to swap LimitBy and OrderBy
      */
     public void testProjectAndOrderBySwapped() {
-        assumeTrue("SORT | LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_TOPN_BY.isEnabled());
         runGoldenTest("""
             FROM employees
             | RENAME languages AS language_code
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 fcb57d400082c..5e78fbdaceaf1 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
@@ -1086,7 +1086,6 @@ public void testBasicLimitCommand() {
     }
 
     public void testLimitBy() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
         LogicalPlan plan = query("""
                 FROM foo
                 | SORT @timestamp DESC
@@ -1124,7 +1123,7 @@ public void testLimitBy() {
     }
 
     public void testLimitByQualifiedName() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
+        assumeTrue("Requires qualifier support", EsqlCapabilities.Cap.NAME_QUALIFIERS.isEnabled());
         LogicalPlan plan = query("""
                 FROM foo
                 | SORT @timestamp DESC
@@ -1158,7 +1157,6 @@ public void testLimitByQualifiedName() {
     }
 
     public void testLimitByNegativeValue() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
         expectThrows(
             ParsingException.class,
             containsString("value of [LIMIT -1 BY languages] must be a non negative integer, found value [-1] type [integer]"),
@@ -1170,7 +1168,6 @@ public void testLimitByNegativeValue() {
     }
 
     public void testLimitByExpressionForN() {
-        assumeTrue("LIMIT BY requires snapshot builds", EsqlCapabilities.Cap.ESQL_LIMIT_BY.isEnabled());
         expectThrows(ParsingException.class, containsString("mismatched input '*'"), () -> query("""
             FROM foo
             | LIMIT -1 * 42 BY languages